首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > Android >

Android项目初步时的文件

2012-06-26 
Android项目初始时的文件?1、Android初始化时的文件?2、PhotoActivity.java文件package com.photoimport an

Android项目初始时的文件

?1、Android初始化时的文件

?


Android项目初步时的文件

2、PhotoActivity.java文件

package com.photo;import android.app.Activity;import android.os.Bundle;public class PhotoActivity extends Activity {    /** Called when the activity is first created. */    @Override    public void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.main);    }}

?

?3、main.xml文件

<?xml version="1.0" encoding="utf-8"?><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>

?

?4、string.xml文件

<?xml version="1.0" encoding="utf-8"?><resources>    <string name="hello">Hello World, PhotoActivity!</string>    <string name="app_name">Photo</string></resources>

?

? 5、AndroidManifest.xml文件

<?xml version="1.0" encoding="utf-8"?><manifest xmlns:android="http://schemas.android.com/apk/res/android"    package="com.photo"    android:versionCode="1"    android:versionName="1.0" >    <uses-sdk android:minSdkVersion="8" />    <application        android:icon="@drawable/ic_launcher"        android:label="@string/app_name" >        <activity            android:name=".PhotoActivity"            android:label="@string/app_name" >            <intent-filter>                <action android:name="android.intent.action.MAIN" />                <category android:name="android.intent.category.LAUNCHER" />            </intent-filter>        </activity>    </application></manifest>

热点排行