您的位置:首页技术文章
文章详情页

Android Studio自动提取控件Style样式教程

【字号: 日期:2022-09-26 14:02:03浏览:15作者:猪猪

如题,有时候看见一个布局写上几百行看上去会非常吃力麻烦,这时候抽取控件样式很有必要了, Android Studio提供了抽取Style样式的方式, 可能是藏的太深了, 很少人用

光标放在控件内: 右键 ?>Refactor ?> Extract ?>Style…

Android Studio自动提取控件Style样式教程

选择之后弹出对话框:

Android Studio自动提取控件Style样式教程

如果你用的很多, 也可以为它设置快捷键:

打开Android Studio设置页面, 在Keymap中搜索extract, Style就是了, 然后右键单击Style 为它添加快捷键

Android Studio自动提取控件Style样式教程

弹出窗口, 直接按你想要设置的快捷键就OK了, 然后确认

Android Studio自动提取控件Style样式教程

然后就快捷键, 愉快的玩耍了

补充知识:Android Studio Button 美化

改变按钮Button控件的边角、填充颜色、边框颜色。

步骤:

在 res>drawable 中新建一个 btn_all_shape.xml :

<?xml version='1.0' encoding='utf-8'?><shape xmlns:android='http://schemas.android.com/apk/res/android'> <corners android:bottomLeftRadius='15dp' android:bottomRightRadius='15dp' android:topLeftRadius='15dp' android:topRightRadius='15dp' /> <!-- 设置填充颜色 --> <solid android:color='@color/green' /> <!-- 设置边框颜色 --> <stroke android: android:color='@color/white'/></shape>

在要改变的按键的xml中添加这一句:

android:background='@drawable/btn_all_shape'

以上这篇Android Studio自动提取控件Style样式教程就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持好吧啦网。

标签: Android
相关文章: