xml_layout.xml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <DirectionalLayout
  3. xmlns:ohos="http://schemas.huawei.com/res/ohos"
  4. ohos:height="match_parent"
  5. ohos:width="match_parent"
  6. ohos:orientation="vertical"
  7. ohos:padding="32vp">
  8. <Text
  9. ohos:id="$+id:text_title"
  10. ohos:height="match_content"
  11. ohos:width="match_parent"
  12. ohos:text="$string:xml_layout_title"
  13. ohos:text_size="30fp"
  14. ohos:text_alignment="center"
  15. ohos:margin_bottom="40vp"
  16. />
  17. <TextField
  18. ohos:id="$+id:text_field"
  19. ohos:height="match_content"
  20. ohos:width="match_parent"
  21. ohos:hint="请输入内容"
  22. ohos:margin_bottom="30vp"
  23. />
  24. <Checkbox
  25. ohos:id="$+id:checkbox"
  26. ohos:height="match_content"
  27. ohos:width="match_content"
  28. ohos:text="选择项"
  29. ohos:margin_bottom="30vp"
  30. />
  31. <RadioButton
  32. ohos:id="$+id:radio_button"
  33. ohos:height="match_content"
  34. ohos:width="match_content"
  35. ohos:text="单选按钮"
  36. ohos:margin_bottom="30vp"
  37. />
  38. <Slider
  39. ohos:id="$+id:slider"
  40. ohos:height="match_content"
  41. ohos:width="match_parent"
  42. ohos:min_value="0"
  43. ohos:max_value="100"
  44. ohos:value="50"
  45. />
  46. </DirectionalLayout>