Advertisement
Guest User

Untitled

a guest
Jan 4th, 2020
260
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.80 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2.  
  3. <com.amazon.euclid.widget.ZParallaxBackground xmlns:android="http://schemas.android.com/apk/res/android"
  4. xmlns:euclid="http://schemas.android.com/apk/res/euclid"
  5. android:id="@+id/background"
  6. android:layout_width="match_parent"
  7. android:layout_height="match_parent"
  8. android:orientation="vertical">
  9.  
  10. <com.amazon.euclid.widget.ZShadowReceiver
  11. android:layout_width="match_parent"
  12. android:layout_height="match_parent"
  13. euclid:shadowDepth="@euclid:dimen/globalLayerScreen">
  14.  
  15. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  16. xmlns:amazon="http://schemas.android.com/apk/res/amazon"
  17. xmlns:euclid="http://schemas.android.com/apk/res/euclid"
  18. android:layout_width="match_parent"
  19. android:layout_height="match_parent"
  20. android:orientation="vertical">
  21.  
  22. <com.amazon.euclid.widget.ZContainer
  23. android:id="@+id/header_shadow_receiver"
  24. android:layout_width="match_parent"
  25. android:layout_height="wrap_content">
  26.  
  27. <com.amazon.euclid.widget.ZHeaderNavigationBar xmlns:amazon="http://schemas.android.com/apk/res/amazon"
  28. android:id="@+id/zheadernavigationbar"
  29. android:layout_width="match_parent"
  30. android:layout_height="match_parent"
  31. amazon:headerTitle="@string/title_activity_main"
  32. amazon:upNavigationEnabled="false"
  33. euclid:layout_depth="wrap_content"
  34. euclid:widgetTheme="@euclid:style/Theme.Euclid.Dark" />
  35. </com.amazon.euclid.widget.ZContainer>
  36.  
  37. <com.amazon.euclid.widget.ZContainer
  38. android:layout_width="match_parent"
  39. android:layout_height="match_parent"
  40. euclid:layout_depth="wrap_content">
  41.  
  42. <com.amazon.euclid.widget.ZLinearLayout
  43. android:layout_width="match_parent"
  44. android:layout_height="match_parent"
  45. android:orientation="vertical"
  46. euclid:layout_depth="wrap_content">
  47.  
  48. <com.amazon.euclid.widget.ZTextView
  49. android:id="@+id/show_count"
  50. android:layout_width="match_parent"
  51. android:layout_height="wrap_content"
  52. android:layout_margin="10dp"
  53. android:layout_weight="1"
  54. android:textAlignment="center"
  55. android:textStyle="bold"
  56. euclid:layout_depth="match_parent"
  57. euclid:textDepth="10dp" />
  58.  
  59. <com.amazon.euclid.widget.ZLinearLayout
  60. android:layout_width="match_parent"
  61. android:layout_height="wrap_content"
  62. android:orientation="horizontal"
  63. euclid:layout_depth="wrap_content">
  64.  
  65. <EditText
  66. android:id="@+id/editText_main"
  67. android:layout_width="100dp"
  68. android:layout_height="wrap_content"
  69. android:layout_marginBottom="8dp"
  70. android:layout_marginLeft="8dp"
  71. android:layout_marginRight="8dp"
  72. android:layout_weight="1"
  73. android:ems="10"
  74. android:hint="@string/editText_main"
  75. android:inputType="textNoSuggestions"
  76. android:text="yas"
  77. euclid:layout_depth="fill_parent" />
  78.  
  79. <com.amazon.euclid.widget.ZButton
  80. android:id="@+id/button_main"
  81. android:layout_width="wrap_content"
  82. android:layout_height="wrap_content"
  83. android:layout_gravity="right"
  84. android:layout_margin="10dp"
  85. android:background="@color/blue"
  86. android:onClick="launchSecondActivity"
  87. android:text="@string/button_main"
  88. android:textColor="#ffffff"
  89. euclid:layout_depth="match_parent"
  90. euclid:textDepth="10dp" />
  91. </com.amazon.euclid.widget.ZLinearLayout>
  92. </com.amazon.euclid.widget.ZLinearLayout>
  93. </com.amazon.euclid.widget.ZContainer>
  94. </LinearLayout>
  95.  
  96. </com.amazon.euclid.widget.ZShadowReceiver>
  97. </com.amazon.euclid.widget.ZParallaxBackground>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement