Android 微调器设置标签

发布于 2025-01-06 00:15:50 字数 93 浏览 1 评论 0原文

我正在开发应用程序。我正在从数据库中填充微调器。我得到了由描述和代码组成的 arrayList 。我需要将代码设置为每个描述的标签。是否有可能为微调器中的单个项目添加标签。

I am developing application. In that i am populating spinner from the database. I got the arrayList which consist of description and code . I need to set the code as tag for each description. Is there any possibility to add tag for individual items in spinner.

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

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

发布评论

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

评论(1

下壹個目標 2025-01-13 00:15:50

尝试简单的自定义适配器:

    public class MySpinnerAdapter extends BaseAdapter  {

        private Activity context;

        public CitiesSpinnerAdapter(Activity context){
            this.context=context;
        }

        @Override
        public int getCount() {
            return 0;
        }

        @Override
        public Object getItem(int position) {
            return null;
        }

        @Override
        public long getItemId(int position) {
            return 0;
        }

        @Override
        public View getView(int position, View convertView, ViewGroup parent) {
            RelativeLayout item= (RelativeLayout)context.getLayoutInflater().inflate(R.layout.<your spinner item layout name>, null); 
//set your data to layout components
            item.setTag(<your tag object>);

            return item;
        }

Try simple custom adapter:

    public class MySpinnerAdapter extends BaseAdapter  {

        private Activity context;

        public CitiesSpinnerAdapter(Activity context){
            this.context=context;
        }

        @Override
        public int getCount() {
            return 0;
        }

        @Override
        public Object getItem(int position) {
            return null;
        }

        @Override
        public long getItemId(int position) {
            return 0;
        }

        @Override
        public View getView(int position, View convertView, ViewGroup parent) {
            RelativeLayout item= (RelativeLayout)context.getLayoutInflater().inflate(R.layout.<your spinner item layout name>, null); 
//set your data to layout components
            item.setTag(<your tag object>);

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