首页 » 技术分享 » Android中Button控件Buttons in button bars should be borderless;警告信息

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

 

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

转载自原文链接, 如需删除请联系管理员。

原文链接:Android中Button控件Buttons in button bars should be borderless;警告信息,转载请注明来源!

0