欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Android环境搭建及demo

程序员文章站 2022-05-16 20:24:51
...

Android环境搭建及demo

环境搭建

  1. 安装android sdk
    File --> Settings --> Appearance & Behavior --> System Settings --> Android SDK
    Android环境搭建及demo2. 配置ANDROID_HOME
export ANDROID_HOME=/opt/Android

项目

程序入口:

public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }
}

onCreate为初始化。
setContentView设置屏幕展示的View, View通过layout_.xml在res中定义, 并且在编译时自动生成R.java程序。
findViewById获取layout_
.xml中定义的Viewid

资源定义方式:

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name=".MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

@mipmap/ic_launcher引用mipmap文件夹下的ic_launcher.xml文件中的内容。
@string/app_name引用values/strings.xml中的<string>部分<string name="app_name">My Application</string>
@mipmap/ic_launcher_round引用mipmap文件夹下的ic_launcher_round文件中的内容。
@style/AppTheme引用values/styles.xml中的主题。

layout定义:

    <Button
        android:id="@+id/button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginStart="79dp"
        android:layout_marginLeft="79dp"
        android:layout_marginBottom="61dp"
        android:text="Button"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintStart_toStartOf="parent" />

@+id/button定义的id会编译进R.java中,代码中引用如下:

    mTimes = 0L;
    mView = findViewById(R.id.text);
    mButton = findViewById(R.id.button);
    mButton.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View view) {
            mTimes++;
            Toast toast = Toast.makeText(MainActivity.this, "clicked!", Toast.LENGTH_LONG);
            toast.show();
            mView.setText("" + mTimes);
        }
    });

Toast.makeText用户弹出消息。

相关标签: android 安卓