Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical"
- >
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="65dp"
- android:layout_marginTop="10dp"
- android:weightSum="3"
- android:layout_marginBottom="10dp">
- <ImageView
- android:id="@+id/imageViewId"
- android:layout_weight="1"
- android:src="@drawable/aaaa"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- ></ImageView>
- <LinearLayout
- android:layout_width="wrap_content"
- android:layout_weight="2"
- android:layout_height="match_parent">
- <TextView
- android:id="@+id/leaderName"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:gravity="center"
- android:textAppearance="?android:attr/textAppearanceLarge"
- android:text="Mohandas Gandhi"
- android:textStyle="bold"></TextView>
- </LinearLayout>
- </LinearLayout>
- </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment