0
点赞
收藏
分享

微信扫一扫

Android中Button控件警告信息Buttons in button bars should be borderless


  • 问题描述:

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” 属性

举报

相关推荐

0 条评论