如何将单选按钮放在最右侧

发布于 2024-11-02 12:35:40 字数 1478 浏览 1 评论 0原文

我正在尝试先以垂直排列的两个文本视图进行布局,然后是文本,然后使用线性布局在最右侧放置一个单选按钮。然而,即使我输入“android:gravity=”right”',它也不会移动,只是停留在那里。如果有人有想法,请帮助我吗?下面是我的代码。


<LinearLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="horizontal"
  android:layout_width="match_parent"
  android:layout_height="wrap_content">
    <TwoLineListItem android:id="@+id/twoLineListItem1" android:layout_width="wrap_content" android:layout_height="wrap_content">
        <TextView android:id="@+id/textView1" 
                android:text="TextView"
                android:layout_width="wrap_content" android:layout_height="wrap_content" 
                android:textAppearance="?android:attr/textAppearanceMedium" />
        <TextView android:id="@+id/textView2" 
                android:text="TextView"
                android:layout_width="wrap_content" android:layout_height="wrap_content"
                android:textAppearance="?android:attr/textAppearanceSmall" 
                android:paddingTop="30px"/>
    </TwoLineListItem>
    <TextView android:text="TextView" 
        android:id="@+id/textView3" 
        android:layout_width="wrap_content" android:layout_height="wrap_content"
        android:paddingTop="10px"/>

    <RadioButton android:id="@+id/radioButton1" 
            android:gravity="right"
            android:layout_width="fill_parent" android:layout_height="wrap_content" />
</LinearLayout>

I'm trying to make a layout first two textviews in a vertical arrangement, then text, then put a radiobutton on the most right side with linearlayout. However, even though I typed 'android:gravity="right"', it does not move and just stick there. If anyone has an idea, would you please help me? Below is my code.


<LinearLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="horizontal"
  android:layout_width="match_parent"
  android:layout_height="wrap_content">
    <TwoLineListItem android:id="@+id/twoLineListItem1" android:layout_width="wrap_content" android:layout_height="wrap_content">
        <TextView android:id="@+id/textView1" 
                android:text="TextView"
                android:layout_width="wrap_content" android:layout_height="wrap_content" 
                android:textAppearance="?android:attr/textAppearanceMedium" />
        <TextView android:id="@+id/textView2" 
                android:text="TextView"
                android:layout_width="wrap_content" android:layout_height="wrap_content"
                android:textAppearance="?android:attr/textAppearanceSmall" 
                android:paddingTop="30px"/>
    </TwoLineListItem>
    <TextView android:text="TextView" 
        android:id="@+id/textView3" 
        android:layout_width="wrap_content" android:layout_height="wrap_content"
        android:paddingTop="10px"/>

    <RadioButton android:id="@+id/radioButton1" 
            android:gravity="right"
            android:layout_width="fill_parent" android:layout_height="wrap_content" />
</LinearLayout>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

黑凤梨 2024-11-09 12:35:40

右侧对齐的单选按钮:

<RadioButton
                    android:id="@+id/radio0"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"
                    android:background="@null"
                    android:button="@null"
                    android:checked="true"
                    android:drawableRight="@drawable/presets_sel"
                    android:padding="12dp"
                    android:text="RadioButton 1" />
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">

    <item android:drawable="@drawable/right_arrow_h" android:state_checked="true"/>
    <item android:drawable="@drawable/right_arrow_h" android:state_pressed="true"/>
    <item android:drawable="@drawable/right_arrow"></item>

</selector>

Radio Button for right side align:

<RadioButton
                    android:id="@+id/radio0"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"
                    android:background="@null"
                    android:button="@null"
                    android:checked="true"
                    android:drawableRight="@drawable/presets_sel"
                    android:padding="12dp"
                    android:text="RadioButton 1" />
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">

    <item android:drawable="@drawable/right_arrow_h" android:state_checked="true"/>
    <item android:drawable="@drawable/right_arrow_h" android:state_pressed="true"/>
    <item android:drawable="@drawable/right_arrow"></item>

</selector>
花辞树 2024-11-09 12:35:40

您应该将 radioButton 的宽度设置为

android:layout_width="wrap_content"

并添加

android:layout_weight =“1”

到 TwoLineListItem 和 TextView

You should make the width of radioButton to

android:layout_width="wrap_content"

And Add

android:layout_weight="1"

to both TwoLineListItem and TextView

浅忆 2024-11-09 12:35:40

你正在使用 android:layout_gravity="right"

you are use android:layout_gravity="right"

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文