가로 선형 레이아웃 Android에서 위젯을 올바르게 정렬하는 방법은 무엇입니까?


205

이것은 내가 사용하는 코드이며 작동하지 않습니다.

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" 
    android:orientation="horizontal">

    <TextView android:text="TextView" android:id="@+id/textView1"
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content"
        android:gravity="right">
    </TextView>

</LinearLayout>

답변:


418

올바른 요소 앞에 View가로 내부 에 빈칸을 추가 LinearLayout하십시오. 예 :

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content" >

    <View
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:layout_weight="1" />                

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

</LinearLayout>

11
작동합니다! 그러나 누구나 이유를 설명 할 수 있습니까? 나는 완전히 이해할 수 없었다.
GMsoF

28
Empty View는 최대 공간을 확보하려고하는데 버튼을위한 공간을 남겨 두었습니다.
alcsan

14
지금까지 이것은 왼쪽에 몇 개의 단추가 있고 오른쪽에 하나의 마지막 단추가있는 데 도움이되는 유일한 방법이었습니다. 그러나 그것은 나에게 해킹처럼 느껴집니다. 이를위한 "올바른"방법이 있습니까?
IcedDante

8
대단해! 그러나 왜 gravity = "right"가 처음부터 이런 식으로 작동하지 않습니까? 다른 관점에서 도움이 필요한 이유는 무엇입니까? 그렇지 않은 경우 추가 견해없이 어떻게 "올바른"것입니까?
afrish

1
그리드와 같은 레이아웃에서는 작동하지 않습니다. 빈 공간이 없습니다. Sherif elKhatib의 솔루션이 작동합니다.
cdonner

119

모든 것이 오른쪽에 있지 않게하려면 LinearLayout의 중력을 "오른쪽"으로 변경하지 마십시오.

시험:

  1. TextView의 너비fill_parent
  2. TextView의 중력right

암호:

    <TextView 
              android:text="TextView" 
              android:id="@+id/textView1"
              android:layout_width="fill_parent"
              android:layout_height="wrap_content"   
              android:gravity="right">
    </TextView>

1
이 주셔서 감사합니다 - 그것은 저를 던지고 fill_parent의 폭이었다
dldnh

2
선형 레이아웃은 이것을 달성하도록 설계 되었습니까? 이것을 달성하기 위해 상대 레이아웃을 사용해서는 안됩니까? 이 솔루션은 해킹이 아닙니까?
user2635088

LinearLayout에 여러 TextView 컨트롤이 있으면 작동하지 않습니다. @alcsan의 답변보기
Felix

이것이 정답입니다. 이 방법은 추가 뷰를 사용하지 않으며, 더 중요한 것은 성능을 크게 저하시키는 layout_weight를 사용하지 않는 것입니다.
Sermilion

android:layout_weight = "1"와 나란히 android:gravity="right"트릭을 수행해야합니다.
Vassilis

63

alcsan의 답변을 보완하기 위해 SpaceAPI 14 (Android 4.0 ICE_CREAM_SANDWICH) 이후 문서에서 사용할 수 있습니다 .

Space는 범용 레이아웃에서 구성 요소 사이에 간격을 만드는 데 사용할 수있는 간단한 View 하위 클래스입니다.

<?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" >

    <Space
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:layout_weight="1" />

    <TextView
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content"
        android:text="TextView"
        android:gravity="right" />

</LinearLayout>

14 미만의 API 레벨을 지원하는 앱의 경우 android.support.v4.widget.SpaceAndroid Support Library r22.1.0 이후 가 있습니다.


중요 = 당신이 설정 layout_weight를 할 필요가 있다는 것입니다 "1"
code4j

완벽하게 작동합니다! 각 요소의 너비를 유지합니다.
phatmann

작동합니다. 와우, 안드로이드의 추악함은 결코 나를 놀라게하는 것을 멈추지 않습니다
Chris Neve

31

선형 레이아웃

<LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:background="@drawable/select_car_book_tabbar"
        android:gravity="right" >

        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center_vertical"
            android:src="@drawable/my_booking_icon" />
    </LinearLayout>

여기에 이미지 설명을 입력하십시오

FrameLayout이

<FrameLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:background="@drawable/select_car_book_tabbar">

        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center_vertical|right"
            android:src="@drawable/my_booking_icon" />
    </FrameLayout>

RelativeLayout의

<RelativeLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:background="@drawable/select_car_book_tabbar">

        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:layout_centerInParent="true"
            android:src="@drawable/my_booking_icon" />
    </RelativeLayout>

21

보기를 설정하면 layout_weight="1"트릭이됩니다.!

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">

<TextView
    android:id="@+id/textView1"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_weight="1" />

<RadioButton
    android:id="@+id/radioButton1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"/>


2
간단한 솔루션 +1
Alex

1
누군가가 여전히 찾고 있다면,이 적합한 솔루션입니다 :)
passatgt

이것은 마법입니다! 어떻게 찾았 어?
andreikashin

@andreikashin, 도움이된다면 위로 투표를 고려하십시오. 감사.
Saad Mahmud

13

android:gravity="right"LinearLayout에 추가하십시오 . (가) 가정 TextView이있다layout_width="wrap_content"


2
그는 특히 LinearLayout 내부에 단일 구성 요소를 정렬한다고 말했습니다. 선형 레이아웃 자체가 아님 : 레이아웃 자체가 fill_parent로 설정되어 있습니다.
RichieHH


4

가장 쉬운 방법으로 수행했습니다.

하나의 RelativeLayout을 가져 와서 오른쪽 에 배치하려는 아이 를 넣으십시오 .

    <LinearLayout
        android:id="@+id/llMain"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="#f5f4f4"
        android:gravity="center_vertical"
        android:orientation="horizontal"
        android:paddingBottom="20dp"
        android:paddingLeft="15dp"
        android:paddingRight="15dp"
        android:paddingTop="20dp">

        <ImageView
            android:id="@+id/ivOne"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/ic_launcher" />


        <TextView
            android:id="@+id/txtOne"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="20dp"
            android:text="Hiren"
            android:textAppearance="@android:style/TextAppearance.Medium"
            android:textColor="@android:color/black" />

        <RelativeLayout
            android:id="@+id/rlRight"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="right">


            <ImageView
                android:id="@+id/ivRight"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:padding="5dp"
                android:src="@drawable/ic_launcher" />

        </RelativeLayout>
    </LinearLayout>

그것이 도움이되기를 바랍니다.


3

RelativeLayout을 사용해야하고 좋아 보일 때까지 드래그해야합니다. :)

    <ImageView
        android:id="@+id/button_info"
        android:layout_width="30dp"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_alignParentTop="true"
        android:layout_marginRight="10dp"
        android:contentDescription="@string/pizza"
        android:src="@drawable/header_info_button" />

</RelativeLayout>

2
다중 해상도 화면에 권장되지 않는 "끌기"
Moses Aprico

3

linear layoutlayout_width="fill_parent"같은 layout width+ 와 위젯gravity as right 오른쪽으로 정렬한다.

TextView다음 예제 topicTitle에서 왼쪽과 topicQuestions오른쪽 에 2 초를 사용 하고 있습니다.

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

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

    <TextView
        android:id="@+id/topicTitle"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="18sp"
        android:textStyle="bold" />

    <TextView
        android:id="@+id/topicQuestions"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:gravity="right"
        android:textSize="18sp"
        android:textStyle="bold" />
    </LinearLayout>

</RelativeLayout>

산출


2

layout_width 내부의 텍스트를 정렬 하기 android:layout_width="match_parent"때문에 layout_width를 변경 gravity:"right"하십시오. 랩 내용을 선택하면 이동할 위치가 없지만 부모 일치를 선택하면 오른쪽으로 갈 수 있습니다.


2

추가 뷰 또는 요소를 사용할 필요가 없습니다.

// 매우 쉽고 간단합니다

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

// 이것은 왼쪽 정렬입니다

<TextView
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="No. of Travellers"
      android:textColor="#000000"
      android:layout_weight="1"
      android:textStyle="bold"
      android:textAlignment="textStart"
      android:gravity="start" />

// 이것은 올바른 정렬입니다

<TextView
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="Done"
      android:textStyle="bold"
      android:textColor="@color/colorPrimary"
      android:layout_weight="1"
      android:textAlignment="textEnd"
      android:gravity="end" />

</LinearLayout>

0

TextView의 경우 :

<TextView 
    android:text="TextView" 
    android:id="@+id/textView"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"   
    android:gravity="right"
    android:textAlignment="gravity">    
</TextView>

0

뷰를 추가하는 것은 약간 어렵고 다음과 같이 모든 화면 너비를 포함합니다.

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >

<View
    android:layout_width="0dp"
    android:layout_height="0dp"
    android:layout_weight="1" />                

<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" />

이 코드를 사용해보십시오 :

<LinearLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="right"
    >

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Create Account"/>

</LinearLayout>

-1

다음은 샘플입니다. 정리하는 열쇠는 다음과 같습니다

android:layout_width="0dp"
android:layout_weight="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="wrap_content"
    android:orientation="horizontal"
    android:padding="5dp">

    <TextView
        android:id="@+id/categoryName"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="abcd" />

    <TextView
        android:id="@+id/spareName"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="efgh" />

</LinearLayout>

여기에 이미지 설명을 입력하십시오


-1

다음과 같이 match_parent 및 gravity를 사용하여 TextView 텍스트를 오른쪽으로 설정하십시오.

<?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:text="TextView" android:id="@+id/textView1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="right">
    </TextView>

</LinearLayout>

-2

이 시도..

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" 
    android:orientation="horizontal" 
    android:gravity="right" >



    <TextView android:text="TextView" android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content">
    </TextView>

</LinearLayout>
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.