实现自定义操作栏android的问题

时间:2015-06-08 17:35:43

标签: java android xml android-actionbar

我在下方创建了自定义操作栏布局。我想为我的一个活动实现这个目标(目的是让它用于所有活动,但我现在正在测试它)。我使用以下代码执行此操作:



 public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_display_all_bets);
        getSupportActionBar().setDisplayShowHomeEnabled(false);
        getSupportActionBar().setDisplayShowTitleEnabled(false);
        LayoutInflater mInflater = LayoutInflater.from(this);

        View customView=getLayoutInflater().inflate(R.layout.action_bar, null);
        getSupportActionBar().setCustomView(customView);
        getSupportActionBar().setDisplayShowCustomEnabled(true);
}




然而,我没有获得动作栏,而是获得了一个看起来像这样的混搭,甚至没有填满整个屏幕的宽度。 enter image description here

action_bar.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="120dp"
    android:weightSum="100"
    android:background="#27044A"
    android:orientation="vertical">


    <LinearLayout
        android:orientation="horizontal"
        android:layout_width="fill_parent"
        android:layout_weight="15"
        android:layout_height="wrap_content">


        <LinearLayout
            android:orientation="vertical"
            android:layout_width="wrap_content"
            android:layout_weight="30"
            android:layout_height="match_parent">
            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:gravity="center_horizontal"
                android:textAlignment="center"
                android:textColor="#d35400"
                android:textStyle="bold"
                android:text="User"/>
            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:gravity="center_horizontal"
                android:textColor="#d35400"
                android:layout_gravity="center_vertical"
                android:text="tester@tester.com"/>

        </LinearLayout>

        <LinearLayout
            android:orientation="vertical"
            android:layout_weight="25"
            android:layout_width="wrap_content"
            android:layout_height="match_parent">
            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:gravity="center_horizontal"
                android:textAlignment="center"
                android:textColor="#d35400"
                android:textStyle="bold"
                android:text="Coins"/>
            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:gravity="center_horizontal"
                android:textColor="#d35400"
                android:text="60000"/>
        </LinearLayout>

        <LinearLayout
            android:orientation="vertical"
            android:layout_width="wrap_content"
            android:layout_weight="25"
            android:layout_height="match_parent">
            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:gravity="center_horizontal"
                android:textAlignment="center"
                android:textStyle="bold"
                android:textColor="#d35400"
                android:text="Winnings"/>
            <TextView
                android:layout_width="match_parent"
                android:textColor="#d35400"
                android:layout_height="wrap_content"
                android:gravity="center_horizontal"
                android:text="35000"/>
        </LinearLayout>

        <LinearLayout
            android:orientation="vertical"
            android:layout_width="wrap_content"
            android:layout_weight="20"
            android:layout_height="match_parent">

            <Button
                android:layout_width="match_parent"
                android:layout_height="33dp"
                android:text="Logout"
                android:textColor="#ffd35400"
                android:textSize="13sp"/>
        </LinearLayout>
    </LinearLayout>
    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="85"
        android:orientation="horizontal"
        android:weightSum="100">
        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="fill_parent"
            android:layout_weight="20"
            android:background="@drawable/selector"
            android:orientation="vertical"
            android:weightSum="100">
            <ImageView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:src="@drawable/football50"
                android:layout_weight="93"/>
            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_weight="7"
                android:textStyle="bold"
                android:textColor="#d35400"
                android:text= "Bet Now!"
                android:gravity="center"/>
        </LinearLayout>
        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="fill_parent"
            android:layout_weight="20"
            android:background="@drawable/selector"
            android:orientation="vertical"
            android:weightSum="100">
            <ImageView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:src = "@drawable/chip50"
                android:layout_weight="93"/>
            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text = "My Bets"
                android:textStyle="bold"
                android:gravity="center"
                android:textColor="#d35400"
                android:layout_weight="7"/>
        </LinearLayout>
        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="fill_parent"
            android:layout_weight="20"
            android:background="@drawable/selector"
            android:orientation="vertical"
            android:weightSum="100">
            <ImageView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:src="@drawable/clover50"
                android:layout_weight="93"/>
            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text = "Coin Frenzy"
                android:textStyle="bold"
                android:gravity="center"
                android:textColor="#d35400"
                android:layout_weight="7"/>
        </LinearLayout>
        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="fill_parent"
            android:background="@drawable/selector"
            android:layout_weight="20"
            android:orientation="vertical"
            android:weightSum="100">
            <ImageView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:src="@drawable/trophy50"
                android:layout_weight="93"/>
            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text = "Rankings"
                android:textStyle="bold"
                android:gravity="center"
                android:textColor="#d35400"
                android:layout_weight="7"/>
        </LinearLayout>
        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="fill_parent"
            android:layout_weight="20"
            android:orientation="vertical"
            android:background="@drawable/selector"
            android:weightSum="100">
            <ImageView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:src="@drawable/moneybag50"
                android:layout_weight="93"/>
            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="Shop"
                android:textStyle="bold"
                android:textColor="#d35400"
                android:gravity="center"
                android:layout_weight="7"/>
        </LinearLayout>

    </LinearLayout>
</LinearLayout>
&#13;
&#13;
&#13;

enter image description here 预期的外观

2 个答案:

答案 0 :(得分:1)

你的意思是它没有填满屏幕的宽度? mashup是因为你试图将如此多的嵌套LinearLayouts和东西压缩成一个ActionBar。右边的三个点是溢出菜单(可以禁用)。

查看Android design guidelines以正确使用工具栏(因为不推荐使用ActionBar)。我认为你有更多的设计问题而不是编程问题。

答案 1 :(得分:-1)

您正在尝试在操作栏中添加大量视图。通常,操作栏布局简单明了。操作栏的目的通常是显示重要更新和导航视图。 如果您仍然需要此GUI,我认为您可以放弃此操作栏GUI,而是创建可重复使用的自定义布局并将其置于每个活动之上。