angryegg

  BlogJava :: 首页 :: 新随笔 :: 联系 :: 聚合  :: 管理 ::
  0 随笔 :: 5 文章 :: 0 评论 :: 0 Trackbacks

 

 1<?xml version="1.0" encoding="utf-8"?>
 2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
 3      package="com.buda"
 4      android:versionCode="1"
 5      android:versionName="1.0">
 6    <uses-sdk android:minSdkVersion="10" />
 7
 8    <application android:icon="@drawable/icon" android:label="@string/app_name">
 9        <activity android:name=".BeginAndroidActivity"
10                  android:label="@string/app_name"
11                  android:theme="@android:style/Theme.Dialog"
12                  >
13            <intent-filter>
14                <action android:name="android.intent.action.MAIN" />
15                <category android:name="android.intent.category.LAUNCHER" />
16            </intent-filter>
17        </activity>
18
19    </application>
20</manifest>
21


 

posted on 2011-07-31 15:25 angryegg 阅读(88) 评论(0)  编辑  收藏 所属分类: Android