赞
踩
用的环境是Android Studio,Windows 桌面下的图标长这样(plz忽略水印):
我的配置是:
Android Studio Chipmunk | 2021.2.1 Patch 2
Build #AI-212.5712.43.2112.8815526, built on July 10, 2022
Runtime version: 11.0.12+7-b1504.28-7817840 amd64
VM: OpenJDK 64-Bit Server VM by Oracle Corporation
Windows 10 10.0
GC: G1 Young Generation, G1 Old Generation
Memory: 1280M
Cores: 8
Registry: external.system.auto.import.disabled=true
Non-Bundled Plugins: Dart (212.5744), com.mobiledi.flutter_plugins (2.0.0), io.flutter (71.0.2)
Activity大概包括3个比较重要的点
关于Activity类,举个例子:
public class lalalala // 这个就是一个普通的类,没有任何作用。
public class lalalala extends Activity // 这个就是一个可以投到手机上的可视化的类
我们拿出一段平平无奇的activity,简要介绍一下它的机制(具体的介绍都在注释里了):
package com.example.myapplication;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
public class MainActivity extends AppCompatActivity {
// Activity: 是一个类,AppCompatActivity也是算是Activity类。类似于一个可视化界面
@Override // 表示这个是重写,只要打开窗口,指定先执行它,所以有点类似于初始化代码
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// 设置内容视图
// R会按照类别给资源文件分配一个索引 => 我们可以通过R.类别名.资源名 去操作对应的资源
setContentView(R.layout.activity_main);
}
}
我们知道activity里面setContentView是根据布局文件layout完成的,所以这一整个项目究竟显示的东西都由它决定。这个不同于java的写法,主要是xml代码。就是通过一个个标签和控键设置布局。
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.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=".MainActivity"
android:background="#999">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
android:textSize="40dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
所以下次我们如果想要创建新的文件,就应该在layout下生成:
这个是决定各个窗口的逻辑的文件,比如显示哪个窗口之类的。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.example.myapplication">
<application
android:allowBackup="true"
android:dataExtractionRules="@xml/data_extraction_rules"
android:fullBackupContent="@xml/backup_rules"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.MyApplication"
tools:targetApi="31">
<activity
android:name=".MainActivity"
android:exported="true">
<intent-filter>
<!-- 启动界面-->
<action android:name="android.intent.action.MAIN" />
<!-- 在应用列表形成图标-->
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。