android样式和主题

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android样式和主题相关的知识,希望对你有一定的参考价值。

android注册页面》博客中main.xml代码中每个组件定义的属性有重复的部分,为了避免繁琐可以把各个组件重复的属性定义到一个文件中:res/values/
style_test.xml源码:

<?xml version="1.0" encoding="utf-8"?>
<resources>
  <style name="CodeFont" parent="@android:style/TextAppearance.Medium">
    <item name="android:layout_width">match_parent</item>
    <item name="android:layout_height">wrap_content</item>
    <item name="android:textSize">16sp</item>
  </style>
</resources>

main.xml文件做如下修改:

<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:stretchColumns="1"
  android:background="@drawable/bluesky"
>

<!-- 账号 -->
<TableRow>
  <TextView
    style="@style/CodeFont"
    android:text="账号:"
  />
  <EditText
    style="@style/CodeFont"
    android:hint="手机号"
    android:selectAllOnFocus="true"
  />
</TableRow>

<!-- 密码 -->
<TableRow>
  <TextView
    style="@style/CodeFont"
    android:text="密码:"
  />
  <EditText
    style="@style/CodeFont"
    android:inputType="numberPassword"
  />
</TableRow>

<!-- 生日 -->
<TableRow>
  <TextView
    style="@style/CodeFont"
    android:text="生日:"
  />
  <EditText
    style="@style/CodeFont"
    android:inputType="date"
  />
</TableRow>

<!-- 住址 -->
<TableRow>
  <TextView
    style="@style/CodeFont"
    android:text="住址:"
  />
  <EditText
    style="@style/CodeFont"
    android:inputType="textPostalAddress"
  />
</TableRow>

<!-- 电子邮箱 -->
<TableRow>
  <TextView
    style="@style/CodeFont"
    android:text="电子邮箱:"
  />
  <EditText
    style="@style/CodeFont"
    android:inputType="textEmailAddress"
  />
</TableRow>

<!-- 注册 -->
<TableRow>
  <Button
    style="@style/CodeFont"
    android:text="注册"
  />
</TableRow>

</TableLayout>

运行结果依旧。

 

以上是关于android样式和主题的主要内容,如果未能解决你的问题,请参考以下文章

Android开发主题样式详解

Android 样式 (style) 和主题(theme)

Android 样式和主题(style & theme)

Android主题定制

无法通过 `api` 方法从 Android 模块解析主题和样式

Android 通讯录应用程序主题/样式