Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout
- android:orientation="horizontal"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- xmlns:android="http://schemas.android.com/apk/res/android">
- <LinearLayout
- android:orientation="vertical"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_weight="1"
- android:weightSum="1">
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:textAppearance="?android:attr/textAppearanceMedium"
- android:text="UserName"
- android:id="@+id/textView"
- android:layout_gravity="center_horizontal"
- android:autoText="false"
- android:editable="false"
- android:focusable="false"
- android:singleLine="false"
- android:textSize="24sp"/>
- <ImageView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:id="@+id/imageView"
- android:src="@drawable/ic_launcher"
- android:layout_gravity="center_horizontal"
- android:adjustViewBounds="true"
- android:cropToPadding="false"
- android:scaleType="centerCrop"/>
- <Button
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="Сделать"
- android:id="@+id/button2"
- android:layout_gravity="left|center_horizontal"/>
- <Button
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="Заебись"
- android:id="@+id/button3"
- android:layout_gravity="left|center_horizontal"/>
- </LinearLayout>
- <LinearLayout
- android:orientation="vertical"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_weight="1">
- </LinearLayout>
- </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement