我创建了一个<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:custom="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="5dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/unselected_term"
android:padding="10dp">
<TextView
android:id="@+id/item_text"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:textColor="@color/term_text"
android:gravity="center"
android:textSize="18sp"/>
</LinearLayout>
- 文件信息是一个类,其中包含以下内容:
linkedlist<FileInfo>
我需要根据名称或 lastmodified 订购此列表。我怎样才能做到这一点?我不能用
class FileInfo {
public String Name;
public Long Length;
public Long LastModified;
public String LockedBy;
}
因为generic不是字符串。我怎么排序呢?我是java的新手,所以也许有一个明显而简单的答案我无法弄清楚,谢谢:)