android style举例

来源:互联网 发布:面板数据多重共线性 编辑:程序博客网 时间:2024/05/17 21:41
<resources>    <style name="AppBaseTheme" parent="android:Theme.Light"></style>    <style name="AppTheme" parent="AppBaseTheme"></style>    <style name="mystyle">        <item name="android:layout_width">wrap_content</item>        <item name="android:layout_height">wrap_content</item>        <item name="android:background">#A1B9E7</item>        <item name="android:textSize">20sp</item>        <item name="android:textColor">#F15963</item>        <item name="android:text">hehe</item>    </style></resources>


<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="match_parent"    android:orientation="vertical" >    <TextView style="@style/mystyle" />    <TextView style="@style/mystyle" />    <TextView style="@style/mystyle" />    <TextView style="@style/mystyle" />    <TextView style="@style/mystyle" /></LinearLayout>

结果


样式可以继承,加上这句

 <style name="mystyle" parent="@style/AppBaseTheme">


1 0
原创粉丝点击