Advertisement
Guest User

Untitled

a guest
Nov 26th, 2014
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. <FrameLayout
  2. xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. android:layout_height="fill_parent"
  5. android:layout_width="fill_parent">
  6.  
  7. <android.dipsy.org.canvastest.SurfaceViewExample
  8. android:layout_width="fill_parent"
  9. android:layout_height="fill_parent"
  10. />
  11. <LinearLayout
  12. android:layout_width="wrap_content"
  13. android:layout_height="wrap_content"
  14. android:layout_gravity="bottom"
  15. android:orientation="vertical">
  16. <TextView
  17. android:id="@+id/tv"
  18. android:text="@string/hello_world"
  19. android:layout_width="wrap_content"
  20. android:layout_height="wrap_content"
  21. android:textSize="30sp"/>
  22.  
  23. <Button
  24. android:id="@+id/btn"
  25. android:layout_height="wrap_content"
  26. android:layout_width="wrap_content"
  27. android:text="CLICK"
  28. android:onClick="btnClick"/>
  29.  
  30. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement