您的位置:首页 > 其它

对于高版本ADT,手动创建Helloworld程序

2015-04-18 22:33 459 查看

新建一个android应用项目后,无java源文件,无layout文件



这时,新建一个Package,再在新建的Package里新建一个Java文件:



package cn.busymonkey.test;

import android.app.Activity;
import android.os.Bundle;

public class Hello extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
}

然后添加layout文件:



<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >

<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello" />

</LinearLayout>


接着是string.xml

<resources>

<string name="hello">Hello World, AndroidhelloActivity!</string>
<string name="app_name">Hello</string>

</resources>


最后是AndroidManifest.xml

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="cn.busymonkey.test"
android:versionCode="1"
android:versionName="1.0" >

<uses-permission
android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>

<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="19" />

<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".Hello" >
<intent-filter >
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>

</manifest>


内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: