Advertisement
Allen_L

HappyPlace activity_main.xml

Oct 30th, 2013
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.10 KB | None | 0 0
  1. <ViewSwitcher xmlns:android="http://schemas.android.com/apk/res/android"
  2.    xmlns:tools="http://schemas.android.com/tools"
  3.    android:id="@+id/ViewSwitcher1"
  4.    android:layout_width="match_parent"
  5.    android:layout_height="match_parent"
  6.    android:paddingBottom="@dimen/activity_vertical_margin"
  7.    android:paddingLeft="@dimen/activity_horizontal_margin"
  8.    android:paddingRight="@dimen/activity_horizontal_margin"
  9.    android:paddingTop="@dimen/activity_vertical_margin"
  10.    tools:context=".MainActivity" >
  11.  
  12.     <LinearLayout
  13.        android:id="@+id/Viewsad"
  14.        android:layout_width="match_parent"
  15.        android:layout_height="match_parent"
  16.        android:background="@drawable/sad"
  17.        android:clickable="true"
  18.        android:orientation="vertical" >
  19.     </LinearLayout>
  20.  
  21.     <LinearLayout
  22.        android:id="@+id/Viewhappy"
  23.        android:layout_width="match_parent"
  24.        android:layout_height="match_parent"
  25.        android:background="@drawable/happy"
  26.        android:clickable="true"
  27.        android:orientation="vertical" >
  28.     </LinearLayout>
  29.  
  30. </ViewSwitcher>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement