Advertisement
Guest User

list_hewan

a guest
Jul 21st, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.94 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.    android:layout_width="match_parent"
  4.    android:layout_height="wrap_content">
  5.  
  6.     <LinearLayout
  7.        android:id="@+id/parent1"
  8.        android:layout_width="match_parent"
  9.        android:layout_height="wrap_content"
  10.        android:orientation="horizontal">
  11.         <ImageView
  12.            android:id="@+id/imglvhewan"
  13.            android:layout_width="100dp"
  14.            android:layout_height="100dp"
  15.            android:src="@mipmap/ic_launcher" />
  16.         <TextView
  17.            android:id="@+id/txtlvhewan"
  18.            android:layout_width="match_parent"
  19.            android:layout_height="match_parent"
  20.            android:layout_marginLeft="16dp"
  21.            android:gravity="center_vertical"
  22.            android:text="@string/app_name"
  23.            android:textSize="20sp" />
  24.     </LinearLayout>
  25. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement