马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
新建一个不带activity的空项目:
然后右键点击java目录下的那个包名新建个activity类型文件,不要勾取generate layout file选项:
然后在res目录下新建个layout目录,再右键点击layout目录新建layout resource file:
然后点底下text选项就会出现代码,修改为如下代码:<?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_1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="button_1"
></Button>
</LinearLayout>
然后回到新建的activity那个文件下载onCreate函数下添加一行setContentView(R.layout.first_layout);
代码。
最后关键是要注册我们的activity,打开androidmanifest.xml文件在两个application标签系统应该已经自动添加了<activity android:name=".MainActivity"></activity>这行代码,但是还是要注册启动它,把这句话修改为<activity
android:name=".MainActivity"
android:label="this is my first activity"
>
<intent-filter>
<action android:name="android.intent.action.MAIN"></action>
<category android:name="android.intent.category.LAUNCHER"></category>
</intent-filter>
</activity>
然后就可以启动虚拟机,点小绿三角运行程序了
|