1

親の幅に一致するビュー(理想的にはLinearLayout)を作成しようとしています。このレイアウトには、(水平方向に)2つの子があるはずです。

  1. 使用可能な幅のすべてを占めると想定されるTextView-または少なくともそのコンテンツをラップします(ただし、他のビューと重なることはありません)。
  2. 60dpの固定幅を持つ他のLinearLayout。

これが私が達成しようとしていることの基本的なスケッチです:スケッチ

4

2 に答える 2

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 に答える
1

私は最近、ここでこれに答えました。その回答の2番目のTextViewを子LinearLayoutと交換するだけです

于 2012-10-30T00:41:15.153 に答える