arguments_layout.xml 1021 B

1234567891011121314151617181920212223242526
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:paddingLeft="16dp"
  6. android:paddingRight="16dp"
  7. android:orientation="vertical" >
  8. <TextView
  9. android:layout_height="wrap_content"
  10. android:layout_width="wrap_content"
  11. android:inputType="textImeMultiLine|textNoSuggestions"
  12. android:text="@string/label_enter_arguments" />
  13. <EditText
  14. android:id="@+id/arguments_edit"
  15. android:layout_width="match_parent"
  16. android:layout_height="0dp"
  17. android:layout_weight="1"
  18. android:gravity="top"
  19. android:hint="@string/hint_enter_arguments_here" />
  20. <Button
  21. android:id="@+id/arguments_start_button"
  22. android:layout_width="100dp"
  23. android:layout_height="wrap_content"
  24. android:layout_gravity="end"
  25. android:text="@string/button_start_app" />
  26. </LinearLayout>