- 问题描述:
Buttons in button bars should be borderless; use style=”?android:attr/buttonBarButtonStyle”
(and ?android:attr/buttonBarStyle on the parent)
- 原因:两个 Buttons 放在一个布局里会被判断为按钮栏,需要添加样式取消它的边框。
- 解决方法: 在 Buttons 上添加属性
style=”?android:attr/buttonBarButtonStyle” 或者
style=”?android:attr/buttonStyle”
如:
<Button
android:id="@+id/btnSave"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
style="?android:attr/buttonStyle"
android:text="@string/txtsave" />
酌情给父布局设置style=”?android:attr/buttonBarStyle” 属性