我是
靠谱客的博主
幸福黑夜,这篇文章主要介绍
Android如何设置圆角按钮,现在分享给大家,希望可以做个参考。
1. 在res目录下的drawable目录下新建shape.xml文件
- <?xml version="1.0" encoding="utf-8"?>
- <shape xmlns:android="http://schemas.android.com/apk/res/android"
- android:shape="rectangle" >
-
-
- <solid android:color="#FF065E8D" />
-
-
-
- <corners android:radius="15dip" />
-
-
- <padding
- android:bottom="10dp"
- android:left="10dp"
- android:right="10dp"
- android:top="10dp" />
- </shape>
2.在布局文件中调用。
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:orientation="vertical" >
-
- <Button
- android:id="@+id/roundButton"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:background="@drawable/shape"
- android:text="圆角按钮" />
- </LinearLayout>
nvisible:不显示,但保留所占的空间
visible:正常显示
gone:不显示,且不保留所占的空间
XML里:
android:visibility="visible"
代码里,如Button
btn.setVisibility(View.VISIBLE);
最后
以上就是幸福黑夜最近收集整理的关于Android如何设置圆角按钮的全部内容,更多相关Android如何设置圆角按钮内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复