1

我需要一个 View 来保存多个 TextView,不幸的是我不知道确切的数量。我需要将 TextViews 排序为彼此下方或彼此相邻的堆栈(想象俄罗斯方块,但只有矩形或正方形)。我尝试考虑的方式是使用 LinearLayout 水平或垂直地保持它们。然后,如果它们彼此相邻,我会使用它们的重量适当地拉伸它们。否则,我使用垂直方向。问题在于具有更复杂堆栈的嵌套线性布局的性能。我考虑过使用RelativeLayout,但这行不通,因为我需要TextViews 不重叠。所以就像如果他们彼此相邻,他们需要每个人均匀地占据足够的空间。使用 layout_weight 效果很好。

这是一个给我警告的例子(只是我以编程方式做的一个简单例子):

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<LinearLayout 
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:layout_weight="1">
    <TextView
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:text="Hello World 1"
        android:background="#000000"
        android:layout_weight="1"/>
    <TextView
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:text="Hello World 3"
        android:background="#000000"
        android:layout_weight="1"/>
        <TextView
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:text="Hello World 4"
        android:background="#000000"
        android:layout_weight="1"/>
</LinearLayout>
<LinearLayout 
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:layout_weight="1">
    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Hello World 2"
        android:background="#000000" />
</LinearLayout>

顺便说一句,我已经尝试过使用 RelativeLayout,但是其中一个 TextView 需要设置大小,但我需要它们均匀地占用空间。我不知道具体的尺寸。测量屏幕宽度并以这种方式划分它既笨重又不精确。我感谢任何人的意见。

编辑:所以我一直在考虑更多,并想到了使用RelativeLayout的解决方案。Android文档中有一个很好的示例,但唯一的问题是其中一个视图需要设置大小,以便另一个可以拉伸。但是如果有一种方法可以让它们都没有固定的尺寸,那也可以,这样它们就可以伸展了。有人在某个时候尝试过这样做吗?

4

2 回答 2

3

有点不清楚你的最终用例是什么样的,所以我不知道这是否会完全解决你的问题,但你可以看看TableLayout文档链接)。它基于LinearLayoutso 项目仍然可以定义为均匀占据给定空间,但它允许您根据行和列定义位置和跨度。

因此,例如,您的示例代码如下所示:

<TableLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:stretchColumns="*" >
    <!-- Wrap all items in a given row in a TableRow -->
    <TableRow>
        <TextView
            android:text="Hello World 1"
            android:background="#000000"/>
        <TextView
            android:text="Hello World 3"
            android:background="#000000"/>
        <TextView
            android:text="Hello World 4"
            android:background="#000000"/>
    </TableRow>
    <!-- If a child occupies an entire row, it can be by itself -->
    <TextView
        android:text="Hello World 2"
        android:background="#000000"/>
</TableLayout>

您还可以使用android:layout_columnandroid:layout_span属性来准确定义项目应该在哪一列,以及它应该占据多少列。另请注意,TableLayout并且TableRow基本上忽略了任何应用的布局参数并使用非常具体的(记录的)参数,因此将它们添加到您的代码只会混淆实际发生的情况。当然,这一切都可以通过编程方式以及在 XML 中构建。

如果这不能提供您需要的灵活性,那么我建议您创建自己的自定义布局,该布局可以扩展或基于LinearLayout. 该机制用于测量儿童的体重并不复杂,然后您可以在测量后覆盖每个孩子的放置方式。如果您想了解平台是如何做这些事情的,这里是一个源链接。LinearLayout

于 2012-11-26T20:45:15.897 回答
3

更新:正如我们所知,API 级别 26 已弃用百分比支持库。ConstraintLayout这是实现相同平面 xml 结构的新方法。

更新了 Github 项目

更新示例:

<android.support.constraint.ConstraintLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <TextView
        android:id="@+id/fifty_thirty"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:background="#ffff8800"
        android:gravity="center"
        android:text="@string/fifty_fifty_text"
        android:textColor="@android:color/white"
        app:layout_constraintHeight_default="percent"
        app:layout_constraintHeight_percent="0.5"
        android:textSize="25sp"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintWidth_default="percent"
        app:layout_constraintWidth_percent="0.5" />

    <TextView
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:background="#ffff5566"
        android:gravity="center"
        android:text="@string/fifty_fifty_text"
        android:textColor="@android:color/white"
        android:textSize="25sp"
        app:layout_constraintHeight_default="percent"
        app:layout_constraintHeight_percent="0.5"
        app:layout_constraintLeft_toRightOf="@id/fifty_thirty"
        app:layout_constraintTop_toBottomOf="@id/fifty_thirty"
        app:layout_constraintWidth_default="percent"
        app:layout_constraintWidth_percent="0.5" />

</android.support.constraint.ConstraintLayout>

已弃用

更新:我们也可以使用 android 支持库。

compile 'com.android.support:percent:23.0.0'

考虑这个将屏幕划分为 50-50% 的演示。

<android.support.percent.PercentRelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <TextView
        android:id="@+id/fifty_huntv"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:background="#ff7acfff"
        android:text="20% - 50%"
        android:textColor="@android:color/white"
        app:layout_heightPercent="20%"
        app:layout_widthPercent="50%" />
    <TextView
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:layout_toRightOf="@id/fifty_huntv"
        android:background="#ffff5566"
        android:text="80%-50%"
        app:layout_heightPercent="80%"
        app:layout_widthPercent="50%"
        />

</android.support.percent.PercentRelativeLayout>

输出:

百分比支持库演示

演示在这里!!!

GitHub项目在这里!!!

于 2015-09-06T07:48:10.627 回答