Layout_weight不适用于工具栏中的按钮

时间:2018-01-23 15:00:39

标签: android android-layout-weight

android:layout_weight不适用于工具栏中的按钮。按钮的声明宽度为0dp,就像没有layout_weight参数一样。我不明白。感谢。

布局代码:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:theme="@style/Base.Animation.AppCompat.Dialog">
<android.support.v7.widget.Toolbar
    android:id="@+id/toolbar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:weightSum="2"
    android:background="@color/colorAccent"
    android:minHeight="?attr/actionBarSize"
    android:theme="?attr/actionBarTheme">
    <Button
        android:id="@+id/button2"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="Button" />
    <Button
        android:id="@+id/button3"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="Button" />

</android.support.v7.widget.Toolbar>
<ProgressBar
    android:id="@+id/progressBar"
    style="@android:style/Widget.Holo.Light.ProgressBar.Horizontal"
    android:layout_width="match_parent"
    android:layout_height="10dp"
    android:indeterminateOnly="true"
    android:progress="?android:attr/scrollbarDefaultDelayBeforeFade" />
<android.support.v7.widget.RecyclerView
    android:id="@+id/dd"
    android:layout_width="match_parent"
    android:layout_height="match_parent" />
</LinearLayout>

0 个答案:

没有答案