删除android:图标和标签

时间:2014-09-17 16:28:10

标签: android android-layout android-activity

如何从ActionBar中删除或隐藏android:icon和android:标签?我知道可以删除所有ActionBar,但只需要像我的图像这两个参数。

的Manifest.xml

  <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name=".Login"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name="br.com.fourop.meuponto.Main"
            android:label="@string/app_name" >
        </activity>
    </application>

感谢您的帮助!

enter image description here

1 个答案:

答案 0 :(得分:2)

您可以通过从getActionBar()方法调用setDisplayShowHomeEnabled和setDisplayShowTitleEnabled来删除图标和标题

就这么简单

@Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        ActionBar actionBar = getActionBar();
        actionBar.setDisplayShowHomeEnabled(false);
        actionBar.setDisplayShowTitleEnabled(false);

        //the rest of your code...
}