마스터Q&A 안드로이드는 안드로이드 개발자들의 질문과 답변을 위한 지식 커뮤니티 사이트입니다. 안드로이드펍에서 운영하고 있습니다. [사용법, 운영진]

RadioGroup내에서 RadioButton 정렬이 안먹습니다. ㅜㅜ

0 추천

RadioGroup내에서 RadioButton 정렬이 안먹습니다. ㅜㅜ

 

<RadioGroup
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="0"
        android:orientation="horizontal" >

        <RadioButton
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="complete" />

        <RadioButton
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="right"
            android:text="failed" />
    </RadioGroup>

 

한개는 왼쪽에 그냥 놔두고 하나는 오른쪽으로 붙이려고하는데 grivity자체가 먹질 않습니다 ㅠㅠ

도와주세요.ㅠㅠ

익명사용자 님이 2014년 8월 15일 질문

1개의 답변

0 추천
 
채택된 답변
    <RadioGroup
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="0"
        android:orientation="horizontal" >

        <RadioButton
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="100"
            android:text="complete" />

        <RadioButton
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="failed" />
    </RadioGroup>
alkyne (22,960 포인트) 님이 2014년 8월 15일 답변
...