scroll_view_control_out.xml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:id="@+id/text_linear1"
  6. android:layout_width="match_parent"
  7. android:layout_height="wrap_content"
  8. android:orientation="vertical"
  9. tools:ignore="MissingDefaultResource">
  10. <ScrollView
  11. android:layout_width="match_parent"
  12. android:layout_height="wrap_content"
  13. android:background="@color/zhihu_lay_click"
  14. >
  15. <RelativeLayout
  16. android:layout_width="match_parent"
  17. android:layout_height="wrap_content">
  18. <LinearLayout
  19. android:id="@+id/line1"
  20. android:layout_width="match_parent"
  21. android:layout_height="wrap_content"
  22. android:gravity="center"
  23. android:orientation="horizontal">
  24. <TextView
  25. android:layout_width="wrap_content"
  26. android:layout_height="wrap_content"
  27. android:textSize="24sp"
  28. android:text="开关量输出:"
  29. >
  30. </TextView>
  31. <View
  32. android:layout_width="10dp"
  33. android:layout_height="wrap_content">
  34. </View>
  35. <Spinner
  36. android:id="@+id/controlOut"
  37. android:layout_width="68dp"
  38. android:layout_height="50dp"
  39. android:layout_gravity="center"
  40. android:background="@drawable/bg_spin_goods" />
  41. </LinearLayout>
  42. </RelativeLayout>
  43. </ScrollView>
  44. </LinearLayout>