文字视图的安排

时间:2018-04-04 13:25:06

标签: android

如何在android layout xml中将textview一个放在另一个下面。 例如,我需要以下内容:

textview 1:textview 5 textview 2:textview 6 textview 3:textview 7 textview 4:textview 8 ..... .....

注意:Textview 1,2,3,4一个低于其他并且平行textview 5,,6,7,8位于其他垂直位置

哪个布局最适合上面的示例实现以及如何实现它,如果我需要在单个相对布局中采用textview 1和textview 5,那么它是否适用于其他文本视图? 在“:”之后我需要所有textview在空间中正确对齐,并且在“:”之前也是相同的

1 个答案:

答案 0 :(得分:0)

有很多方法可以实现这一目标,但最简单的方法是:

声明LinearLayout并将方向设置为horizontal。在LinearLayout内部,声明两个其方向均为vertical的线性布局。根据您的口味调整宽度和高度。表示如下:

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal">

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:orientation="vertical">

        <!--TextViews in the first row (top to bottom)-->

    </LinearLayout>

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:orientation="vertical">

        <!--Textviews in the second row (top to bottom)-->

    </LinearLayout>

我希望这会有所帮助..快乐编码!