Advertisement
diegoaguilar

Untitled

Apr 8th, 2015
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.96 KB | None | 0 0
  1.     <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2.        android:layout_width="match_parent" android:layout_height="match_parent">
  3.    
  4.    
  5.         <EditText
  6.            android:layout_width="209dp"
  7.            android:layout_height="60dp"
  8.            android:id="@+id/messageField"
  9.            android:inputType="text"
  10.            android:hint="Mensaje" />
  11.    
  12.         <Button
  13.            style="?android:attr/buttonStyleSmall"
  14.            android:layout_width="wrap_content"
  15.            android:layout_height="wrap_content"
  16.            android:text="Clear"
  17.            android:id="@+id/clearMessageButton"
  18.            android:layout_gravity="center_vertical" />
  19.    
  20.         <Button
  21.            android:layout_width="wrap_content"
  22.            android:layout_height="wrap_content"
  23.            android:text="Play"
  24.            android:id="@+id/ttsButton"
  25.            android:onClick="doTextToSpeech" />
  26.    
  27.     </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement