自定义微调工具Android

Custom spinner android(自定义微调工具Android)
本文介绍了自定义微调工具Android的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

问题:设置适配器时隐藏其自定义背景

我正在尝试向微调控件添加自定义背景,如下所示

 <Spinner
            android:id="@+id/spinnerReferredBy"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:spinnerMode="dropdown"
            android:background="@drawable/custom_drop_down"/>

我的自定义抽屉是

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
    <item>
        <shape xmlns:android="http://schemas.android.com/apk/res/android">
            <solid android:color="#ffffff"/>
            <stroke
                android:width="2dp"
                android:color="#80000000"/>
            <padding
                android:bottom="2dp"
                android:left="2dp"
                android:right="2dp"
                android:top="2dp"/>

        </shape>
    </item>

    <item>
        <bitmap
            android:layout_width="50dp"
            android:layout_height="50dp"
            android:gravity="right|end"
            android:src="@drawable/ic_drop_down" />
    </item>
</layer-list>

这样设置适配器

 spinnerReferredBy.adapter = ArrayAdapter<String>(activity,R.layout.custom_spinner_item,referred)

输出

  1. 不设置适配器

  2. 带适配器

推荐答案

只需在微调器部分的活动布局中添加此行

android:entries="@array/yourSpinnerArray"

<Spinner
                android:id="@+id/spinnerForThisMonth"
                style="@style/listStyle"
                android:layout_width="match_parent"
                android:layout_height="match_parent"         
                android:entries="@array/yourSpinnerArray"
                android:gravity="center" />

然后在值中创建字符串资源

   <string-array name="yourSpinnerArray">
        <item>Select</item>
        <item>January</item>
        <item>February</item>
        <item>March</item>
        <item>April</item>
        <item>June</item>
        <item>July</item>
        <item>August</item>
        <item>September</item>
        <item>October</item>
        <item>November</item>
        <item>December</item>

这篇关于自定义微调工具Android的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

How to target newer versions in .gitlab-ci.yml using auto devops (java 11 instead of 8 and Android 31 instead of 29)(如何在.gitlab-ci.yml中使用自动开发工具(Java 11而不是8,Android 31而不是29)瞄准较新的版本)
Android + coreLibraryDesugaring: which Java 11 APIs can I expect to work?(Android+core LibraryDesugering:我可以期待哪些Java 11API能够工作?)
How to render something in an if statement React Native(如何在If语句中呈现某些内容Reaction Native)
How can I sync two flatList scroll position in react native(如何在本机Reaction中同步两个平面列表滚动位置)
Using Firebase Firestore in offline only mode(在仅脱机模式下使用Firebase FiRestore)
Crash on Google Play Pre-Launch Report: java.lang.NoSuchMethodError(Google Play发布前崩溃报告:java.lang.NoSuchMethodError)