[android] Android : 사용 가능한 공간을 채우기 위해 뷰를 확장하는 방법은 무엇입니까?

이것은 간단 해 보이지만 어떻게해야할지 모르겠습니다. EditText와 두 개의 ImageButton이있는 가로 레이아웃이 있습니다. ImageButton은 고정 된 크기이고 EditText는 레이아웃의 나머지 공간을 차지하기를 원합니다. 이것이 어떻게 성취 될 수 있습니까?

<LinearLayout
        android:orientation="horizontal"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content">
        <EditText
            android:layout_width="wrap_content"
            android:layout_height="wrap_content">
        </EditText>
        <ImageButton
            android:src="@drawable/img1"
            android:layout_width="50dip"
            android:layout_height="50dip">
        </ImageButton>
        <ImageButton
            android:src="@drawable/img2"
            android:layout_width="50dip"
            android:layout_height="50dip">
        </ImageButton>
</LinearLayout>



답변

상대 레이아웃에서 시도

<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content">
    <ImageButton
        android:id="@+id/btn1"
        android:src="@drawable/icon"
        android:layout_width="50dip"
        android:layout_height="50dip"
        android:layout_alignParentRight="true"/>
    <ImageButton
        android:id="@+id/btn2"
        android:src="@drawable/icon"
        android:layout_width="50dip"
        android:layout_height="50dip"
        android:layout_toLeftOf="@+id/btn1"/>
    <EditText
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_toLeftOf="@+id/btn2">
    </EditText>

</RelativeLayout>


답변

레이아웃을 동일하게 유지하려면 (예 : 텍스트 뒤의 버튼) layout_weight속성과 함께을 사용하십시오 fill_parent.

<LinearLayout
    android:orientation="horizontal"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content">
    <EditText
        android:layout_weight="1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content">
    </EditText>
    <ImageButton
        android:src="@drawable/img1"
        android:layout_width="50dip"
        android:layout_height="50dip">
    </ImageButton>
    <ImageButton
        android:src="@drawable/img2"
        android:layout_width="50dip"
        android:layout_height="50dip">
    </ImageButton>
 </LinearLayout>

주는 일 EditText‘무게 것은’는 지난 파악하고, 버튼에 우선 순위를 제공받을 수 있습니다. 다른 layout_weights로 플레이하고 얼마나 재미있을 수 있는지 확인하십시오!


답변

괜찮아:

<RelativeLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content">

        <ImageButton
            android:id="@+id/button1"
            android:src="@drawable/img1"
            android:layout_width="50dip"
            android:layout_alignParentTop="true"
            android:layout_height="50dip">
        </ImageButton>
        <ImageButton
            android:src="@drawable/img2"
            android:layout_width="50dip"
            android:layout_alignParentTop="true"
            android:layout_toRightOf="@id/button1"
            android:layout_height="50dip">
        </ImageButton>
        <EditText
            android:layout_below="@id/button"
            android:layout_width="wrap_content"
            android:layout_height="fill_parent">
        </EditText>
</RelativeLayout>

레이아웃의 요점은 다음과 같습니다.

  • 고정 된 크기의 항목은 레이아웃에서 먼저 배치됩니다. 이렇게하면 Android가 fill_parent나중에 파일에서 사물의 높이를 계산할 때 차지할 수있는 모든 공간이 아닌 나머지 공간 만 고려합니다. 거기에 아무것도 없었다
  • EditText의 높이는 fill_parent( match_parent2.2+에서) 사용 가능한 나머지 공간을 차지합니다.

질문을 읽지 못해 죄송합니다. 위의 코드는 수직 방식으로 수행하려는 경우 답을 제공합니다. 수평 레이아웃의 경우 @Sunil이 게시 한 코드가 작동합니다.


답변

사용은 설정 layout_width이나 layout_height0dp(방향함으로써 당신은 남은 공간을 채우려). 그런 다음을 사용하여 layout_weight나머지 공간을 채 웁니다.


답변