Advertisement
Guest User

Untitled

a guest
Dec 19th, 2014
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.52 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent">
  5.  
  6. <android.support.wearable.view.WatchViewStub xmlns:app="http://schemas.android.com/apk/res-auto"
  7. android:id="@+id/stub"
  8. android:layout_width="match_parent"
  9. android:layout_height="match_parent"
  10. app:rectLayout="@layout/rect_layout"
  11. app:roundLayout="@layout/round_layout" />
  12.  
  13. <android.support.wearable.view.DismissOverlayView
  14. android:id="@+id/dismiss_overlay"
  15. android:layout_width="match_parent"
  16. android:layout_height="match_parent" />
  17.  
  18. </FrameLayout>
  19.  
  20. <?xml version="1.0" encoding="utf-8"?>
  21. <android.support.wearable.view.BoxInsetLayout xmlns:android="http://schemas.android.com/apk/res/android"
  22. xmlns:app="http://schemas.android.com/apk/res-auto"
  23. android:layout_height="match_parent"
  24. android:layout_width="match_parent">
  25. <RelativeLayout android:id="@+id/round_layout"
  26. android:layout_width="match_parent"
  27. android:layout_height="match_parent"
  28. app:layout_box="all">
  29. <include layout="@layout/main_layout"/>
  30. </RelativeLayout>
  31. </android.support.wearable.view.BoxInsetLayout>
  32.  
  33. <?xml version="1.0" encoding="utf-8"?>
  34. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  35. android:id="@+id/rect_layout"
  36. android:layout_width="match_parent"
  37. android:layout_height="match_parent">
  38. <include layout="@layout/main_layout"/>
  39. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement