web-dev-qa-db-ja.com

アンドロイドのArraylist Dateから降順で日付をソートする方法は?

ArrayListsを格納するDateがあり、降順に並べ替えました。次に、それらをListViewで表示したいと思います。これは私がこれまでやったことです:

 spndata.setOnItemSelectedListener(new OnItemSelectedListener() {
            public void onItemSelected(AdapterView<?> arg0, View arg1,
                    int position, long arg3) {

                switch (position) {
                case 0:
                    list = DBAdpter.requestUserData(assosiatetoken);
                    for (int i = 0; i < list.size(); i++) {
                        if (list.get(i).lastModifiedDate != null) {
                            lv.setAdapter(new MyListAdapter(
                                    getApplicationContext(), list));
                        }
                    }
                    break;
                case 1:
                    list = DBAdpter.requestUserData(assosiatetoken);

                    Calendar c = Calendar.getInstance();
                    SimpleDateFormat df3 = new SimpleDateFormat("MM/dd/yyyy hh:mm:ss a");    
                    String formattedDate3 = df3.format(c.getTime());                        
                    Log.v("log_tag", "Date  " + formattedDate3);

                    for (int i = 0; i < list.size(); i++) {                         
                        if (list.get(i).submitDate != null) {                               
                            String sDate = list.get(i).submitDate;                              
                            SimpleDateFormat df4 = new SimpleDateFormat("MM/dd/yyyy hh:mm:ss a");    
                            String formattedDate4 = df4.format(sDate);

                            Map<Date, Integer> dateMap = new TreeMap<Date, Integer>(new Comparator<Date>(){  
                                 public int compare(Date formattedDate3, Date formattedDate4) {
                                     return formattedDate3.compareTo(formattedDate4);
                                 }
                            });
                            lv.setAdapter(new MyListAdapter(
                                    getApplicationContext(), list));
                        }
                    }
                    break;
                case 2:

                    break;

                case 3:

                    break;

                default:
                    break;
                }

            }

            public void onNothingSelected(AdapterView<?> arg0) {
            }

        });
11
crickpatel0024

Dateクラスの_Arraylist<Date>_を作成します。そして、昇順にはCollections.sort()を使用します。

sort(List <T> list) を参照してください

要素の自然順序付けに従って、指定されたリストを昇順でソートします。

降順でソートするには Collections.reverseOrder() を参照してください

_Collections.sort(yourList, Collections.reverseOrder());
_
18
Sumit Singh

ケース1でこのように追加するだけです:このように

 case 0:
     list = DBAdpter.requestUserData(assosiatetoken);
     Collections.sort(list, byDate);
     for (int i = 0; i < list.size(); i++) {
         if (list.get(i).lastModifiedDate != null) {
             lv.setAdapter(new MyListAdapter(
                     getApplicationContext(), list));
         }
     }
     break;

このメソッドをクラスの最後に配置します

static final Comparator<All_Request_data_dto> byDate = new Comparator<All_Request_data_dto>() {
    SimpleDateFormat sdf = new SimpleDateFormat("MM/dd/yyyy hh:mm:ss a");

    public int compare(All_Request_data_dto ord1, All_Request_data_dto ord2) {
        Date d1 = null;
        Date d2 = null;
        try {
            d1 = sdf.parse(ord1.lastModifiedDate);
            d2 = sdf.parse(ord2.lastModifiedDate);
        } catch (ParseException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }


        return (d1.getTime() > d2.getTime() ? -1 : 1);     //descending
    //  return (d1.getTime() > d2.getTime() ? 1 : -1);     //ascending
    }
};
17

使用している日付のcompareTo()は、昇順で機能します。

降順で行うには、compareTo()の値を逆にするだけです。ソート順を識別するコンストラクターでフラグ/列挙を受け取る単一のComparatorクラスを使用できます。

public int compare(MyObject lhs, MyObject rhs) {

    if(SortDirection.Ascending == m_sortDirection) {
        return lhs.MyDateTime.compareTo(rhs.MyDateTime);
    }

    return rhs.MyDateTime.compareTo(lhs.MyDateTime);
}

リストを実際にソートするには、 Collections.sort() を呼び出す必要があります。

補足として、なぜforループ内でマップを定義するのかわかりません。あなたのコードが何をしようとしているのか正確にはわかりませんが、forループからマップにインデックス付きの値を入力したいと思います。

10
Stealth Rabbi

文字列形式の日付を各オブジェクトの日付形式に変換する場合:

String argmodifiledDate = "2014-04-06 22:26:15";
SimpleDateFormat  format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");  
            try
            {
                this.modifiledDate = format.parse(argmodifiledDate);
            }
            catch (ParseException e)
            {

                e.printStackTrace();
            }

次に、arraylistを降順に並べ替えます。

ArrayList<Document> lstDocument= this.objDocument.getArlstDocuments();
        Collections.sort(lstDocument, new Comparator<Document>() {
              public int compare(Document o1, Document o2) {
                  if (o1.getModifiledDate() == null || o2.getModifiledDate() == null)
                    return 0;     
                  return o2.getModifiledDate().compareTo(o1.getModifiledDate());
              }
            });
9
Jomia

DateComparable ですので、_List<Date>_のリストを作成し、Collections.sort()を使用してソートします。そして、 Collections.reverseOrder() を使用して、_reverse ordering_のコンパレータを取得します。

From Java Doc

指定されたコンパレータの逆の順序を強制するコンパレータを返します。指定されたコンパレータがnullの場合、このメソッドはreverseOrder()と同等です(言い換えると、Comparableインタフェースを実装するオブジェクトのコレクションに自然順序付けの逆を課すコンパレータを返します)。

3
Amit Deshpande