gpt4 book ai didi

android - 微调器宽度与微调器项目宽度不匹配

转载 作者:行者123 更新时间:2023-11-29 14:30:00 25 4
gpt4 key购买 nike

当我使用像 400dp 这样的特定宽度作为 DropDown 项目的宽度和 spinner 宽度时,它会正确匹配。

但是当我为 spinnercustom_spinner_item 宽度使用 match_parent 时,它不匹配吗?图片可能会给出一个想法enter image description here我的代码有什么问题?我想要使​​用 match_parent 的相同宽度吗?

这是我的自定义 custom_spinner_item

<?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="vertical">
<TextView
android:id="@+id/textView"
android:layout_width="400dp" // width
android:layout_height="30dp"
android:textSize="18dp"
android:text="wallets"
android:layout_marginLeft="5dp"
android:paddingLeft="5dp"
android:background="#FFFFFF"
android:textColor="#282727"/>
<View
android:layout_width="400dp"
android:layout_height="1dp"
android:layout_marginLeft="5dp"
android:layout_marginRight="5dp"
android:background="#8e8c8c"/>
</LinearLayout>

我的 fragment

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/appbackground"
android:paddingRight="5dp"
android:paddingLeft="5dp"
android:paddingTop="5dp">

// some code

<LinearLayout
android:id="@+id/dropDownLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:background="@drawable/zxing_roundedbgwhite"
android:orientation="vertical">
<Spinner
android:id="@+id/spinner1"
android:layout_width="400dp" // width
android:layout_height="35dp"
android:dropDownWidth="400dp" // width
android:spinnerMode="dropdown" />
</LinearLayout>

// some code

</LinearLayout>

最佳答案

最好的方法是通过给

隐藏 Spinner的向下箭头
android:background="@null"

微调器

因此该项目将占据 Spinner 的整个空间

然后在 ImageView 中放下箭头并对齐到 Spinner 的右侧

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<Spinner
android:id="@+id/spinner1"
android:layout_width="match_parent"
android:background="@null"
android:layout_height="35dp"
android:dropDownWidth="match_parent"
android:spinnerMode="dropdown" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignEnd="@+id/spinner1"
android:layout_alignRight="@+id/spinner1"
android:src="@drawable/arrow_down"
android:layout_alignTop="@id/spinner1"
android:layout_alignBottom="@+id/spinner1"/>
</RelativeLayout>

关于android - 微调器宽度与微调器项目宽度不匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47546995/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com