angryegg
BlogJava
::
首页
::
新随笔
::
联系
::
聚合
::
管理
::
0 随笔 :: 5 文章 :: 0 评论 :: 0 Trackbacks
<
2025年7月
>
日
一
二
三
四
五
六
29
30
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
1
2
3
4
5
6
7
8
9
留言簿
给我留言
查看公开留言
查看私人留言
文章分类
Android(5)
(rss)
文章档案
2011年7月 (5)
搜索
最新评论
乐学Android之03:Activity样式
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
新用户注册
刷新评论列表
只有注册用户
登录
后才能发表评论。
网站导航:
博客园
IT新闻
Chat2DB
C++博客
博问
管理
相关文章:
乐学Android之04:隐藏标题栏
乐学Android之05:显示Dialog Window
乐学Android之03:Activity样式
乐学Android之02:Activity生命周期
乐学Android之01:Android开发环境搭建全程演示
Powered by:
BlogJava
Copyright © angryegg