Advertisement
tpbolon

Splash Screen ADT activity_main.xml

Jul 15th, 2020
1,331
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.14 KB | None | 0 0
  1. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2.    xmlns:tools="http://schemas.android.com/tools"
  3.    android:layout_width="match_parent"
  4.    android:layout_height="match_parent"
  5.    android:paddingBottom="@dimen/activity_vertical_margin"
  6.    android:paddingLeft="@dimen/activity_horizontal_margin"
  7.    android:paddingRight="@dimen/activity_horizontal_margin"
  8.    android:paddingTop="@dimen/activity_vertical_margin"
  9.    tools:context=".MainActivity" >
  10.  
  11.     <TextView
  12.        android:id="@+id/txt1"
  13.        android:layout_width="wrap_content"
  14.        android:layout_height="wrap_content"
  15.        android:layout_alignParentTop="true"
  16.        android:layout_centerHorizontal="true"
  17.        android:layout_marginTop="23dp"
  18.        android:background="@drawable/bg100x100"/>
  19.  
  20.     <TextView
  21.        android:id="@+id/tx2"
  22.        android:layout_width="wrap_content"
  23.        android:layout_height="wrap_content"
  24.        android:layout_alignParentTop="true"
  25.        android:layout_centerHorizontal="true"
  26.        android:layout_marginTop="164dp"
  27.        android:background="@drawable/bg100x100" />
  28.  
  29. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement