允许用户按预定义排序顺序对列表视图进行排序的首选方法是什么?

时间:2011-04-18 02:31:07

标签: android user-interface sorting listview android-listview

你会用什么?菜单?上下文菜单?您是否愿意将特定ListView的排序顺序添加为应用程序设置中的选项?

2 个答案:

答案 0 :(得分:0)

我已经设置了按钮,指示布局顶部的排序顺序,每个按钮对应于一个OnClickListener,它接收一个新光标,然后简单地调用

adapter.changeCursor(newCursor);
列表视图适配器上的

希望有所帮助。

答案 1 :(得分:0)

在分析了不同的选项之后,我在屏幕顶部使用了一个微调器。这是现在的布局:

<?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="fill_parent">

<LinearLayout android:orientation="horizontal"
    android:layout_width="fill_parent" android:layout_height="wrap_content">

    <Spinner android:layout_width="fill_parent"
        android:layout_height="40sp" android:id="@+id/spinner_sort_order ">     
    </Spinner>

</LinearLayout>

<FrameLayout android:layout_width="fill_parent"
    android:layout_height="fill_parent">        
    <ListView android:id="@android:id/list" android:layout_width="fill_parent"
        android:layout_height="fill_parent" android:drawSelectorOnTop="true" />

    <!-- Here is the view to show if the list is empty -->
    <TextView android:text="@string/empty_list_default_value"
        android:id="@+id/txt_empty_list" android:layout_width="fill_parent"
        android:layout_height="fill_parent" android:textSize="16sp"
        android:textStyle="bold" android:gravity="center">
    </TextView>
</FrameLayout>
    </LinearLayout>