我正在尝试为我的recyclerview创建一个布局,其中三个项目水平相邻。

我希望通过LinearLayout实现此目的,但是最后一项(ImageButton)不会出现。我也一直在尝试权重的组合。

是否有实现此目标的好方法?以下是我当前的布局文件。

<?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"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:orientation="horizontal">
<TextView
    android:id="@+id/textView_option"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/option"
    android:layout_margin="15dp"
    android:textSize="20dp"
    />

<EditText
    android:id="@+id/editText_option"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_margin="15dp"
    android:lines="1" />

<ImageButton
    android:layout_width="35dp"
    android:layout_height="35dp"
    android:src="@drawable/icon_minus"
    android:scaleType="fitCenter"
    android:background="@null"
    android:layout_weight="2"
    />
 </LinearLayout>

最佳答案

只是给EditText权重

所以试试这个

<?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"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:orientation="horizontal">
    <TextView
        android:id="@+id/textView_option"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/option"
        android:layout_margin="15dp"
        android:textSize="20dp"
        />

    <EditText
        android:id="@+id/editText_option"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:layout_margin="15dp"
        android:lines="1" />

    <ImageButton
        android:layout_width="35dp"
        android:layout_height="35dp"
        android:src="@drawable/icon_minus"
        android:scaleType="fitCenter"
        android:background="@null"
        />
</LinearLayout>

关于android - Android的三个项目彼此相邻,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/52256028/

10-12 06:09