2017-09-27 16:46:30 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-05-22 15:54:01 +00:00
|
|
|
android:orientation="vertical" android:layout_width="match_parent"
|
2017-09-27 16:46:30 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:gravity="center_vertical">
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/imageView"
|
2019-05-22 15:54:01 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2017-09-27 16:46:30 +00:00
|
|
|
android:layout_margin="12dp"
|
|
|
|
|
android:scaleType="center" />
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/textView"
|
|
|
|
|
android:layout_width="match_parent"
|
2019-05-22 15:54:01 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:gravity="center_horizontal"/>
|
2017-09-27 16:46:30 +00:00
|
|
|
</LinearLayout>
|