猿问
回到首页
个人中心
反馈问题
注册登录
下载APP
首页
课程
实战
体系课
手记
专栏
慕课教程
Android-按钮边框
如何在按钮上添加边框?是否可以不使用图像来做到这一点?
烙印99
浏览 647
回答 3
3回答
HUH函数
Android Official Solution自从引入Android Design支持v28以来,使用即可轻松创建带边框的按钮MaterialButton。此类为构造函数中的按钮提供更新的Material样式。使用app:strokeColor和app:strokeWidth您可以创建自定义边框,如下所示:1.使用时androidx:build.gradledependencies { implementation 'androidx.appcompat:appcompat:1.1.0' implementation 'com.google.android.material:material:1.0.0'}•带边框的按钮:<com.google.android.material.button.MaterialButton style="@style/Widget.AppCompat.Button.Colored" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="MATERIAL BUTTON" android:textSize="15sp" app:strokeColor="@color/green" app:strokeWidth="2dp" />•未填充边框按钮:<com.google.android.material.button.MaterialButton style="@style/Widget.AppCompat.Button.Borderless" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="UNFILLED MATERIAL BUTTON" android:textColor="@color/green" android:textSize="15sp" app:backgroundTint="@color/transparent" app:cornerRadius="8dp" app:rippleColor="#33AAAAAA" app:strokeColor="@color/green" app:strokeWidth="2dp" />2.使用时appcompat:build.gradledependencies { implementation 'com.android.support:design:28.0.0'}style.xml确保您的应用程序主题继承自Theme.MaterialComponents而不是Theme.AppCompat。<style name="AppTheme" parent="Theme.MaterialComponents.Light.DarkActionBar"> <!-- Customize your theme here. --></style>•带边框的按钮:<android.support.design.button.MaterialButton android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="MATERIAL BUTTON" android:textSize="15sp" app:strokeColor="@color/green" app:strokeWidth="2dp" />•未填充边框按钮:<android.support.design.button.MaterialButton style="@style/Widget.AppCompat.Button.Borderless" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="UNFILLED MATERIAL BUTTON" android:textColor="@color/green" android:textSize="15sp" app:backgroundTint="@color/transparent" app:cornerRadius="8dp" app:rippleColor="#33AAAAAA" app:strokeColor="@color/green" app:strokeWidth="2dp" />
0
0
0
打开App,查看更多内容
随时随地看视频
慕课网APP
相关分类
Android
继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续