programing

남은 공간을 View로 채우는 레이아웃을 만드는 방법은 무엇입니까?

skycolor 2023. 8. 15. 10:57
반응형

남은 공간을 View로 채우는 레이아웃을 만드는 방법은 무엇입니까?

저는 제 애플리케이션 UI를 디자인하고 있습니다.다음과 같은 레이아웃이 필요합니다.

Example of desired layout

(< 및 >는 버튼입니다.)문제는 두 개의 단추 크기가 고정된 상태에서 TextView가 남은 공간을 채울 수 있는지 확인하는 방법을 모른다는 것입니다.

텍스트 보기에 fill_parent를 사용하면 두 번째 버튼(>)이 표시되지 않습니다.

이미지와 같은 레이아웃을 만들려면 어떻게 해야 합니까?

woodshy의 답변은 나에게 효과가 있었고, 그것은 사용하지 않기 때문에 Ungureanu Liviu의 답변보다 간단합니다.RelativeLayout명확한 설명을 위해 레이아웃을 제공합니다.

<LinearLayout 
      android:layout_width="fill_parent"
      android:layout_height="wrap_content"
      android:orientation="horizontal"
      >

     <Button
        android:layout_width = "80dp"
        android:layout_weight = "0"
        android:layout_height = "wrap_content"
        android:text="&lt;"/>
     <TextView
        android:layout_width = "fill_parent"
        android:layout_height = "wrap_content"
        android:layout_weight = "1"/>
     <Button
        android:layout_width = "80dp"
        android:layout_weight = "0"
        android:layout_height = "wrap_content"
        android:text="&gt;"/>   
 </LinearLayout>

한다면<TextView>에 배치됩니다.LinearLayout을 설정합니다.Layout_weight의 특성이 있는.<그리고.>의 경우 0과 1로TextView.

를 사용하는 경우RelativeLayout정렬시키다<그리고.>왼쪽과 오른쪽으로 이동하고 "Layout to the left of" 및 "Layout to the right" 속성을 설정합니다.TextView의 도움이 되는<그리고.>.

사용하는 경우RelativeLayout다음과 같은 작업을 수행할 수 있습니다.

<RelativeLayout
    android:layout_width = "fill_parent"
    android:layout_height = "fill_parent">
    <ImageView
        android:id = "@+id/my_image"
        android:layout_width = "wrap_content"
        android:layout_height = "wrap_content"
        android:layout_alignParentTop ="true" />
    <RelativeLayout
        android:id="@+id/layout_bottom"
        android:layout_width="fill_parent"
        android:layout_height = "50dp"
        android:layout_alignParentBottom = "true">
        <Button
            android:id = "@+id/but_left"
            android:layout_width = "80dp"
            android:layout_height = "wrap_content"
            android:text="&lt;"
            android:layout_alignParentLeft = "true"/>
        <TextView
            android:layout_width = "fill_parent"
            android:layout_height = "wrap_content"
            android:layout_toLeftOf = "@+id/but_right"
            android:layout_toRightOf = "@id/but_left" />
        <Button
            android:id = "@id/but_right"
            android:layout_width = "80dp"
            android:layout_height = "wrap_content"
            android:text="&gt;"
            android:layout_alignParentRight = "true"/>
    </RelativeLayout>
</RelativeLayout>

사용ConstraintLayout이런 걸 찾았어요

<Button
    android:id="@+id/left_button"
    android:layout_width="80dp"
    android:layout_height="48dp"
    android:text="&lt;"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintTop_toTopOf="parent" />

<TextView
    android:layout_width="0dp"
    android:layout_height="0dp"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintLeft_toRightOf="@+id/left_button"
    app:layout_constraintRight_toLeftOf="@+id/right_button"
    app:layout_constraintTop_toTopOf="parent" />

<Button
    android:id="@+id/right_button"
    android:layout_width="80dp"
    android:layout_height="48dp"
    android:text="&gt;"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintRight_toRightOf="parent"
    app:layout_constraintTop_toTopOf="parent" />

작동합니다. 키는 오른쪽, 왼쪽, 위쪽 및 아래쪽 가장자리 구속조건을 적절하게 설정한 다음 너비와 높이를0dp자신의 크기를 알아내도록 내버려두는 겁니다

수평 또는 수직으로 원하는 것에 따라 최소 너비 또는 최소 높이를 설정할 수 있습니다.그리고 다른 개체(남은 공간을 채우려는 개체)에 대해서는 가중치를 1로 설정합니다(내용을 감쌀 너비 설정). 따라서 나머지 영역을 채웁니다.

<LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:gravity="center|left"
        android:orientation="vertical" >
</LinearLayout>
<LinearLayout
        android:layout_width="80dp"
        android:layout_height="fill_parent"
        android:minWidth="80dp" >
</LinearLayout>

높은 layout_weight 특성을 사용할 수 있습니다.아래에서 ListView가 하단에 버튼이 있는 모든 빈 공간을 차지하는 레이아웃을 볼 수 있습니다.

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    tools:context=".ConfigurationActivity"
    android:orientation="vertical"
    >

        <ListView
            android:id="@+id/listView"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_weight="1000"
            />


        <Button
            android:id="@+id/btnCreateNewRule"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="Create New Rule" />



        <Button
            android:id="@+id/btnConfigureOk"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="Ok" />


</LinearLayout>

상대 레이아웃은 항상 도면에 대해 2개의 패스를 사용하므로(다른 유형의 레이아웃의 경우 1개에 대해) 2개의 상대 레이아웃을 중첩하지 않아야 합니다.둥지를 틀면 지수함수적으로 됩니다.왼쪽 공간을 채우려는 요소에 너비=0 및 무게=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="vertical">

    <ImageView
        android:id="@+id/imageview"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

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

        <Button
            android:id="@+id/prev_button"
            android:layout_width="80dp"
            android:layout_height="wrap_content"
            android:text="&lt;" />

        <TextView
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:ellipsize="end"
            android:singleLine="true"
            android:gravity="center"
            android:text="TextView" />

        <Button
            android:id="@+id/next_button"
            android:layout_width="80dp"
            android:layout_height="wrap_content"
            android:text="&gt;" />
    </LinearLayout>
</LinearLayout>

동일한 결함이 있는 경우<LinearLayout...>내가 그랬던 것처럼:

다음을 지정하는 것이 중요합니다.android:layout_width="fill_parent"와 함께 작동하지 않을 것입니다.wrap_content.

OTOH, 생략 가능android:layout_weight = "0"필요하지 않습니다.

제 코드는 기본적으로 https://stackoverflow.com/a/25781167/755804 의 코드와 동일합니다(비벡 판디).

상대 레이아웃을 사용할 때는 확장해야 하는 두 뷰에 모두 고정하여 뷰를 확장할 수 있습니다.지정된 높이는 무시되지만 Android는 여전히 높이 속성을 요구하기 때문에 "0dp"라고 적었습니다.예:

<View
    android:id="@+id/topView"
    android:layout_width="match_parent"
    android:layout_height="40dp"
    android:layout_alignParentTop="true"
    android:layout_marginTop="8dp"/>

<View
    android:id="@+id/stretchableView"
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_below="@id/topView"
    android:layout_above="@+id/bottomView"
    android:layout_marginTop="8dp"
    android:layout_marginBottom="8dp"
    android:adjustViewBounds="true"/>

<View
    android:id="@id/bottomView"
    android:layout_width="wrap_content"
    android:layout_height="40dp"
    android:layout_alignParentBottom="true"
    android:layout_marginBottom="16dp"/>

설정을 사용할 수 있습니다.layout_width또는layout_width0dp(남은 공간을 채울 방향 기준). 다음 런다음을 합니다.layout_weight남은 공간을 채울 수 있습니다.

상대 레이아웃을 사용하여 선형 레이아웃을 래핑

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:round="http://schemas.android.com/apk/res-auto"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:orientation="vertical">
    <Button
        android:layout_width = "wrap_content"
        android:layout_height = "wrap_content"
        android:text="&lt;"/>
    <TextView
        android:layout_width = "fill_parent"
        android:layout_height = "wrap_content"
        android:layout_weight = "1"/>
    <Button
        android:layout_width = "wrap_content"
        android:layout_height = "wrap_content"
        android:text="&gt;"/>

</LinearLayout>

</RelativeLayout>`

찾았어요

 <TextView
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_marginEnd="10dp"
        android:fontFamily="casual"
        android:text="(By Zeus B0t)"
     ``   android:textSize="10sp"
        android:gravity="bottom"
        android:textStyle="italic" />

언급URL : https://stackoverflow.com/questions/6316540/how-to-make-layout-with-view-fill-the-remaining-space

반응형