我是
靠谱客的博主
幸福黑夜,最近开发中收集的这篇文章主要介绍
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如何设置圆角按钮所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复