Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
テーブルをアルファベット順に並べ替えたい。このクエリを使用してそれを行うことができます
return new CursorLoader(getActivity(),URI, null, null, null, COL_NAME);
しかし、このようにして私はこの方法で結果を得ています。
A B C D ...Z a b c ....z.
cursorLoderを返したいA a B b C c ....Z z.
A a B b C c ....Z z.
ありがとう。
return new CursorLoader(getActivity(),URI, null, null, null, COL_NAME + " COLLATE NOCASE");
使用する:
COL_NAME + " collate nocase"