input_uri.xml 866 B

1234567891011121314151617181920212223242526
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. tools:context="w1.fi.wpadebug.InputUri">
  8. <LinearLayout
  9. android:layout_width="match_parent"
  10. android:gravity="center"
  11. android:orientation="vertical"
  12. android:layout_margin="30dp"
  13. android:layout_height="wrap_content">
  14. <EditText
  15. android:id="@+id/edit_uri"
  16. android:layout_width="match_parent"
  17. android:layout_height="130dp" />
  18. <Button
  19. android:id="@+id/submit_uri"
  20. android:layout_width="wrap_content"
  21. android:text="Submit"
  22. android:layout_height="wrap_content" />
  23. </LinearLayout>
  24. </LinearLayout>