mirror of
https://github.com/pppscn/SmsForwarder
synced 2025-08-03 01:17:41 +08:00
30 lines
1.1 KiB
XML
30 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/ItemTextView"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="5dip"
|
|
android:gravity="center"
|
|
android:maxLines="1"
|
|
android:text="@string/add_sender_title"
|
|
android:textColor="#ffffff"
|
|
android:textSize="18sp" />
|
|
|
|
<GridView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/MemuGridView"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentTop="true"
|
|
android:layout_marginTop="20dp"
|
|
android:columnWidth="90dp"
|
|
android:gravity="center"
|
|
android:horizontalSpacing="10dp"
|
|
android:numColumns="auto_fit"
|
|
android:stretchMode="columnWidth"
|
|
android:verticalSpacing="10dp"></GridView>
|
|
</LinearLayout> |