如何在android中设置自定义操作栏

时间:2015-03-09 10:51:45

标签: android

   <style name="Sherlock.__Theme" parent="android:Theme.NoTitleBar">
    <item name="android:displayOptions">showHome|homeAsUp|showTitle</item>
    <item name="displayOptions">showHome|homeAsUp|showTitle</item>
    <item name="android:icon">@android:color/transparent</item> 
</style>

这是我的风格我称之为这样的风格:

<application
        android:name="com.lociiapp.LociiApplication"
        android:allowBackup="true"
        android:icon="@drawable/lokii_notification_icon"
        android:theme="@style/Sherlock.__Theme" >

我的屏幕就像这样:

enter image description here

我希望设置样式没有Locii文本没有水平线和白色背景我想尝试但是无法做到这一点请告诉我如何实现这个。

2 个答案:

答案 0 :(得分:0)

试试这种风格:

<style name="Sherlock.__Theme" parent="android:Theme.NoTitleBar">
    <!-- Customize your theme here. -->
    <item name="android:windowContentOverlay">@null</item>
    <item name="android:background">#ffffff</item>
</style>

如果你想删除tittle,你可以删除:

android:label="@string/app_name" 
在您的Manifest.xml中

,或者通过以下代码执行:

getSupportActionBar().setDisplayOptions(0, ActionBar.DISPLAY_SHOW_TITLE);

希望有所帮助:)

修改

<style name="Sherlock.__Theme" parent="android:Theme.NoTitleBar">
        <!-- Customize your theme here. -->
        <item name="android:windowContentOverlay">@null</item>
        <item name="android:background">#ffffff</item>
        <item name="displayOptions">showHome|useLogo</item>
</style>

使用代码:

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

答案 1 :(得分:0)

您似乎想要为操作栏创建自己的布局。这是一种方法。

在menu.xml文件中,创建操作栏

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:background="@color/custom"
    android:gravity="center_vertical">

 ...
</LinearLayout>

然后,将其导入其他布局:

<include
    android:id="@+id/menu"
    layout="@layout/menu" />

不要忘记隐藏操作栏或选择没有操作栏的主题。