Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to implement custom single-selection multiple-selection drop-down list by Android

2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

This article mainly explains "Android how to achieve custom multi-selection drop-down list", the content of the article is simple and clear, easy to learn and understand, now please follow the editor's ideas slowly in depth, together to study and learn "Android how to achieve custom single-selection multi-selection drop-down list" bar!

The effect is as follows:

Implementation plan:

My idea is to customize a class inheriting PopupWindow, in which the options use Listview, combined with some animation to achieve.

Core code:

Public class MultiSelectPopupWindows extends PopupWindow {private Context context; private View parent; private List data; private int yStart; private SearchPopupWindowsAdapter adapter; public MultiSelectPopupWindows (Context context, View parent, int yStart, List data) {this.context = context; this.parent = parent; this.yStart = yStart; this.data = data; initView ();} private void initView () {View view = View.inflate (context, R.layout.popupwindows_multiselect, null) View.startAnimation (AnimationUtils.loadAnimation (context, R.anim.fade_in_slow)); LinearLayout linearLayout = (LinearLayout) view.findViewById (R.id.linearLayout_selector); linearLayout.startAnimation (AnimationUtils.loadAnimation (context, R.anim.list_top_in)); ListView listView = (ListView) view.findViewById (R.id.listView_selector); setWidth (ViewGroup.LayoutParams.MATCH_PARENT); setHeight (ViewGroup.LayoutParams.WRAP_CONTENT); setBackgroundDrawable (new BitmapDrawable ()) SetFocusable (true); setOutsideTouchable (true); setContentView (view); showAtLocation (parent, Gravity.TOP, 0, DensityUtil.dip2px (context, yStart)); update (); initListView (listView, data);} private void initListView (ListView listView, List data) {adapter = new SearchPopupWindowsAdapter (context); adapter.setItems (data); listView.setAdapter (adapter);} public List getItemList () {return adapter.getItemList () }} Thank you for your reading, the above is the content of "Android how to achieve custom single-selection drop-down list". After the study of this article, I believe you have a deeper understanding of how Android realizes the custom single-selection drop-down list, and the specific use still needs to be verified in practice. Here is, the editor will push for you more related knowledge points of the article, welcome to follow!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report