2010年5月19日星期三

浮動窗口(Floating Window), android:theme="@android:style/Theme.Dialog"

一般來說, 一個活動(Activity)會分配一個全屏幕, 但亦可以浮動窗口(Floating Window)形式顯示. 只需要在AndroidManifest.xml中把activity的android:theme設置為"@android:style/Theme.Dialog"即可.

浮動窗口(Floating Window)

AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.AndroidFloatingWindow"
android:versionCode="1"
android:versionName="1.0">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".AndroidFloatingWindow"
android:label="@string/app_name"
android:theme="@android:style/Theme.Dialog"
>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

</application>
<uses-sdk android:minSdkVersion="4" />

</manifest>




沒有留言:

發佈留言