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

本文介绍如何在Android开发中解决特定Button控件显示的警告信息。通过添加style属性,可以轻松地消除这一警告,并确保控件样式符合应用的整体设计。
        在android开发中定义一个普通的Button控件,控件会显示Buttons in button bars should be borderless; use style="?android:attr/buttonBarButtonStyle" (and ?android:attr/buttonBarStyle on the parent)的警告信息。

如下所示:

  <Button
            android:id="@+id/btnSave"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/txtsave" />

解决办法:

 <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/buttonStyle"即可去除警告信息,这个属性有很多,可以根据具体需要进行修改

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值