推荐安卓开发神器(里面有各种UI特效和android代码库实例)
- // 获取标题栏索引
- int position = sectionIndexter.getPositionForSection(l[idx]);
- if (position == -1) {
- return true;
- }
- // 设置调整到指定区域
- list.setSelection(position);
1. Main.xml
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent">
- <ListView android:id="@+id/myListView"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- />
- <android.test.SideBar
- android:id = "@+id/sideBar"
- android:layout_height="fill_parent"
- android:layout_width="22px"
- android:layout_alignParentRight="true"
- />
- </RelativeLayout>
2. listview_row.xml
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content">
- <LinearLayout
- android:id="@+id/section"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- />
- <TextView android:id="@+id/textView"
- android:layout_width="wrap_content"
- android:layout_height="80sp"
- android:textSize="45sp"
- />
- </LinearLayout>
3. MyAdapter.java
- package android.test;
- import java.util.ArrayList;
- import android.app.Activity;
- import android.content.Context;
- import android.graphics.Color;
- import android.view.Gravity;
- import android.view.LayoutInflater;
- import android.view.View;
- import android.view.ViewGroup;
- import android.widget.BaseAdapter;
- import android.widget.LinearLayout;
- import android.widget.SectionIndexer;
- import android.widget.TextView;
- public class MyAdapter extends BaseAdapter implements SectionIndexer {
- private ArrayList<String> stringArray;
- private Context context;
- public MyAdapter(Context _context, ArrayList<String> arr) {
- stringArray = arr;
- context = _context;
- }
- public int getCount() {
- return stringArray.size();
- }
- public Object getItem(int arg0) {
- return stringArray.get(arg0);
- }
- public long getItemId(int arg0) {
- return 0;
- }
- public View getView(int position, View v, ViewGroup parent) {
- LayoutInflater inflate = ((Activity) context).getLayoutInflater();
- View view = (View) inflate.inflate(R.layout.listview_row, null);
- LinearLayout header = (LinearLayout) view.findViewById(R.id.section);
- String label = stringArray.get(position);
- char firstChar = label.toUpperCase().charAt(0);
- if (position == 0) {
- setSection(header, label);
- } else {
- String preLabel = stringArray.get(position - 1);
- char preFirstChar = preLabel.toUpperCase().charAt(0);
- if (firstChar != preFirstChar) {
- setSection(header, label);
- } else {
- header.setVisibility(View.GONE);
- }
- }
- TextView textView = (TextView) view.findViewById(R.id.textView);
- textView.setText(label);
- return view;
- }
- private void setSection(LinearLayout header, String label) {
- TextView text = new TextView(context);
- header.setBackgroundColor(0xffaabbcc);
- text.setTextColor(Color.WHITE);
- text.setText(label.substring(0, 1).toUpperCase());
- text.setTextSize(20);
- text.setPadding(5, 0, 0, 0);
- text.setGravity(Gravity.CENTER_VERTICAL);
- header.addView(text);
- }
- public int getPositionForSection(int section) {
- if (section == 35) {
- return 0;
- }
- for (int i = 0; i < stringArray.size(); i++) {
- String l = stringArray.get(i);
- char firstChar = l.toUpperCase().charAt(0);
- if (firstChar == section) {
- return i;
- }
- }
- return -1;
- }
- public int getSectionForPosition(int arg0) {
- return 0;
- }
- public Object[] getSections() {
- return null;
- }
- }
4. SideBar.java
- package android.test;
- import android.content.Context;
- import android.graphics.Canvas;
- import android.graphics.Paint;
- import android.util.AttributeSet;
- import android.view.MotionEvent;
- import android.view.View;
- import android.widget.ListView;
- import android.widget.SectionIndexer;
- public class SideBar extends View {
- private char[] l;
- private SectionIndexer sectionIndexter = null;
- private ListView list;
- private final int m_nItemHeight = 29;
- public SideBar(Context context) {
- super(context);
- init();
- }
- public SideBar(Context context, AttributeSet attrs) {
- super(context, attrs);
- init();
- }
- private void init() {
- l = new char[] { 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S',
- 'T', 'U', 'V', 'W', 'X', 'Y', 'Z' };
- setBackgroundColor(0x44FFFFFF);
- }
- public SideBar(Context context, AttributeSet attrs, int defStyle) {
- super(context, attrs, defStyle);
- init();
- }
- public void setListView(ListView _list) {
- list = _list;
- sectionIndexter = (SectionIndexer) _list.getAdapter();
- }
- public boolean onTouchEvent(MotionEvent event) {
- super.onTouchEvent(event);
- int i = (int) event.getY();
- int idx = i / m_nItemHeight;
- if (idx >= l.length) {
- idx = l.length - 1;
- } else if (idx < 0) {
- idx = 0;
- }
- if (event.getAction() == MotionEvent.ACTION_DOWN || event.getAction() == MotionEvent.ACTION_MOVE) {
- if (sectionIndexter == null) {
- sectionIndexter = (SectionIndexer) list.getAdapter();
- }
- int position = sectionIndexter.getPositionForSection(l[idx]);
- if (position == -1) {
- return true;
- }
- list.setSelection(position);
- }
- return true;
- }
- protected void onDraw(Canvas canvas) {
- Paint paint = new Paint();
- paint.setColor(0xFFA6A9AA);
- paint.setTextSize(20);
- paint.setTextAlign(Paint.Align.CENTER);
- float widthCenter = getMeasuredWidth() / 2;
- for (int i = 0; i < l.length; i++) {
- canvas.drawText(String.valueOf(l[i]), widthCenter, m_nItemHeight + (i * m_nItemHeight), paint);
- }
- super.onDraw(canvas);
- }
- }
5. Main.java
- package android.test;
- import java.util.ArrayList;
- import android.app.Activity;
- import android.os.Bundle;
- import android.widget.ListView;
- public class Main extends Activity {
- /** Called when the activity is first created. */
- @Override
- public void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.main);
- ListView list = (ListView) findViewById(R.id.myListView);
- ArrayList<String> stringList = InitListViewData();
- MyAdapter adapter = new MyAdapter(this, stringList);
- list.setAdapter(adapter);
- SideBar indexBar = (SideBar) findViewById(R.id.sideBar);
- indexBar.setListView(list);
- }
- private ArrayList<String> InitListViewData() {
- ArrayList<String> stringList = new ArrayList<String>();
- stringList.add("aback");
- stringList.add("abash");
- stringList.add("abbey");
- stringList.add("abhor");
- stringList.add("abide");
- stringList.add("abuse");
- stringList.add("candidate");
- stringList.add("capture");
- stringList.add("careful");
- stringList.add("catch");
- stringList.add("cause");
- stringList.add("celebrate");
- stringList.add("forever");
- stringList.add("fable");
- stringList.add("fidelity");
- stringList.add("fox");
- stringList.add("funny");
- stringList.add("fail");
- stringList.add("jail");
- stringList.add("jade");
- stringList.add("jailor");
- stringList.add("january");
- stringList.add("jasmine");
- stringList.add("jazz");
- stringList.add("zero");
- stringList.add("zoo");
- stringList.add("zeus");
- stringList.add("zebra");
- stringList.add("zest");
- stringList.add("zing");
- return stringList;
- }
- }
相关推荐
在Android开发中,创建一个联系人A-Z索引列表是一项常见的需求,这使得用户能够快速地定位和查找特定联系人。这种功能广泛应用于各种通讯录应用或者任何涉及到大量需分类数据的应用。标题“Android-联系人A-Z索引...
在Android中,可以使用SectionIndexer接口来实现这个功能,它允许自定义索引器,使得ListView或RecyclerView能够显示分类标题。 对于iOS开发,类似地,我们可以使用CoreData或者AddressBook框架来获取联系人数据,...
这是通过将联系人数据按照首字母进行分类,形成类似"A"、"B"、"C"这样的章节,便于用户按字母顺序浏览和查找。在Android中,我们可以使用`ArrayAdapter`或`CursorAdapter`结合`SectionIndexer`接口来实现这一功能。`...
在这个项目中,适配器可能被定制以适应不同类型的联系人分类。 其次,"分类显示"涉及到数据结构和逻辑处理。开发者可能使用HashMap或者其他数据结构来存储联系人,其中键可能是联系人的首字母或者类别,值则是对应...
这种功能常见于联系人应用或者分类目录列表中。 首先,实现这样的功能需要对ListView的Adapter进行自定义。Adapter是连接数据源与ListView的桥梁,它负责将数据转化为ListView中的View。在这个场景下,我们需要在...
这种设计通常出现在如联系人列表、商店分类等场景,用户可以通过点击字母栏快速跳转到对应首字母的数据项。这个功能在用户体验中扮演着重要角色,因为它提高了用户查找信息的效率。 IndexBarLayout是自定义布局的一...
本资源"安卓Android源码——按字母索引滑动.rar"提供了一个特别的功能实现:按字母索引滑动,这在应用中常用于联系人列表或者应用分类等场景,能够帮助用户快速定位到目标内容。 1. **源码解析**: - 在Android中...
首先,字母分类是将联系人按照姓名的首字母进行排序,以便用户可以直观地看到所有以特定字母开头的联系人。对于汉字,我们需要考虑到中文的拼音处理,通常会通过转换为Pinyin(拼音)来进行排序。例如,使用开源库如...
这个接口要求提供一个方法来获取每个项目的分类索引,通常是字母顺序。然后,在ListView中设置`fastScrollEnabled`属性为`true`,这样就能启用快速滚动功能。 代码示例: ```java ListView listView = ...
例如,在通讯录应用中,我们可以看到A-Z的字母索引,点击任一字母可以快速跳转到对应首字母的联系人列表。在`recycler-fast-scroll`项目中,分节索引支持横向显示,这使得用户可以在水平方向上浏览和选择。同样,分...
在IT行业中,字母表查询是一种常见的数据检索方法,特别是在处理大量分类数据时,例如联系人应用、电商商品分类等。这种功能使得用户可以通过快速滚动字母表来定位目标内容,提高查找效率。本节将深入探讨字母表查询...
10. **SectionIndexer**:如果数据集包含分类,可以实现SectionIndexer接口,提供快速滚动至特定首字母的功能,类似通讯录的索引栏。 11. **空视图**:当数据为空时,可以显示一个空视图来提示用户。 "listview...
这个功能在处理大量分类数据时非常有用,比如联系人应用或电子书应用。 首先,我们要理解这个功能的工作原理。在Android的ListView中,通常会有一个独立的侧边栏,显示字母表。当用户点击某个字母时,ListView会...
这个功能通常用于联系人应用或者商品分类列表等场景。在Java编程语言环境下,我们可以借助Android SDK中的多种组件和方法来实现这一功能。 首先,我们需要一个ListView或RecyclerView作为列表的基础容器,用于展示...
这个功能通常用于联系人列表或商品分类,用户可以通过点击字母快速跳转到对应首字母的数据项。React Native社区提供了一些库,如`react-native-section-list-get-item-by-id`或`react-native-quick-index-list`,...