有人可以告诉我如何为ViewGroup CLASS设置样式?我试图在互联网上找到解决方案,但没有成功。
谢谢。
答案 0 :(得分:1)
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:orientation="horizontal"
android:paddingLeft="16dp"
android:paddingRight="16dp"
style="@style/AppTheme" // <--------- reference your style here
>
</LinearLayout>
答案 1 :(得分:1)
在res文件夹中的style.xml文件中定义样式,如下所示:
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="Style_Button_SquareGrayLight">
<item name="android:textColor">@color/white</item>
<item name="android:background">@drawable/button_basic_gray_rounded_corners</item>
<item name="android:textSize">@dimen/button</item>
<item name="android:typeface">sans</item>
<item name="android:textStyle">bold</item>
<item name="android:layout_height">35dip</item>
<item name="android:paddingLeft">10dip</item>
<item name="android:paddingRight">10dip</item>
<item name="android:singleLine">true</item>
</style>
</resources>
如上所述,我的风格名称为&#34; Style_Button_SquareGrayLight&#34;现在,您可以使用style =&#34; @ style / AppThemeName&#34;将此样式设置为任何视图或视图组。财产如下:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/page_left_padding"
android:layout_marginRight="0dip"
android:layout_marginTop="@dimen/page_top_padding"
style="@style/Style_Button_SquareGrayLight"/>
同样可以设置Button,TextView等视图。