《android註冊頁面》博客中main.xml代碼中每個組件定義的屬性有重覆的部分,為了避免繁瑣可以把各個組件重覆的屬性定義到一個文件中:res/values/style_test.xml源碼: <?xml version="1.0" encoding="utf-8"?><resources> < ...
《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>
運行結果依舊。