第一个安卓程序

1.需要环境

JDK

Android SDK

Android Studio

2.需要Java基础知识

3.Android Studio相比于IntelliJ IDEA更专注安卓,而且是免费的。是google跟jet公司共同开发的。

4.需要手机或者模拟器运行程序。

5.安卓通过xml布局

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.example.diandodo.helloworld.HelloWorldActivity">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Hello World!"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

</android.support.constraint.ConstraintLayout>

6.项目目录结构

7.5种级别日志,
Log.v()
Log.d()
Log.i()
Log.w()
Log.e()

verbose,debug,info,warn,error

package com.example.diandodo.helloworld;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.util.Log; // 引入可以使用日志

public class HelloWorldActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.hello_world_layout);
        Log.d("HelloWorldActivity","onCreate execute");
    }
}

原文地址:https://www.cnblogs.com/jiqing9006/p/7457195.html