1

我正在尝试构建一个与其父宽度匹配的视图(最好是线性布局)。此布局应该有 2 个孩子(水平):

  1. 应该占用所有可用宽度的 TextView - 或至少包装其内容(但在任何情况下都不会与其他视图重叠)。
  2. 另一个具有 60dp 固定宽度的 LinearLayout。

这是我要实现的目标的基本草图:草图

4

2 回答 2

1

我最近在这里回答了这个问题。只需将答案中的第二个 TextView 与您的孩子 LinearLayout 交换

于 2012-10-30T00:41:15.153 回答
1

这个怎么样:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal" >
    <TextView 
        android:layout_width="0dip"
        android:layout_height="fill_parent"
        android:background="#ff0000"
        android:gravity="center"
        android:text="TextView Multiline"
        android:textSize="10dp"
        android:textColor="#ffffff"
        android:layout_weight="1"/>
    <LinearLayout 
        android:layout_width="60dp"
        android:layout_height="fill_parent"
        android:gravity="center"
        android:background="#0000ff" >
        <TextView 
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="TextView"
            android:textColor="#ffffff"
            android:textSize="10dp"/>        
    </LinearLayout>
</LinearLayout>

虽然 60 dp 真的很窄恕我直言

于 2012-10-30T00:45:43.927 回答