Android学习第01讲 创建FirstActivity
程序员文章站
2022-05-28 14:46:52
...
https://blog.csdn.net/sinat_26814541
1.activity如何创建
命名遵守驼峰规则
使用向导创建空activity: FirstActivity
在FirstActivity.java onCreeate放法里,加入代码:
setContentView(R.layou.first_layout);
2. 创建与使用资源
资源如何加载
资源名字小写
资源按目录分类
drawable
mipmap
values
layout
menu
在res目录下,创建layout文件夹,然后选中layout,右键新建layout 文件,命名:first_layout.xml
然后在该文件中,拖放一个Button按钮
- activity配置
需要到android app的清单文件中注册该Acitivity
<activity
android:name=".FirstActivity"
android:label="第一个活动">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
4android studio的bug
values>styles.xml>AppTheme修改:
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
改为
<style name="AppTheme" parent="Base.Theme.AppCompat.Light.DarkActionBar">
- 完整步骤与代码
在app目录下的 包com.zjipc.activitytest中,点击右键,创建Activity>Empty Activity,名字为:FirstActivity,并取消 generate layout,
FirstActivity.java代码如下:
package com.zjipc.activitytest;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
// 驼峰规则
public class FirstActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// 加载布局到当前activity
setContentView(R.layout.first_layout);
}
}
在res目录中,右键创建目录 layout,然后在layout右键,new > layout resource file,命名为:first_layout.xml。接着在布局中,拖入一个Button按钮。代码如下:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:id="@+id/button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Button" />
</LinearLayout>
注册Activity。在清单文件AndroidManifest.xml中,注册。代码如下:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.zjipc.activitytest">
<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=".FirstActivity"
android:label="第一个活动">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>