您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
在Android中,为按钮(Button)设计圆角边框,你可以使用以下几种方法:
res/drawable
目录下创建一个新的XML文件,例如rounded_button.xml
。<shape>
标签定义一个圆角矩形:<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="@android:color/holo_blue_bright"/> <!-- 按钮的背景颜色 -->
<corners android:radius="10dp"/> <!-- 圆角的半径 -->
<stroke
android:width="2dp" <!-- 边框的宽度 -->
android:color="@android:color/white"/> <!-- 边框的颜色 -->
</shape>
android:background
属性设置为刚刚创建的背景文件:<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Click me"
android:background="@drawable/rounded_button"/>
Android Material Design库提供了一些预定义的背景资源,你可以直接使用它们为按钮添加圆角边框。例如,Widget.MaterialComponents.Button.Outlined
:
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Click me"
android:background="?attr/material_on_primary_emphasis_high_type"/>
你也可以在Java或Kotlin代码中为按钮动态设置背景。例如,在Java中:
Button button = findViewById(R.id.button);
ShapeDrawable shapeDrawable = new ShapeDrawable(new RoundedRectShape(10, 10, 10, 10)); // 创建圆角矩形
shapeDrawable.getPaint().setColor(Color.WHITE); // 设置边框颜色
shapeDrawable.getPaint().setStrokeWidth(2); // 设置边框宽度
button.setBackground(shapeDrawable);
在Kotlin中:
val button = findViewById<Button>(R.id.button)
val shapeDrawable = ShapeDrawable(RoundedRectShape(10f, 10f, 10f, 10f)) // 创建圆角矩形
shapeDrawable.paint.color = Color.WHITE // 设置边框颜色
shapeDrawable.paint.strokeWidth = 2f // 设置边框宽度
button.background = shapeDrawable
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。