Advertisement
Guest User

Untitled

a guest
Apr 26th, 2014
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.39 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2.  
  3. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  4. android:orientation="vertical"
  5. android:layout_gravity="bottom"
  6. android:layout_width="fill_parent"
  7. android:layout_height="fill_parent"
  8. android:weightSum="1">
  9.  
  10. <LinearLayout android:layout_width="fill_parent"
  11. android:layout_height="wrap_content"
  12. android:orientation="horizontal"
  13. android:weightSum="1" android:baselineAligned="false" android:dividerPadding="@dimen/candidate_vertical_padding"
  14. android:focusable="true" android:layout_margin="0dp">
  15.  
  16.  
  17. <Button
  18. android:layout_width="@android:dimen/app_icon_size"
  19. android:layout_height="wrap_content"
  20. android:id="@+id/dot" android:background="@drawable/dot" android:enabled="true"
  21. android:layout_marginRight="10dp"
  22. />
  23.  
  24. <Button
  25. android:layout_width="@android:dimen/app_icon_size"
  26. android:layout_height="wrap_content"
  27. android:id="@+id/space" android:background="@drawable/space"
  28. android:layout_marginRight="10dp"/>
  29.  
  30. <Button android:layout_width="@android:dimen/app_icon_size" android:layout_height="wrap_content"
  31. android:id="@+id/backspace" android:background="@drawable/backspace" android:singleLine="false"
  32. android:layout_marginRight="10dp"/>
  33.  
  34. <Button android:layout_width="@android:dimen/app_icon_size"
  35. android:layout_height="wrap_content"
  36. android:id="@+id/clear"
  37. android:background="@drawable/clear" android:singleLine="false"
  38. android:layout_marginRight="10dp"/>
  39. <Button android:layout_width="@android:dimen/app_icon_size"
  40. android:layout_height="wrap_content"
  41. android:id="@+id/enter"
  42. android:clickable="true" android:background="@drawable/enter"
  43. android:layout_marginRight="10dp"/>
  44. <Button android:layout_width="@android:dimen/app_icon_size"
  45. android:layout_height="wrap_content"
  46. android:id="@+id/phrases"
  47. android:background="@drawable/phrases"
  48. android:layout_marginRight="10dp"/>
  49. <Button
  50. android:layout_width="@android:dimen/app_icon_size"
  51. android:layout_height="wrap_content"
  52. android:id="@+id/mainPhrase" android:background="@drawable/save_phrase"
  53. android:layout_marginRight="10dp"/>
  54.  
  55. <Button android:layout_width="@android:dimen/app_icon_size"
  56. android:layout_height="wrap_content"
  57. android:id="@+id/speak" android:background="@drawable/speak"
  58. android:layout_marginRight="10dp" android:layout_marginLeft="10dp"/>
  59. </LinearLayout>
  60.  
  61. <TextView
  62. android:id="@+id/ready_text_title"
  63. android:text="Ready Text"
  64. android:layout_width="fill_parent"
  65. android:layout_height="wrap_content"
  66. android:background="#9f9f9f"
  67. android:textColor="#000000"
  68. android:paddingLeft="2dp"
  69. android:textSize="12dp"
  70. android:layout_gravity="bottom"/>
  71. <EditText
  72. android:id="@+id/ready_text"
  73. android:layout_width="fill_parent"
  74. android:layout_height="124dp"
  75. android:background="@color/white"
  76. android:textColor="@color/black"
  77. android:textSize="16dp"
  78. android:paddingLeft="2dp"
  79. android:layout_margin="2dp"
  80. android:clickable="true"
  81. android:enabled="true"
  82. android:layout_gravity="left|top"/>
  83.  
  84. <TextView
  85. android:id="@+id/recognized_text_title"
  86. android:text="Recognized Text"
  87. android:layout_width="fill_parent"
  88. android:layout_height="wrap_content"
  89. android:background="#9f9f9f"
  90. android:paddingLeft="2dp"
  91. android:textColor="#000000"
  92. android:textSize="12dp"
  93. android:layout_gravity="right"/>
  94. <LinearLayout
  95. android:id="@+id/recognized_text_container"
  96. android:layout_width="fill_parent"
  97. android:background="@color/white"
  98. android:textColor="@color/black"
  99. android:layout_height="wrap_content">
  100.  
  101. </LinearLayout>
  102.  
  103. <!--
  104. <TextView
  105. android:id="@+id/recognized_text"
  106. android:text="Test"
  107. android:layout_width="fill_parent"
  108. android:layout_height="wrap_content"
  109. android:background="@color/white"
  110. android:textColor="@color/black"
  111. android:textSize="16dp"
  112. android:paddingLeft="2dp"
  113. android:layout_margin="2dp"
  114. />
  115. -->
  116.  
  117. <LinearLayout android:background="@color/candidate_recommended_background"
  118.  
  119. android:layout_width="fill_parent"
  120. android:layout_height="1dp"/>
  121.  
  122. <com.ispeak4u.android.recotest.InkView
  123. android:id="@+id/ink_view"
  124. android:background="@color/yellow"
  125. android:layout_width="fill_parent"
  126. android:layout_height="match_parent"
  127. />
  128.  
  129.  
  130. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement