首页 > 代码库 > style抽取
style抽取
<resources> <!-- Base application theme, dependent on API level. This theme is replaced by AppBaseTheme from res/values-vXX/styles.xml on newer devices. --> <style name="AppBaseTheme" parent="android:Theme.Light"> <!-- Theme customizations available in newer API levels can go in res/values-vXX/styles.xml, while customizations related to backward-compatibility can go here. --> </style> <!-- Application theme. --> <style name="AppTheme" parent="AppBaseTheme"> <!-- All customizations that are NOT specific to a particular API-level can go here. --> </style> <!-- contentFragment的RaidoButton的样式 <RadioButton android:id="@+id/contentfragment_rbtn_home" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_weight="1" android:text="首页" android:textColor="@color/selector_contentfragment_rbtn_textcolor" android:button="@null" android:drawableTop="@drawable/selector_contentfragment_home" android:gravity="center_horizontal" android:drawablePadding="3dp" android:padding="5dp" /> --> <!-- 设置权重的时候宽度是0dp,平均分配宽度,如果宽度是wrap_content,根据控件的实际显示内容来分配宽度 --> <style name="ContentFragmentRadioButtonStyle"> <item name="android:layout_width">wrap_content</item> <item name="android:layout_height">wrap_content</item> <item name="android:layout_weight">1</item> <item name="android:textColor">@color/selector_contentfragment_rbtn_textcolor</item> <item name="android:button">@null</item> <item name="android:gravity">center_horizontal</item> <item name="android:drawablePadding">3dp</item> <item name="android:padding">5dp</item> </style> </resources>
style抽取
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。