安卓android 怎么设计出最有现代感的按钮样式
大家都知道Android studio默认的按钮样式是非常丑陋的,所以今天我要创造一个符合线代感的按钮以上 是as给我提示的警告信息,意思是设置按钮的样式为如下:<LinearLayoutandroid:layout_width="wrap_content"android:layout_height="wrap_content"style="?android:attr/buttonBarSt
·
大家都知道Android studio默认的按钮样式是非常丑陋的,所以今天我要创造一个符合线代感的按钮
以上 是as给我提示的警告信息,意思是设置按钮的样式为如下:
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
style="?android:attr/buttonBarStyle"
android:orientation="horizontal">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
style="?android:attr/buttonBarButtonStyle"
android:text="@string/true_button"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
style="?android:attr/buttonBarButtonStyle"
android:text="@string/false_button"/>
</LinearLayout>
主要在父布局中添加属性:
style="?android:attr/buttonBarStyle"
然后在按钮字段中添加属性:
style="?android:attr/buttonBarButtonStyle"
这样形成的按钮就没有了之前丑陋的边界了,变成一种漂亮的扁平化无边界的按钮了
更多推荐
已为社区贡献2条内容
所有评论(0)