| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <LinearLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical"
- android:background="@drawable/section"
- android:paddingBottom="15dp">
- <TextView
- android:id="@+id/tv_dialog_us_title"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:textAppearance="?android:attr/textAppearanceLarge"
- android:textStyle="bold"
- android:background="@drawable/section_title"
- android:paddingBottom="4dp"
- android:paddingEnd="10dp"
- android:paddingStart="20dp"
- android:paddingTop="4dp"
- android:textColor="@color/section_title"/>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="fill_parent"
- android:orientation="vertical"
- android:background="@drawable/entry"
- android:layout_margin="8dp"
- android:padding="7dp">
- <ImageView
- android:id="@+id/iv_dialog_us_image"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:adjustViewBounds="true"
- android:maxHeight="140dp"
- android:minHeight="100dp"
- android:src="@drawable/photo_placeholder_thumb"
- android:contentDescription="@string/app_name"/>
- <TextView
- android:id="@+id/tv_dialog_us_text"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_margin="7dp"
- android:textAppearance="@android:style/TextAppearance.Medium"/>
- </LinearLayout>
- <Button
- android:id="@+id/bt_dialog_us_close"
- android:layout_width="match_parent"
- android:layout_margin="5dp"
- android:background="@drawable/button_selector"
- android:text="@string/notification_close"
- android:textColor="@color/input_text_color"
- android:textStyle="bold"
- android:layout_height="50dp"/>
- </LinearLayout>
|