我已经下载了包含 Ecpise、SDK 和 Java 的包,它没有太多的主题或实用程序,但现在我发现它仍然将 TitleBar 放到我的应用程序中。我想摆脱它,但android:theme="@android:style/Theme.NoTitleBar"
在 Android Manifest 中似乎不起作用。请问如何下载这个和其他样式?
编辑:甚至 this.requestWindowFeature(Window.FEATURE_NO_TITLE); 在方法 onCreate() 中不起作用。
EDIT2:
清单:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.jakubturcovsky.workoutapp"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="17" />
<application
android:allowBackup="true"
android:label="@string/app_name"
android:icon="@drawable/ic_launcher" >
<activity
android:theme="@android:style/Theme.NoTitleBar"
android:name=".Polodrepy"
android:exported="false" >
</activity>
</application>
</manifest>
我想摆脱的图片:http:
//imgur.com/sQli50Q