|
|
@ -37,83 +37,127 @@ import java.util.HashSet;
|
|
|
|
|
|
|
|
|
|
|
|
public class DataUtils {
|
|
|
|
public class DataUtils {
|
|
|
|
public static final String TAG = "DataUtils";
|
|
|
|
public static final String TAG = "DataUtils";
|
|
|
|
|
|
|
|
// 定义一个静态方法,用于批量删除笔记
|
|
|
|
public static boolean batchDeleteNotes(ContentResolver resolver, HashSet<Long> ids) {
|
|
|
|
public static boolean batchDeleteNotes(ContentResolver resolver, HashSet<Long> ids) {
|
|
|
|
|
|
|
|
// 检查传入的ID集合是否为空
|
|
|
|
if (ids == null) {
|
|
|
|
if (ids == null) {
|
|
|
|
|
|
|
|
// 如果ID集合为空,记录调试日志并返回true
|
|
|
|
Log.d(TAG, "the ids is null");
|
|
|
|
Log.d(TAG, "the ids is null");
|
|
|
|
return true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 检查ID集合是否为空
|
|
|
|
if (ids.size() == 0) {
|
|
|
|
if (ids.size() == 0) {
|
|
|
|
|
|
|
|
// 如果ID集合为空,记录调试日志并返回true
|
|
|
|
Log.d(TAG, "no id is in the hashset");
|
|
|
|
Log.d(TAG, "no id is in the hashset");
|
|
|
|
return true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 创建一个操作列表,用于存储删除操作
|
|
|
|
ArrayList<ContentProviderOperation> operationList = new ArrayList<ContentProviderOperation>();
|
|
|
|
ArrayList<ContentProviderOperation> operationList = new ArrayList<ContentProviderOperation>();
|
|
|
|
|
|
|
|
// 遍历ID集合
|
|
|
|
for (long id : ids) {
|
|
|
|
for (long id : ids) {
|
|
|
|
|
|
|
|
// 检查当前ID是否为系统文件夹根ID
|
|
|
|
if(id == Notes.ID_ROOT_FOLDER) {
|
|
|
|
if(id == Notes.ID_ROOT_FOLDER) {
|
|
|
|
|
|
|
|
// 如果是系统文件夹根ID,记录错误日志并跳过当前循环
|
|
|
|
Log.e(TAG, "Don't delete system folder root");
|
|
|
|
Log.e(TAG, "Don't delete system folder root");
|
|
|
|
continue;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 创建一个删除操作的构建器,指定要删除的笔记URI
|
|
|
|
ContentProviderOperation.Builder builder = ContentProviderOperation
|
|
|
|
ContentProviderOperation.Builder builder = ContentProviderOperation
|
|
|
|
.newDelete(ContentUris.withAppendedId(Notes.CONTENT_NOTE_URI, id));
|
|
|
|
.newDelete(ContentUris.withAppendedId(Notes.CONTENT_NOTE_URI, id));
|
|
|
|
|
|
|
|
// 将构建的删除操作添加到操作列表中
|
|
|
|
operationList.add(builder.build());
|
|
|
|
operationList.add(builder.build());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
try {
|
|
|
|
|
|
|
|
// 使用ContentResolver批量应用操作列表中的操作
|
|
|
|
ContentProviderResult[] results = resolver.applyBatch(Notes.AUTHORITY, operationList);
|
|
|
|
ContentProviderResult[] results = resolver.applyBatch(Notes.AUTHORITY, operationList);
|
|
|
|
|
|
|
|
// 检查操作结果是否为空或长度为0,或者第一个元素是否为空
|
|
|
|
if (results == null || results.length == 0 || results[0] == null) {
|
|
|
|
if (results == null || results.length == 0 || results[0] == null) {
|
|
|
|
|
|
|
|
// 如果操作结果为空,记录调试日志并返回false
|
|
|
|
Log.d(TAG, "delete notes failed, ids:" + ids.toString());
|
|
|
|
Log.d(TAG, "delete notes failed, ids:" + ids.toString());
|
|
|
|
return false;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 如果操作成功,返回true
|
|
|
|
return true;
|
|
|
|
return true;
|
|
|
|
} catch (RemoteException e) {
|
|
|
|
} catch (RemoteException e) {
|
|
|
|
|
|
|
|
// 捕获远程异常,记录错误日志
|
|
|
|
Log.e(TAG, String.format("%s: %s", e.toString(), e.getMessage()));
|
|
|
|
Log.e(TAG, String.format("%s: %s", e.toString(), e.getMessage()));
|
|
|
|
} catch (OperationApplicationException e) {
|
|
|
|
} catch (OperationApplicationException e) {
|
|
|
|
|
|
|
|
// 捕获操作应用异常,记录错误日志
|
|
|
|
Log.e(TAG, String.format("%s: %s", e.toString(), e.getMessage()));
|
|
|
|
Log.e(TAG, String.format("%s: %s", e.toString(), e.getMessage()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 如果发生异常,返回false
|
|
|
|
return false;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 定义一个静态方法,用于将指定的笔记移动到目标文件夹
|
|
|
|
public static void moveNoteToFoler(ContentResolver resolver, long id, long srcFolderId, long desFolderId) {
|
|
|
|
public static void moveNoteToFoler(ContentResolver resolver, long id, long srcFolderId, long desFolderId) {
|
|
|
|
|
|
|
|
// 创建一个ContentValues对象,用于存储要更新的数据
|
|
|
|
ContentValues values = new ContentValues();
|
|
|
|
ContentValues values = new ContentValues();
|
|
|
|
|
|
|
|
// 将目标文件夹ID放入ContentValues对象中,键为NoteColumns.PARENT_ID
|
|
|
|
values.put(NoteColumns.PARENT_ID, desFolderId);
|
|
|
|
values.put(NoteColumns.PARENT_ID, desFolderId);
|
|
|
|
|
|
|
|
// 将源文件夹ID放入ContentValues对象中,键为NoteColumns.ORIGIN_PARENT_ID
|
|
|
|
values.put(NoteColumns.ORIGIN_PARENT_ID, srcFolderId);
|
|
|
|
values.put(NoteColumns.ORIGIN_PARENT_ID, srcFolderId);
|
|
|
|
|
|
|
|
// 将本地修改标志设置为1,表示该笔记已被本地修改,键为NoteColumns.LOCAL_MODIFIED
|
|
|
|
values.put(NoteColumns.LOCAL_MODIFIED, 1);
|
|
|
|
values.put(NoteColumns.LOCAL_MODIFIED, 1);
|
|
|
|
|
|
|
|
// 使用ContentResolver的update方法更新数据库中的笔记
|
|
|
|
|
|
|
|
// ContentUris.withAppendedId(Notes.CONTENT_NOTE_URI, id)生成包含笔记ID的URI
|
|
|
|
|
|
|
|
// values为要更新的数据,null和null为更新条件,此处表示更新所有匹配的记录
|
|
|
|
resolver.update(ContentUris.withAppendedId(Notes.CONTENT_NOTE_URI, id), values, null, null);
|
|
|
|
resolver.update(ContentUris.withAppendedId(Notes.CONTENT_NOTE_URI, id), values, null, null);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 定义一个静态方法,用于将一组笔记批量移动到指定文件夹
|
|
|
|
public static boolean batchMoveToFolder(ContentResolver resolver, HashSet<Long> ids,
|
|
|
|
public static boolean batchMoveToFolder(ContentResolver resolver, HashSet<Long> ids,
|
|
|
|
long folderId) {
|
|
|
|
long folderId) {
|
|
|
|
|
|
|
|
// 检查传入的ID集合是否为空
|
|
|
|
if (ids == null) {
|
|
|
|
if (ids == null) {
|
|
|
|
|
|
|
|
// 如果为空,记录日志并返回true(表示没有需要移动的笔记)
|
|
|
|
Log.d(TAG, "the ids is null");
|
|
|
|
Log.d(TAG, "the ids is null");
|
|
|
|
return true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 创建一个用于存储ContentProvider操作的列表
|
|
|
|
ArrayList<ContentProviderOperation> operationList = new ArrayList<ContentProviderOperation>();
|
|
|
|
ArrayList<ContentProviderOperation> operationList = new ArrayList<ContentProviderOperation>();
|
|
|
|
|
|
|
|
// 遍历ID集合
|
|
|
|
for (long id : ids) {
|
|
|
|
for (long id : ids) {
|
|
|
|
|
|
|
|
// 创建一个ContentProviderOperation的构建器,用于更新指定ID的笔记
|
|
|
|
ContentProviderOperation.Builder builder = ContentProviderOperation
|
|
|
|
ContentProviderOperation.Builder builder = ContentProviderOperation
|
|
|
|
.newUpdate(ContentUris.withAppendedId(Notes.CONTENT_NOTE_URI, id));
|
|
|
|
.newUpdate(ContentUris.withAppendedId(Notes.CONTENT_NOTE_URI, id));
|
|
|
|
|
|
|
|
// 设置笔记的新父文件夹ID
|
|
|
|
builder.withValue(NoteColumns.PARENT_ID, folderId);
|
|
|
|
builder.withValue(NoteColumns.PARENT_ID, folderId);
|
|
|
|
|
|
|
|
// 设置笔记的本地修改标志为1,表示已修改
|
|
|
|
builder.withValue(NoteColumns.LOCAL_MODIFIED, 1);
|
|
|
|
builder.withValue(NoteColumns.LOCAL_MODIFIED, 1);
|
|
|
|
|
|
|
|
// 将构建好的操作添加到操作列表中
|
|
|
|
operationList.add(builder.build());
|
|
|
|
operationList.add(builder.build());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 尝试执行批量操作
|
|
|
|
try {
|
|
|
|
try {
|
|
|
|
|
|
|
|
// 使用ContentResolver的applyBatch方法执行操作列表
|
|
|
|
ContentProviderResult[] results = resolver.applyBatch(Notes.AUTHORITY, operationList);
|
|
|
|
ContentProviderResult[] results = resolver.applyBatch(Notes.AUTHORITY, operationList);
|
|
|
|
|
|
|
|
// 检查操作结果是否为空或无效
|
|
|
|
if (results == null || results.length == 0 || results[0] == null) {
|
|
|
|
if (results == null || results.length == 0 || results[0] == null) {
|
|
|
|
|
|
|
|
// 如果操作失败,记录日志并返回false
|
|
|
|
Log.d(TAG, "delete notes failed, ids:" + ids.toString());
|
|
|
|
Log.d(TAG, "delete notes failed, ids:" + ids.toString());
|
|
|
|
return false;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 如果操作成功,返回true
|
|
|
|
return true;
|
|
|
|
return true;
|
|
|
|
} catch (RemoteException e) {
|
|
|
|
} catch (RemoteException e) {
|
|
|
|
|
|
|
|
// 捕获远程异常并记录错误日志
|
|
|
|
Log.e(TAG, String.format("%s: %s", e.toString(), e.getMessage()));
|
|
|
|
Log.e(TAG, String.format("%s: %s", e.toString(), e.getMessage()));
|
|
|
|
} catch (OperationApplicationException e) {
|
|
|
|
} catch (OperationApplicationException e) {
|
|
|
|
|
|
|
|
// 捕获操作应用异常并记录错误日志
|
|
|
|
Log.e(TAG, String.format("%s: %s", e.toString(), e.getMessage()));
|
|
|
|
Log.e(TAG, String.format("%s: %s", e.toString(), e.getMessage()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 如果出现异常,返回false表示操作失败
|
|
|
|
return false;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* Get the all folder count except system folders {@link Notes#TYPE_SYSTEM}}
|
|
|
|
* Get the all folder count except system folders {@link Notes#TYPE_SYSTEM}}
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
|
|
|
|
// 定义一个静态方法,用于获取用户文件夹的数量
|
|
|
|
public static int getUserFolderCount(ContentResolver resolver) {
|
|
|
|
public static int getUserFolderCount(ContentResolver resolver) {
|
|
|
|
Cursor cursor =resolver.query(Notes.CONTENT_NOTE_URI,
|
|
|
|
Cursor cursor =resolver.query(Notes.CONTENT_NOTE_URI,
|
|
|
|
new String[] { "COUNT(*)" },
|
|
|
|
new String[] { "COUNT(*)" },
|
|
|
@ -153,21 +197,32 @@ public class DataUtils {
|
|
|
|
return exist;
|
|
|
|
return exist;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 定义一个静态方法,用于检查指定ID的笔记是否存在于数据库中
|
|
|
|
public static boolean existInNoteDatabase(ContentResolver resolver, long noteId) {
|
|
|
|
public static boolean existInNoteDatabase(ContentResolver resolver, long noteId) {
|
|
|
|
|
|
|
|
// 使用ContentResolver查询数据库,获取指定ID的笔记
|
|
|
|
|
|
|
|
// ContentUris.withAppendedId方法将noteId附加到CONTENT_NOTE_URI上,形成完整的URI
|
|
|
|
Cursor cursor = resolver.query(ContentUris.withAppendedId(Notes.CONTENT_NOTE_URI, noteId),
|
|
|
|
Cursor cursor = resolver.query(ContentUris.withAppendedId(Notes.CONTENT_NOTE_URI, noteId),
|
|
|
|
null, null, null, null);
|
|
|
|
null, null, null, null);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 初始化一个布尔变量,用于表示笔记是否存在
|
|
|
|
boolean exist = false;
|
|
|
|
boolean exist = false;
|
|
|
|
|
|
|
|
// 检查查询结果是否为空
|
|
|
|
if (cursor != null) {
|
|
|
|
if (cursor != null) {
|
|
|
|
|
|
|
|
// 如果查询结果不为空,检查结果集的大小
|
|
|
|
if (cursor.getCount() > 0) {
|
|
|
|
if (cursor.getCount() > 0) {
|
|
|
|
|
|
|
|
// 如果结果集大小大于0,表示笔记存在,将exist设置为true
|
|
|
|
exist = true;
|
|
|
|
exist = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 关闭Cursor,释放资源
|
|
|
|
cursor.close();
|
|
|
|
cursor.close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 返回笔记是否存在的结果
|
|
|
|
return exist;
|
|
|
|
return exist;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 定义一个静态方法,用于检查指定ID的数据是否存在于数据数据库中
|
|
|
|
public static boolean existInDataDatabase(ContentResolver resolver, long dataId) {
|
|
|
|
public static boolean existInDataDatabase(ContentResolver resolver, long dataId) {
|
|
|
|
|
|
|
|
// 使用ContentResolver查询数据,构建查询的URI,将dataId附加到Notes.CONTENT_DATA_URI后面
|
|
|
|
Cursor cursor = resolver.query(ContentUris.withAppendedId(Notes.CONTENT_DATA_URI, dataId),
|
|
|
|
Cursor cursor = resolver.query(ContentUris.withAppendedId(Notes.CONTENT_DATA_URI, dataId),
|
|
|
|
null, null, null, null);
|
|
|
|
null, null, null, null);
|
|
|
|
|
|
|
|
|
|
|
@ -181,6 +236,7 @@ public class DataUtils {
|
|
|
|
return exist;
|
|
|
|
return exist;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 定义一个静态方法checkVisibleFolderName,用于检查指定名称的文件夹是否可见
|
|
|
|
public static boolean checkVisibleFolderName(ContentResolver resolver, String name) {
|
|
|
|
public static boolean checkVisibleFolderName(ContentResolver resolver, String name) {
|
|
|
|
Cursor cursor = resolver.query(Notes.CONTENT_NOTE_URI, null,
|
|
|
|
Cursor cursor = resolver.query(Notes.CONTENT_NOTE_URI, null,
|
|
|
|
NoteColumns.TYPE + "=" + Notes.TYPE_FOLDER +
|
|
|
|
NoteColumns.TYPE + "=" + Notes.TYPE_FOLDER +
|
|
|
@ -197,73 +253,116 @@ public class DataUtils {
|
|
|
|
return exist;
|
|
|
|
return exist;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 定义一个静态方法,用于获取指定文件夹下的便签小部件属性集合
|
|
|
|
public static HashSet<AppWidgetAttribute> getFolderNoteWidget(ContentResolver resolver, long folderId) {
|
|
|
|
public static HashSet<AppWidgetAttribute> getFolderNoteWidget(ContentResolver resolver, long folderId) {
|
|
|
|
|
|
|
|
// 使用ContentResolver查询笔记内容URI,获取指定文件夹ID下的笔记小部件信息
|
|
|
|
Cursor c = resolver.query(Notes.CONTENT_NOTE_URI,
|
|
|
|
Cursor c = resolver.query(Notes.CONTENT_NOTE_URI,
|
|
|
|
|
|
|
|
// 查询的列:小部件ID和小部件类型
|
|
|
|
new String[] { NoteColumns.WIDGET_ID, NoteColumns.WIDGET_TYPE },
|
|
|
|
new String[] { NoteColumns.WIDGET_ID, NoteColumns.WIDGET_TYPE },
|
|
|
|
|
|
|
|
// 查询条件:父ID等于指定的文件夹ID
|
|
|
|
NoteColumns.PARENT_ID + "=?",
|
|
|
|
NoteColumns.PARENT_ID + "=?",
|
|
|
|
|
|
|
|
// 查询条件参数:文件夹ID的字符串形式
|
|
|
|
new String[] { String.valueOf(folderId) },
|
|
|
|
new String[] { String.valueOf(folderId) },
|
|
|
|
|
|
|
|
// 排序方式:无特定排序
|
|
|
|
null);
|
|
|
|
null);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 初始化一个HashSet用于存储小部件属性
|
|
|
|
HashSet<AppWidgetAttribute> set = null;
|
|
|
|
HashSet<AppWidgetAttribute> set = null;
|
|
|
|
|
|
|
|
// 检查查询结果是否为空
|
|
|
|
if (c != null) {
|
|
|
|
if (c != null) {
|
|
|
|
|
|
|
|
// 检查查询结果是否有数据
|
|
|
|
if (c.moveToFirst()) {
|
|
|
|
if (c.moveToFirst()) {
|
|
|
|
|
|
|
|
// 初始化HashSet
|
|
|
|
set = new HashSet<AppWidgetAttribute>();
|
|
|
|
set = new HashSet<AppWidgetAttribute>();
|
|
|
|
|
|
|
|
// 遍历查询结果
|
|
|
|
do {
|
|
|
|
do {
|
|
|
|
try {
|
|
|
|
try {
|
|
|
|
|
|
|
|
// 创建一个新的AppWidgetAttribute对象
|
|
|
|
AppWidgetAttribute widget = new AppWidgetAttribute();
|
|
|
|
AppWidgetAttribute widget = new AppWidgetAttribute();
|
|
|
|
|
|
|
|
// 从Cursor中获取小部件ID并赋值给widget对象
|
|
|
|
widget.widgetId = c.getInt(0);
|
|
|
|
widget.widgetId = c.getInt(0);
|
|
|
|
|
|
|
|
// 从Cursor中获取小部件类型并赋值给widget对象
|
|
|
|
widget.widgetType = c.getInt(1);
|
|
|
|
widget.widgetType = c.getInt(1);
|
|
|
|
|
|
|
|
// 将widget对象添加到HashSet中
|
|
|
|
set.add(widget);
|
|
|
|
set.add(widget);
|
|
|
|
} catch (IndexOutOfBoundsException e) {
|
|
|
|
} catch (IndexOutOfBoundsException e) {
|
|
|
|
|
|
|
|
// 捕获并记录数组越界异常
|
|
|
|
Log.e(TAG, e.toString());
|
|
|
|
Log.e(TAG, e.toString());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} while (c.moveToNext());
|
|
|
|
} while (c.moveToNext()); // 移动到下一行数据
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 关闭Cursor
|
|
|
|
c.close();
|
|
|
|
c.close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 返回小部件属性集合
|
|
|
|
return set;
|
|
|
|
return set;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 定义一个静态方法,用于通过笔记ID获取电话号码
|
|
|
|
public static String getCallNumberByNoteId(ContentResolver resolver, long noteId) {
|
|
|
|
public static String getCallNumberByNoteId(ContentResolver resolver, long noteId) {
|
|
|
|
|
|
|
|
// 使用ContentResolver查询笔记内容URI,获取电话号码
|
|
|
|
Cursor cursor = resolver.query(Notes.CONTENT_DATA_URI,
|
|
|
|
Cursor cursor = resolver.query(Notes.CONTENT_DATA_URI,
|
|
|
|
|
|
|
|
// 查询结果只需要电话号码这一列
|
|
|
|
new String [] { CallNote.PHONE_NUMBER },
|
|
|
|
new String [] { CallNote.PHONE_NUMBER },
|
|
|
|
|
|
|
|
// 查询条件:笔记ID等于指定值且MIME类型为电话记录类型
|
|
|
|
CallNote.NOTE_ID + "=? AND " + CallNote.MIME_TYPE + "=?",
|
|
|
|
CallNote.NOTE_ID + "=? AND " + CallNote.MIME_TYPE + "=?",
|
|
|
|
|
|
|
|
// 查询条件参数:笔记ID和电话记录的MIME类型
|
|
|
|
new String [] { String.valueOf(noteId), CallNote.CONTENT_ITEM_TYPE },
|
|
|
|
new String [] { String.valueOf(noteId), CallNote.CONTENT_ITEM_TYPE },
|
|
|
|
|
|
|
|
// 排序参数:此处不需要排序,所以为null
|
|
|
|
null);
|
|
|
|
null);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 检查查询结果是否不为空且能够移动到第一行
|
|
|
|
if (cursor != null && cursor.moveToFirst()) {
|
|
|
|
if (cursor != null && cursor.moveToFirst()) {
|
|
|
|
try {
|
|
|
|
try {
|
|
|
|
|
|
|
|
// 尝试从查询结果中获取电话号码列的值
|
|
|
|
return cursor.getString(0);
|
|
|
|
return cursor.getString(0);
|
|
|
|
} catch (IndexOutOfBoundsException e) {
|
|
|
|
} catch (IndexOutOfBoundsException e) {
|
|
|
|
|
|
|
|
// 如果发生索引越界异常,记录错误日志
|
|
|
|
Log.e(TAG, "Get call number fails " + e.toString());
|
|
|
|
Log.e(TAG, "Get call number fails " + e.toString());
|
|
|
|
} finally {
|
|
|
|
} finally {
|
|
|
|
|
|
|
|
// 确保无论是否发生异常,都关闭游标以释放资源
|
|
|
|
cursor.close();
|
|
|
|
cursor.close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 如果查询结果为空或无法获取电话号码,返回空字符串
|
|
|
|
return "";
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 定义一个静态方法,用于通过电话号码和通话日期获取笔记ID
|
|
|
|
public static long getNoteIdByPhoneNumberAndCallDate(ContentResolver resolver, String phoneNumber, long callDate) {
|
|
|
|
public static long getNoteIdByPhoneNumberAndCallDate(ContentResolver resolver, String phoneNumber, long callDate) {
|
|
|
|
|
|
|
|
// 使用ContentResolver查询数据库,获取符合条件的Cursor对象
|
|
|
|
Cursor cursor = resolver.query(Notes.CONTENT_DATA_URI,
|
|
|
|
Cursor cursor = resolver.query(Notes.CONTENT_DATA_URI,
|
|
|
|
|
|
|
|
// 查询结果只需要CallNote.NOTE_ID这一列
|
|
|
|
new String [] { CallNote.NOTE_ID },
|
|
|
|
new String [] { CallNote.NOTE_ID },
|
|
|
|
|
|
|
|
// 查询条件:通话日期等于callDate,MIME类型等于CallNote.CONTENT_ITEM_TYPE,
|
|
|
|
|
|
|
|
// 并且电话号码等于phoneNumber
|
|
|
|
CallNote.CALL_DATE + "=? AND " + CallNote.MIME_TYPE + "=? AND PHONE_NUMBERS_EQUAL("
|
|
|
|
CallNote.CALL_DATE + "=? AND " + CallNote.MIME_TYPE + "=? AND PHONE_NUMBERS_EQUAL("
|
|
|
|
+ CallNote.PHONE_NUMBER + ",?)",
|
|
|
|
+ CallNote.PHONE_NUMBER + ",?)",
|
|
|
|
|
|
|
|
// 查询条件的参数:callDate,CallNote.CONTENT_ITEM_TYPE,phoneNumber
|
|
|
|
new String [] { String.valueOf(callDate), CallNote.CONTENT_ITEM_TYPE, phoneNumber },
|
|
|
|
new String [] { String.valueOf(callDate), CallNote.CONTENT_ITEM_TYPE, phoneNumber },
|
|
|
|
|
|
|
|
// 排序方式:无
|
|
|
|
null);
|
|
|
|
null);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 如果查询结果不为空
|
|
|
|
if (cursor != null) {
|
|
|
|
if (cursor != null) {
|
|
|
|
|
|
|
|
// 如果Cursor中有数据
|
|
|
|
if (cursor.moveToFirst()) {
|
|
|
|
if (cursor.moveToFirst()) {
|
|
|
|
try {
|
|
|
|
try {
|
|
|
|
|
|
|
|
// 尝试从Cursor中获取NOTE_ID列的值并返回
|
|
|
|
return cursor.getLong(0);
|
|
|
|
return cursor.getLong(0);
|
|
|
|
} catch (IndexOutOfBoundsException e) {
|
|
|
|
} catch (IndexOutOfBoundsException e) {
|
|
|
|
|
|
|
|
// 如果发生索引越界异常,记录错误日志
|
|
|
|
Log.e(TAG, "Get call note id fails " + e.toString());
|
|
|
|
Log.e(TAG, "Get call note id fails " + e.toString());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 关闭Cursor
|
|
|
|
cursor.close();
|
|
|
|
cursor.close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 如果查询结果为空或者没有数据,返回0
|
|
|
|
return 0;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 定义一个静态方法,用于根据笔记ID获取笔记摘要
|
|
|
|
public static String getSnippetById(ContentResolver resolver, long noteId) {
|
|
|
|
public static String getSnippetById(ContentResolver resolver, long noteId) {
|
|
|
|
Cursor cursor = resolver.query(Notes.CONTENT_NOTE_URI,
|
|
|
|
Cursor cursor = resolver.query(Notes.CONTENT_NOTE_URI,
|
|
|
|
new String [] { NoteColumns.SNIPPET },
|
|
|
|
new String [] { NoteColumns.SNIPPET },
|
|
|
@ -282,14 +381,21 @@ public class DataUtils {
|
|
|
|
throw new IllegalArgumentException("Note is not found with id: " + noteId);
|
|
|
|
throw new IllegalArgumentException("Note is not found with id: " + noteId);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 定义一个公共的静态方法,用于获取格式化后的代码片段
|
|
|
|
public static String getFormattedSnippet(String snippet) {
|
|
|
|
public static String getFormattedSnippet(String snippet) {
|
|
|
|
|
|
|
|
// 检查传入的代码片段是否为null
|
|
|
|
if (snippet != null) {
|
|
|
|
if (snippet != null) {
|
|
|
|
|
|
|
|
// 去除代码片段两端的空白字符
|
|
|
|
snippet = snippet.trim();
|
|
|
|
snippet = snippet.trim();
|
|
|
|
|
|
|
|
// 查找代码片段中的第一个换行符的位置
|
|
|
|
int index = snippet.indexOf('\n');
|
|
|
|
int index = snippet.indexOf('\n');
|
|
|
|
|
|
|
|
// 如果找到了换行符
|
|
|
|
if (index != -1) {
|
|
|
|
if (index != -1) {
|
|
|
|
|
|
|
|
// 截取从开始到第一个换行符之前的子字符串
|
|
|
|
snippet = snippet.substring(0, index);
|
|
|
|
snippet = snippet.substring(0, index);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 返回格式化后的代码片段
|
|
|
|
return snippet;
|
|
|
|
return snippet;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|