如何制作没有标题(选择值)的微调器

时间:2013-07-27 14:43:22

标签: android spinner

我正在尝试使用箭头制作一个旋转器,但没有标题,这看起来像谷歌地图使用来获取用户的来源或目的地的方向 enter image description here

并在您单击箭头(三角形)后,启动新地图作为背景。 我搜索了很长时间,发现大多数相关主题是关于删除带有新背景的箭头,或者如何在选择列表中的任何项目之前设置提示/提示/文本。到目前为止,我没有运气 那真的是一个锭床工人吗?或只是一个按钮+ popwindow?或它与适配器有关?  非常感谢你...

通过

        LayoutInflater inflater = getLayoutInflater();
        View empty = inflater.inflate(R.layout.empty, parent, false);
        return empty;

在扩展ArrayAdapter的类的getView中,现在有了 enter image description here

选择哪个项目,但如何删除下划线和空间,更改背景?

1 个答案:

答案 0 :(得分:0)

另一种解决方案是@codeMagic所说的,带有图像按钮和点击方法。顺便说一下我找到了

        <EditText
    android:id="@+id/date"
    style="@android:style/Widget.Holo.Spinner"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/hello_world" />

here中所述 看起来像

enter image description here

有点奇怪。