1234567891011121314151617181920212223242526272829 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="@dimen/zzz_activity_width"
- android:layout_height="@dimen/zzz_activity_height"
- android:orientation="vertical">
- <include
- android:id="@+id/zzz_title"
- layout="@layout/zzz_common_title_layout"/>
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_below="@id/zzz_title">
- <LinearLayout
- android:id="@+id/zzz_gift_detail_content"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical"
- android:background="@drawable/zzz_dialog_content_shape"/>
- <View
- android:layout_width="match_parent"
- android:layout_height="@dimen/zzz_title_gradient_height"
- android:background="@drawable/zzz_title_gradient"/>
- </RelativeLayout>
- </RelativeLayout>
|