当前位置:   article > 正文

Android Studio||旋转/表格TableLayout/布局使用align+margin(内含源代码)_android studio tablelayout

android studio tablelayout

step by step.

目录

1. 元素旋转设置

效果:

 xml代码:

2. TableLayout

整个旋转:

效果:

整个xml代码:

 整个效果:


1. 元素旋转设置

android:rotation="90"

效果:

 xml代码:

  1. <TextView
  2. android:id="@+id/pinyin_1"
  3. android:layout_width="wrap_content"
  4. android:layout_height="wrap_content"
  5. android:layout_alignParentStart="true"
  6. android:layout_alignParentTop="true"
  7. android:layout_marginStart="150dp"
  8. android:layout_marginTop="100dp"
  9. android:rotation="90"
  10. android:text="māo"
  11. android:textStyle="bold"
  12. android:textSize="80px"
  13. android:textColor="#cf381d" />

2. TableLayout

整个旋转:

<TableLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"
    android:layout_marginStart="-10dp"
    android:layout_marginTop="53dp"
    android:rotation="90">

    <TableRow
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_marginBottom="-10dp"
        >

        <TextView
            android:id="@+id/choice_1a"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            ... />

        <TextView
            android:id="@+id/choice_1b"
            ... />

        <TextView
            android:id="@+id/choice_1c"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            ... />
    </TableRow>

    <TableRow
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <TextView
            android:id="@+id/choice_1d"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            ... />

        <TextView
            android:id="@+id/choice_1e"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            ... />

        <TextView
            android:id="@+id/choice_1f"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            ...  />
    </TableRow>

</TableLayout>

效果:

整个xml代码:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout 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. android:background="@drawable/pic_bg_par_co"
  8. tools:context=".TestActivity_pa_co">
  9. <TextView
  10. android:id="@+id/pinyin_1"
  11. android:layout_width="wrap_content"
  12. android:layout_height="wrap_content"
  13. android:layout_alignParentStart="true"
  14. android:layout_alignParentTop="true"
  15. android:layout_marginStart="150dp"
  16. android:layout_marginTop="100dp"
  17. android:rotation="90"
  18. android:text="māo"
  19. android:textStyle="bold"
  20. android:textSize="80px"
  21. android:textColor="#cf381d" />
  22. <TextView
  23. android:id="@+id/pinyin_2"
  24. android:layout_width="wrap_content"
  25. android:layout_height="wrap_content"
  26. android:layout_alignParentRight="true"
  27. android:layout_alignParentBottom="true"
  28. android:layout_marginEnd="150dp"
  29. android:layout_marginBottom="95dp"
  30. android:rotation="-90"
  31. android:text="kuàng"
  32. android:textStyle="bold"
  33. android:textSize="80px"
  34. android:textColor="#cf381d" />
  35. <TableLayout
  36. android:layout_width="wrap_content"
  37. android:layout_height="wrap_content"
  38. android:layout_alignParentTop="true"
  39. android:layout_marginStart="-10dp"
  40. android:layout_marginTop="53dp"
  41. android:rotation="90">
  42. <TableRow
  43. android:layout_width="match_parent"
  44. android:layout_height="match_parent"
  45. android:layout_marginBottom="-10dp"
  46. >
  47. <TextView
  48. android:id="@+id/choice_1a"
  49. android:layout_width="match_parent"
  50. android:layout_height="match_parent"
  51. android:layout_margin="13dp"
  52. android:background="#00000000"
  53. android:gravity="center"
  54. android:padding="5dp"
  55. android:text="毛"
  56. android:textColor="@color/black"
  57. android:textSize="80px"
  58. android:textStyle="bold" />
  59. <TextView
  60. android:id="@+id/choice_1b"
  61. android:layout_width="match_parent"
  62. android:layout_height="match_parent"
  63. android:layout_margin="13dp"
  64. android:background="#00000000"
  65. android:gravity="center"
  66. android:padding="5dp"
  67. android:text="狗"
  68. android:textColor="@color/black"
  69. android:textSize="80px"
  70. android:textStyle="bold" />
  71. <TextView
  72. android:id="@+id/choice_1c"
  73. android:layout_width="match_parent"
  74. android:layout_height="match_parent"
  75. android:layout_margin="13dp"
  76. android:background="#00000000"
  77. android:gravity="center"
  78. android:paddingHorizontal="5dp"
  79. android:text="描"
  80. android:textColor="@color/black"
  81. android:textSize="80px"
  82. android:textStyle="bold" />
  83. </TableRow>
  84. <TableRow
  85. android:layout_width="match_parent"
  86. android:layout_height="match_parent">
  87. <TextView
  88. android:id="@+id/choice_1d"
  89. android:layout_width="match_parent"
  90. android:layout_height="match_parent"
  91. android:layout_margin="13dp"
  92. android:background="#00000000"
  93. android:gravity="center"
  94. android:paddingVertical="5dp"
  95. android:text="苗"
  96. android:textColor="@color/black"
  97. android:textSize="80px"
  98. android:textStyle="bold" />
  99. <TextView
  100. android:id="@+id/choice_1e"
  101. android:layout_width="match_parent"
  102. android:layout_height="match_parent"
  103. android:layout_margin="13dp"
  104. android:background="#00000000"
  105. android:gravity="center"
  106. android:paddingVertical="5dp"
  107. android:text="喵"
  108. android:textColor="@color/black"
  109. android:textSize="80px"
  110. android:textStyle="bold" />
  111. <TextView
  112. android:id="@+id/choice_1f"
  113. android:layout_width="match_parent"
  114. android:layout_height="match_parent"
  115. android:layout_margin="13dp"
  116. android:background="#00000000"
  117. android:gravity="center"
  118. android:paddingVertical="5dp"
  119. android:text="猫"
  120. android:textColor="@color/black"
  121. android:textSize="80px"
  122. android:textStyle="bold" />
  123. </TableRow>
  124. </TableLayout>
  125. <TableLayout
  126. android:layout_width="wrap_content"
  127. android:layout_height="wrap_content"
  128. android:layout_marginEnd="-5dp"
  129. android:layout_marginBottom="42dp"
  130. android:layout_alignParentRight="true"
  131. android:layout_alignParentBottom="true"
  132. android:rotation="-90">
  133. <TableRow
  134. android:layout_width="match_parent"
  135. android:layout_height="match_parent"
  136. android:layout_marginBottom="-10dp">
  137. <TextView
  138. android:id="@+id/choice_2a"
  139. android:layout_width="match_parent"
  140. android:layout_height="match_parent"
  141. android:layout_margin="15dp"
  142. android:background="#00000000"
  143. android:gravity="center"
  144. android:padding="5dp"
  145. android:text="框"
  146. android:textColor="@color/black"
  147. android:textSize="80px"
  148. android:textStyle="bold" />
  149. <TextView
  150. android:id="@+id/choice_2b"
  151. android:layout_width="match_parent"
  152. android:layout_height="match_parent"
  153. android:layout_margin="15dp"
  154. android:background="#00000000"
  155. android:gravity="center"
  156. android:padding="5dp"
  157. android:text="刚"
  158. android:textColor="@color/black"
  159. android:textSize="80px"
  160. android:textStyle="bold" />
  161. <TextView
  162. android:id="@+id/choice_2c"
  163. android:layout_width="match_parent"
  164. android:layout_height="match_parent"
  165. android:layout_margin="15dp"
  166. android:background="#00000000"
  167. android:gravity="center"
  168. android:paddingHorizontal="5dp"
  169. android:text="筐"
  170. android:textColor="@color/black"
  171. android:textSize="80px"
  172. android:textStyle="bold" />
  173. </TableRow>
  174. <TableRow
  175. android:layout_width="match_parent"
  176. android:layout_height="match_parent">
  177. <TextView
  178. android:id="@+id/choice_2d"
  179. android:layout_width="match_parent"
  180. android:layout_height="match_parent"
  181. android:layout_margin="15dp"
  182. android:background="#00000000"
  183. android:gravity="center"
  184. android:paddingVertical="5dp"
  185. android:text="扛"
  186. android:textColor="@color/black"
  187. android:textSize="80px"
  188. android:textStyle="bold" />
  189. <TextView
  190. android:id="@+id/choice_2e"
  191. android:layout_width="match_parent"
  192. android:layout_height="match_parent"
  193. android:layout_margin="15dp"
  194. android:background="#00000000"
  195. android:gravity="center"
  196. android:paddingVertical="5dp"
  197. android:text="亢"
  198. android:textColor="@color/black"
  199. android:textSize="80px"
  200. android:textStyle="bold" />
  201. <TextView
  202. android:id="@+id/choice_2f"
  203. android:layout_width="match_parent"
  204. android:layout_height="match_parent"
  205. android:layout_margin="15dp"
  206. android:background="#00000000"
  207. android:gravity="center"
  208. android:paddingVertical="5dp"
  209. android:text="眶"
  210. android:textColor="@color/black"
  211. android:textSize="80px"
  212. android:textStyle="bold" />
  213. </TableRow>
  214. </TableLayout>
  215. </RelativeLayout>

 整个效果:

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/415931?site
推荐阅读
相关标签
  

闽ICP备14008679号