我在工具栏上有两个按钮,它们不遵守“wrap_content”layout_width 指令。我添加了绿色和红色背景颜色,以使它们的真实宽度在屏幕截图中明显。我将填充设置为 0dp,也没有边距。我查看了我的简短 styles.xml 并没有看到任何相关内容,并且我没有注意到应用程序中的其他任何地方正在发生这种情况。任何提示将不胜感激。
谢谢。
<android.support.v7.widget.Toolbar
android:id="@+id/pdf_renderer_toolbar"
android:layout_alignParentTop="true"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/primaryColor"
android:theme="@style/MyStyle"
app:layout_scrollFlags="scroll|enterAlways"
app:titleTextAppearance="@style/Toolbar.TitleText"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" >
<Button
android:layout_width="wrap_content"
android:layout_height="50dp"
android:text="Docs"
android:layout_gravity="right"
android:layout_marginRight="0dp"
android:padding="0dp"
android:background="@color/green_button_color"
android:textColor="@color/solid_white"
android:textSize="18sp"
android:id="@+id/pdf_docs_button"
android:textAllCaps="false"
style="?android:attr/borderlessButtonStyle"
/>
<Button
android:layout_width="wrap_content"
android:layout_height="50dp"
android:text="Edit"
android:layout_gravity="right"
android:padding="0dp"
android:layout_marginRight="0dp"
android:background="@color/red_button_color"
android:textColor="@color/solid_white"
android:textSize="18sp"
android:id="@+id/pdf_edit_button"
android:textAllCaps="false"
style="?android:attr/borderlessButtonStyle"
/>
</android.support.v7.widget.Toolbar>