Advertisement
SkolaRajakAndroid

Custom Dijalog - LAYOUT XML custom diajloga

Sep 4th, 2015
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.92 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="fill_parent"
  4.    android:layout_height="fill_parent" >
  5.  
  6.     <ImageView
  7.        android:id="@+id/image"
  8.        android:layout_width="wrap_content"
  9.        android:layout_height="wrap_content"
  10.        android:layout_marginRight="5dp" />
  11.  
  12.     <TextView
  13.        android:id="@+id/text"
  14.        android:layout_width="fill_parent"
  15.        android:layout_height="wrap_content"
  16.        android:textColor="#FFF"
  17.        android:layout_toRightOf="@+id/image"/>/>
  18.  
  19.      <Button
  20.        android:id="@+id/dialogButtonOK"
  21.        android:layout_width="100px"
  22.        android:layout_height="wrap_content"
  23.        android:text=" Ok "
  24.        android:layout_marginTop="5dp"
  25.        android:layout_marginRight="5dp"
  26.        android:layout_below="@+id/image"
  27.        />
  28.      
  29. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement