blob: 676b46d6e3fa9e4cf779a8e9e05d8870d36e0bfd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="@dimen/activity_vertical_margin">
<ImageView
android:id="@+id/account_image"
android:layout_width="200dp"
android:layout_height="200dp" />
<android.support.v7.widget.AppCompatTextView
android:id="@+id/account_text"
android:layout_width="200dp"
android:layout_height="wrap_content"
android:maxLines="1" />
</LinearLayout>
|