baseurl_dialog.xml 1.1 KB

123456789101112131415161718192021222324252627282930313233
  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:orientation="vertical">
  6. <RadioGroup
  7. android:id="@+id/rg_url"
  8. android:layout_width="match_parent"
  9. android:layout_height="wrap_content"
  10. android:layout_margin="15dp"
  11. android:gravity="center"
  12. android:orientation="vertical">
  13. </RadioGroup>
  14. <android.support.design.widget.TextInputEditText
  15. android:id="@+id/et_url"
  16. android:layout_width="match_parent"
  17. android:layout_height="wrap_content"
  18. android:layout_margin="15dp"
  19. android:hint="请输入服务器地址"/>
  20. <TextView
  21. android:id="@+id/tv_enter"
  22. android:layout_width="200dp"
  23. android:layout_height="30dp"
  24. android:layout_gravity="center"
  25. android:layout_margin="15dp"
  26. android:background="@drawable/text_backgroud"
  27. android:gravity="center"
  28. android:text="确定"
  29. android:textColor="@drawable/text_color"/>
  30. </LinearLayout>