android studio 圆角背景的使用
程序员文章站
2022-09-14 14:37:28
1.一般在drawable文件夹下新建文件translucent.xml ...
1.一般在drawable文件夹下新建文件translucent.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<!-- 背景颜色 -->
<solid android:color="#33CCFF" />
<!-- 边框的宽度和颜色颜色 -->
<stroke android:width="1dip" android:color="#33CCFF" />
<!-- android:radius 弧形的半径 -->
<corners android:radius="20dp"/>
<!-- padding:Button里面的文字与Button边界的间隔 -->
<padding
android:left="10dp"
android:top="10dp"
android:right="10dp"
android:bottom="10dp"
/>
/>
</shape>
2.使用translucent.xml
<Button
android:id="@+id/button1"
android:layout_width="100dp"
android:layout_height="50dp"
android:layout_marginLeft="20dp"
android:layout_marginTop="10dp"
android:text="按钮"
android:background="@drawable/translucent"/>
使用之后,这个button按钮的背景就是弧形的样式了
本文地址:https://blog.csdn.net/qq_35086941/article/details/107206002
推荐阅读
-
Android studio项目代码与剪切板做对比的两种方法
-
Android studio怎么使用git获取最新内容然后合并?
-
Android Studio导入library项目开源库的图文教程
-
Android studio打开很多标签的时候怎么快速切换标签?
-
Android studio录制代码宏的详细教程
-
Android studio从Github克隆下载源代码并导入的教程
-
Android studio使用git代码追溯到上个文件的教程?
-
Android 使用Pull方法解析XML文件的方法
-
android 自定义ScrollView实现背景图片伸缩的实现代码及思路
-
android UI进阶之android中隐藏的layout 抽屉的使用方法