Android标题栏自定义视图不会延伸

时间:2014-10-24 14:13:19

标签: android android-actionbar titlebar

我在我的应用中使用api 21 titlebar。我想拉伸我的按钮或Linearlayout,但我不能。 我的代码:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="com.example.toolbartest.MainActivity" >
<android.support.v7.widget.Toolbar  
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/my_awesome_toolbar"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:minHeight="?attr/actionBarSize"
android:background="#ff9900"> 
<Button
    android:layout_height="match_parent"
android:layout_width="match_parent"
android:text="GSSGSDGSDG"/>
</android.support.v7.widget.Toolbar>

</LinearLayout>![enter image description here][1]


Toolbar toolbar = (Toolbar) findViewById(R.id.my_awesome_toolbar);
    setSupportActionBar(toolbar);
    getSupportActionBar().setDisplayShowTitleEnabled(false);

我明白了:

enter image description here

1 个答案:

答案 0 :(得分:0)

我解决了,这里是xml代码:

<android.support.v7.widget.Toolbar
    xmlns:plugshare="http://schemas.android.com/apk/res-auto"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/my_awesome_toolbar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="#ff9900"
    android:minHeight="?attr/actionBarSize"
    app1:contentInsetStart="0dp" >

 <Button
   android:layout_width="match_parent"
   android:layout_height="?attr/actionBarSize"
   android:text="GGSSSDFSDFSFFSDF" /> 
</android.support.v7.widget.Toolbar>