12345678910111213141516171819202122232425 |
- <?xml version="1.0" encoding="utf-8"?>
- <AbsoluteLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <!--屏保图片-->
- <ImageView
- android:id="@+id/screen_protect_img"
- android:layout_width="345dp"
- android:layout_height="570dp"
- android:layout_x="0dp"
- android:layout_y="30dp"
- android:background="@drawable/index_image" />
- <TextView
- android:id="@+id/screen_protect_title"
- android:layout_width="116.8dp"
- android:layout_height="24.32dp"
- android:layout_x="114.24dp"
- android:layout_y="42.96dp"
- android:gravity="center"
- android:textColor="@color/white"
- android:textSize="20dp" />
- </AbsoluteLayout>
|