让用户按照预定义的排序顺序对列表视图排序的首选方式是什么?



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

我已经在布局的顶部设置了指示排序顺序的按钮,每个按钮对应于获取新光标的OnClickListener,然后简单地称为

adapter.changeCursor(newCursor);

希望对你有帮助。

在分析了不同的选项后,我选择了屏幕顶部的旋转器。下面是现在的布局:

<?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>

相关内容

  • 没有找到相关文章

最新更新