Posts

Showing posts from May, 2011

[Android] 刪除視窗標題(title)

在res/values/styles.xml裡加入以下內容: <?xml version="1.0" encoding="utf-8"?> <resources> <style name="Theme"> <item name="android:windowNoTitle">true</item> </style> </resources> 修改AndroidManifest.xml裡 <?xml version="1.0" encoding="utf-8"?> <manifest> <application android:icon="@drawable/icon" android:label="@string/app_name" android:theme="@style/Theme"> <activity> ... </activity> </application> </manifest> 多加這一項 android:theme="@style/Theme">