Android,Eclipse - 我没有NoTitleBar主题,如何下载?

时间:2013-06-28 10:56:07

标签: android eclipse download titlebar

我已经下载了包含Ecpise,SDK和Java的软件包,它没有太多主题或实用程序,但现在我发现它仍然将TitleBar放到我的应用程序中。我想摆脱它,但Android Manifest中的android:theme="@android:style/Theme.NoTitleBar"似乎无法正常工作。我该如何下载这个和其他样式?

编辑:甚至this.requestWindowFeature(Window.FEATURE_NO_TITLE); in方法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

1 个答案:

答案 0 :(得分:1)

这是动作栏。尝试.NoActionBar主题,例如Theme.Holo.NoActionBar