|
|
|
@ -0,0 +1,873 @@
|
|
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2010-2011, The MiCode Open Source Community (www.micode.net)
|
|
|
|
|
*
|
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
|
*
|
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
*
|
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
|
* limitations under the License.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
package net.micode.notes.ui;//导入ui包
|
|
|
|
|
|
|
|
|
|
import android.app.Activity;
|
|
|
|
|
import android.app.AlarmManager;//安卓系统应用开发
|
|
|
|
|
import android.app.AlertDialog;// 闹钟管理器
|
|
|
|
|
import android.app.PendingIntent;
|
|
|
|
|
import android.app.SearchManager;//搜索管理器
|
|
|
|
|
import android.appwidget.AppWidgetManager;//App工具管理器
|
|
|
|
|
import android.content.ContentUris;//内容
|
|
|
|
|
import android.content.Context;//背景
|
|
|
|
|
import android.content.DialogInterface;//对话框界面
|
|
|
|
|
import android.content.Intent;//内容意图
|
|
|
|
|
import android.content.SharedPreferences;//内容偏好共享
|
|
|
|
|
import android.graphics.Paint;//引入绘画包
|
|
|
|
|
import android.os.Bundle;
|
|
|
|
|
import android.preference.PreferenceManager;//偏好管理
|
|
|
|
|
import android.text.Spannable;//可跨度文本
|
|
|
|
|
import android.text.SpannableString;
|
|
|
|
|
import android.text.TextUtils;//文本单元
|
|
|
|
|
import android.text.format.DateUtils;//日期形式
|
|
|
|
|
import android.text.style.BackgroundColorSpan;//背景颜色风格
|
|
|
|
|
import android.util.Log;//日志工具
|
|
|
|
|
import android.view.LayoutInflater;//布局视图
|
|
|
|
|
import android.view.Menu;//菜单视图
|
|
|
|
|
import android.view.MenuItem;//菜单条款
|
|
|
|
|
import android.view.MotionEvent;//动态事件
|
|
|
|
|
import android.view.View;
|
|
|
|
|
import android.view.View.OnClickListener;//针对标签标记的设置,继承了许多有关监听的类
|
|
|
|
|
import android.view.WindowManager;//窗口管理
|
|
|
|
|
import android.widget.CheckBox;
|
|
|
|
|
import android.widget.CompoundButton;//合成按钮
|
|
|
|
|
import android.widget.CompoundButton.OnCheckedChangeListener;//变化监听器
|
|
|
|
|
import android.widget.EditText;
|
|
|
|
|
import android.widget.ImageView;//图像
|
|
|
|
|
import android.widget.LinearLayout;//线性布局
|
|
|
|
|
import android.widget.TextView;//文本视图
|
|
|
|
|
import android.widget.Toast;
|
|
|
|
|
|
|
|
|
|
import net.micode.notes.R;
|
|
|
|
|
import net.micode.notes.data.Notes;//便签数据
|
|
|
|
|
import net.micode.notes.data.Notes.TextNote;//小米便签文本
|
|
|
|
|
import net.micode.notes.model.WorkingNote;//便签运行模型
|
|
|
|
|
import net.micode.notes.model.WorkingNote.NoteSettingChangedListener;//便签设置变化监听器
|
|
|
|
|
import net.micode.notes.tool.DataUtils;//数据单元
|
|
|
|
|
import net.micode.notes.tool.ResourceParser;//资源解析器
|
|
|
|
|
import net.micode.notes.tool.ResourceParser.TextAppearanceResources;//文本资源显示
|
|
|
|
|
import net.micode.notes.ui.DateTimePickerDialog.OnDateTimeSetListener;//日期设置监听器
|
|
|
|
|
import net.micode.notes.ui.NoteEditText.OnTextViewChangeListener;//文本变化监听器
|
|
|
|
|
import net.micode.notes.widget.NoteWidgetProvider_2x;//便签宽度为2X
|
|
|
|
|
import net.micode.notes.widget.NoteWidgetProvider_4x;
|
|
|
|
|
|
|
|
|
|
import java.util.HashMap;
|
|
|
|
|
import java.util.HashSet;
|
|
|
|
|
import java.util.Map;
|
|
|
|
|
import java.util.regex.Matcher;
|
|
|
|
|
import java.util.regex.Pattern;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public class NoteEditActivity extends Activity implements OnClickListener,
|
|
|
|
|
NoteSettingChangedListener, OnTextViewChangeListener {//继承Activity,实现了便签的编辑功能,同时对三个监听接口的方法进行实现
|
|
|
|
|
private class HeadViewHolder {//创建一个类用于显示文本与图片
|
|
|
|
|
public TextView tvModified;//当前文本视图
|
|
|
|
|
|
|
|
|
|
public ImageView ivAlertIcon;//提醒的图标
|
|
|
|
|
|
|
|
|
|
public TextView tvAlertDate;//设置的提醒的时间
|
|
|
|
|
|
|
|
|
|
public ImageView ibSetBgColor;//设置背景颜色
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static final Map<Integer, Integer> sBgSelectorBtnsMap = new HashMap<Integer, Integer>();//运用Hashmap类,将颜色按钮和对应的资源解析器中的相应颜色关联
|
|
|
|
|
static {//对HashMap进行初始化,主要是颜色的对应
|
|
|
|
|
sBgSelectorBtnsMap.put(R.id.iv_bg_yellow, ResourceParser.YELLOW);//黄
|
|
|
|
|
sBgSelectorBtnsMap.put(R.id.iv_bg_red, ResourceParser.RED);//红
|
|
|
|
|
sBgSelectorBtnsMap.put(R.id.iv_bg_blue, ResourceParser.BLUE);//蓝
|
|
|
|
|
sBgSelectorBtnsMap.put(R.id.iv_bg_green, ResourceParser.GREEN);//绿
|
|
|
|
|
sBgSelectorBtnsMap.put(R.id.iv_bg_white, ResourceParser.WHITE);//白
|
|
|
|
|
}//各种颜色的对应
|
|
|
|
|
|
|
|
|
|
private static final Map<Integer, Integer> sBgSelectorSelectionMap = new HashMap<Integer, Integer>();//实现资源解析器中的颜色ID与背景颜色选择选择按钮(已选择)对应
|
|
|
|
|
static {
|
|
|
|
|
sBgSelectorSelectionMap.put(ResourceParser.YELLOW, R.id.iv_bg_yellow_select);//将资源剖析器与选择器相连
|
|
|
|
|
sBgSelectorSelectionMap.put(ResourceParser.RED, R.id.iv_bg_red_select);
|
|
|
|
|
sBgSelectorSelectionMap.put(ResourceParser.BLUE, R.id.iv_bg_blue_select);
|
|
|
|
|
sBgSelectorSelectionMap.put(ResourceParser.GREEN, R.id.iv_bg_green_select);
|
|
|
|
|
sBgSelectorSelectionMap.put(ResourceParser.WHITE, R.id.iv_bg_white_select);
|
|
|
|
|
}//提供了一个用户选择主界面颜色的功能
|
|
|
|
|
|
|
|
|
|
private static final Map<Integer, Integer> sFontSizeBtnsMap = new HashMap<Integer, Integer>();//将字体的大小与相对应的选择相连接
|
|
|
|
|
static {//提供各种大小字体的选择
|
|
|
|
|
sFontSizeBtnsMap.put(R.id.ll_font_large, ResourceParser.TEXT_LARGE);//大
|
|
|
|
|
sFontSizeBtnsMap.put(R.id.ll_font_small, ResourceParser.TEXT_SMALL);//小
|
|
|
|
|
sFontSizeBtnsMap.put(R.id.ll_font_normal, ResourceParser.TEXT_MEDIUM);//普通
|
|
|
|
|
sFontSizeBtnsMap.put(R.id.ll_font_super, ResourceParser.TEXT_SUPER);//超大
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static final Map<Integer, Integer> sFontSelectorSelectionMap = new HashMap<Integer, Integer>();//实现资源解析器中字号ID与字体大小按钮(已选择)对应
|
|
|
|
|
static {//选择字体大小的界面
|
|
|
|
|
sFontSelectorSelectionMap.put(ResourceParser.TEXT_LARGE, R.id.iv_large_select);
|
|
|
|
|
sFontSelectorSelectionMap.put(ResourceParser.TEXT_SMALL, R.id.iv_small_select);
|
|
|
|
|
sFontSelectorSelectionMap.put(ResourceParser.TEXT_MEDIUM, R.id.iv_medium_select);
|
|
|
|
|
sFontSelectorSelectionMap.put(ResourceParser.TEXT_SUPER, R.id.iv_super_select);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static final String TAG = "NoteEditActivity";//编辑文本的activity
|
|
|
|
|
|
|
|
|
|
private HeadViewHolder mNoteHeaderHolder;//设置头部布局
|
|
|
|
|
|
|
|
|
|
private View mHeadViewPanel;//对表头的操作
|
|
|
|
|
|
|
|
|
|
private View mNoteBgColorSelector;//便签的背景色选择器
|
|
|
|
|
|
|
|
|
|
private View mFontSizeSelector;//便签的字体大小选择器
|
|
|
|
|
|
|
|
|
|
private EditText mNoteEditor;//便签编辑器
|
|
|
|
|
|
|
|
|
|
private View mNoteEditorPanel;//文本编辑控制板
|
|
|
|
|
|
|
|
|
|
private WorkingNote mWorkingNote;//对模板WorkingNote的初始化
|
|
|
|
|
|
|
|
|
|
private SharedPreferences mSharedPrefs;//私有化SharedPreferences的数据存储方式
|
|
|
|
|
private int mFontSizeId;//操作字体大小
|
|
|
|
|
|
|
|
|
|
private static final String PREFERENCE_FONT_SIZE = "pref_font_size";//字体大小设置
|
|
|
|
|
|
|
|
|
|
private static final int SHORTCUT_ICON_TITLE_MAX_LEN = 10;//设置标题最大长度为10
|
|
|
|
|
|
|
|
|
|
public static final String TAG_CHECKED = String.valueOf('\u221A');//定义final字符串,表明已标记
|
|
|
|
|
public static final String TAG_UNCHECKED = String.valueOf('\u25A1');//定义final字符串,表明未标记
|
|
|
|
|
|
|
|
|
|
private LinearLayout mEditTextList;//线性布局,用于编辑文本
|
|
|
|
|
|
|
|
|
|
private String mUserQuery;//用户请求
|
|
|
|
|
private Pattern mPattern;//正则表达式模式
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
protected void onCreate(Bundle savedInstanceState) {//在界面创建时会调用的函数,用于在创建这样一个窗口时进行自定义操作
|
|
|
|
|
super.onCreate(savedInstanceState);//调用父类的onCreate()方法
|
|
|
|
|
this.setContentView(R.layout.note_edit);//设置活动的显示布局
|
|
|
|
|
|
|
|
|
|
if (savedInstanceState == null && !initActivityState(getIntent())) {
|
|
|
|
|
finish();
|
|
|
|
|
return;
|
|
|
|
|
}//如果未保存实例状态且当前Activity未初始化完成,则结束当前Activity
|
|
|
|
|
initResources();//初始化资源
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Current activity may be killed when the memory is low. Once it is killed, for another time
|
|
|
|
|
* user load this activity, we should restore the former state
|
|
|
|
|
*/
|
|
|
|
|
@Override
|
|
|
|
|
protected void onRestoreInstanceState(Bundle savedInstanceState) {//保存当前界面状态
|
|
|
|
|
super.onRestoreInstanceState(savedInstanceState);//调用父类函数
|
|
|
|
|
if (savedInstanceState != null && savedInstanceState.containsKey(Intent.EXTRA_UID)) {//如果保存了关闭前的实例状态且其中包含着便签标识符,则将该标识符添加到初始化Activity的Intent中
|
|
|
|
|
Intent intent = new Intent(Intent.ACTION_VIEW);//新建一个intent
|
|
|
|
|
intent.putExtra(Intent.EXTRA_UID, savedInstanceState.getLong(Intent.EXTRA_UID));//利用此前的extra_uid初始化一个intent
|
|
|
|
|
if (!initActivityState(intent)) {//初始化活动状态失败,则结束Activity
|
|
|
|
|
finish();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
Log.d(TAG, "Restoring from killed activity");//记录操作信息到日志中
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private boolean initActivityState(Intent intent) {//初始化活动状态
|
|
|
|
|
/**
|
|
|
|
|
* If the user specified the {@link Intent#ACTION_VIEW} but not provided with id,
|
|
|
|
|
* then jump to the NotesListActivity
|
|
|
|
|
*///如果找不到便签,则返回NotesListActivity,并报错“便签不存在”//
|
|
|
|
|
mWorkingNote = null;// 初始化便签数据
|
|
|
|
|
if (TextUtils.equals(Intent.ACTION_VIEW, intent.getAction())) {//触摸动作的原始32位信息,包括事件的动作,触控点信息
|
|
|
|
|
long noteId = intent.getLongExtra(Intent.EXTRA_UID, 0);//获取到便签id
|
|
|
|
|
mUserQuery = "";//
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Starting from the searched result
|
|
|
|
|
*/
|
|
|
|
|
if (intent.hasExtra(SearchManager.EXTRA_DATA_KEY)) {//若intent中含有搜索的数据
|
|
|
|
|
noteId = Long.parseLong(intent.getStringExtra(SearchManager.EXTRA_DATA_KEY));//获取便签ID
|
|
|
|
|
mUserQuery = intent.getStringExtra(SearchManager.USER_QUERY);//将用户请求的字符串保存在变量mUserQuery中
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!DataUtils.visibleInNoteDatabase(getContentResolver(), noteId, Notes.TYPE_NOTE)) {//如果在数据库中查找不到
|
|
|
|
|
Intent jump = new Intent(this, NotesListActivity.class);//设置Intent目的组件为NotesListActivity
|
|
|
|
|
startActivity(jump);
|
|
|
|
|
showToast(R.string.error_note_not_exist);//设置Intent目的组件为NotesListActivity
|
|
|
|
|
finish();
|
|
|
|
|
return false;
|
|
|
|
|
} else {
|
|
|
|
|
mWorkingNote = WorkingNote.load(this, noteId);//加载对应id的便签项
|
|
|
|
|
if (mWorkingNote == null) {//如果活动便签为空,显示错误信息
|
|
|
|
|
Log.e(TAG, "load note failed with note id" + noteId);//导出信息失败
|
|
|
|
|
finish();
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
getWindow().setSoftInputMode(//设置软键盘输入模式
|
|
|
|
|
WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN//将软键盘输入进行隐藏
|
|
|
|
|
| WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);//使Edit界面适应软键盘弹出
|
|
|
|
|
} else if(TextUtils.equals(Intent.ACTION_INSERT_OR_EDIT, intent.getAction())) {//通过 getAction得到的字符串,来决定做什么
|
|
|
|
|
// New note
|
|
|
|
|
long folderId = intent.getLongExtra(Notes.INTENT_EXTRA_FOLDER_ID, 0);//获取intent中传入的父文件夹id,默认为0
|
|
|
|
|
int widgetId = intent.getIntExtra(Notes.INTENT_EXTRA_WIDGET_ID,
|
|
|
|
|
AppWidgetManager.INVALID_APPWIDGET_ID);//获取布局文件id,默认返回参数为无效参数
|
|
|
|
|
int widgetType = intent.getIntExtra(Notes.INTENT_EXTRA_WIDGET_TYPE,
|
|
|
|
|
Notes.TYPE_WIDGET_INVALIDE);//获取布局文件类型,默认为无效参数
|
|
|
|
|
int bgResId = intent.getIntExtra(Notes.INTENT_EXTRA_BACKGROUND_ID,
|
|
|
|
|
ResourceParser.getDefaultBgId(this));//获取背景颜色资源id,默认为随机背景色
|
|
|
|
|
|
|
|
|
|
// Parse call-record note
|
|
|
|
|
String phoneNumber = intent.getStringExtra(Intent.EXTRA_PHONE_NUMBER);//解析电话簿记录
|
|
|
|
|
long callDate = intent.getLongExtra(Notes.INTENT_EXTRA_CALL_DATE, 0);//获取提醒时间,默认为0
|
|
|
|
|
if (callDate != 0 && phoneNumber != null) {//如果通话日期与号码均存在
|
|
|
|
|
if (TextUtils.isEmpty(phoneNumber)) {//如果记录的通话号码为空,则显示警告
|
|
|
|
|
Log.w(TAG, "The call record number is null");
|
|
|
|
|
}
|
|
|
|
|
long noteId = 0;//这里根据获取到的电话号字符串从数据库中获取相应的noteid
|
|
|
|
|
if ((noteId = DataUtils.getNoteIdByPhoneNumberAndCallDate(getContentResolver(),
|
|
|
|
|
phoneNumber, callDate)) > 0) {//通过通话号码和通话日期在数据库中查找noteId
|
|
|
|
|
mWorkingNote = WorkingNote.load(this, noteId);//导入这个便签
|
|
|
|
|
if (mWorkingNote == null) {//noteId对应的内容为空,输出报错信息,返回错误,初始化失败
|
|
|
|
|
Log.e(TAG, "load call note failed with note id" + noteId);
|
|
|
|
|
finish();
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
} else {//将电话号码与手机的号码簿相关
|
|
|
|
|
mWorkingNote = WorkingNote.createEmptyNote(this, folderId, widgetId,
|
|
|
|
|
widgetType, bgResId);//没有查找到noteId信息则重新建立空便签,使用之前默认参量对便签进行初始化
|
|
|
|
|
mWorkingNote.convertToCallNote(phoneNumber, callDate);//将便签转化为通话记录便签
|
|
|
|
|
}
|
|
|
|
|
} else {//将电话号码与手机的号码簿相关
|
|
|
|
|
mWorkingNote = WorkingNote.createEmptyNote(this, folderId, widgetId, widgetType,
|
|
|
|
|
bgResId);//创建一个空的便签来进行操作
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
getWindow().setSoftInputMode(//键盘输入设置
|
|
|
|
|
WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE
|
|
|
|
|
| WindowManager.LayoutParams.SOFT_INPUT_STATE_VISIBLE);
|
|
|
|
|
} else {
|
|
|
|
|
Log.e(TAG, "Intent not specified action, should not support");//打印错误信息
|
|
|
|
|
finish();
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
mWorkingNote.setOnSettingStatusChangedListener(this);//为这个便签设置一个设置变化的监听器
|
|
|
|
|
return true;//返回true表示初始化该Activity成功
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
protected void onResume() {
|
|
|
|
|
super.onResume();//进行重新返回的函数
|
|
|
|
|
initNoteScreen();//初始化便签屏幕
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void initNoteScreen() {//对界面进行初始化的操作
|
|
|
|
|
mNoteEditor.setTextAppearance(this, TextAppearanceResources
|
|
|
|
|
.getTexAppearanceResource(mFontSizeId));//根据字体大小设置便签编辑器的文本格式
|
|
|
|
|
if (mWorkingNote.getCheckListMode() == TextNote.MODE_CHECK_LIST) {//如果便签的模式为清单模式
|
|
|
|
|
switchToListMode(mWorkingNote.getContent());//转移到列表的模式
|
|
|
|
|
} else {//不为清单列表界面,继续执行
|
|
|
|
|
mNoteEditor.setText(getHighlightQueryResult(mWorkingNote.getContent(), mUserQuery));//设置文本为高亮显示的搜索结果
|
|
|
|
|
mNoteEditor.setSelection(mNoteEditor.getText().length());//设置文本编辑框中显示的文字是workingnote类中包含的便签文字,并且设置文本被选中
|
|
|
|
|
}
|
|
|
|
|
for (Integer id : sBgSelectorSelectionMap.keySet()) {//对于背景里的图片选择做for循环遍历
|
|
|
|
|
findViewById(sBgSelectorSelectionMap.get(id)).setVisibility(View.GONE);//将背景选择图片都设置为不显示
|
|
|
|
|
}
|
|
|
|
|
mHeadViewPanel.setBackgroundResource(mWorkingNote.getTitleBgResId());//设置便签头部背景和编辑部分的背景颜色
|
|
|
|
|
mNoteEditorPanel.setBackgroundResource(mWorkingNote.getBgColorResId());//为便签编辑器设置背景
|
|
|
|
|
|
|
|
|
|
mNoteHeaderHolder.tvModified.setText(DateUtils.formatDateTime(this,//设置标题中显示的文字包含其被编辑的日期信息
|
|
|
|
|
mWorkingNote.getModifiedDate(), DateUtils.FORMAT_SHOW_DATE//在便签顶部显示时间
|
|
|
|
|
| DateUtils.FORMAT_NUMERIC_DATE | DateUtils.FORMAT_SHOW_TIME
|
|
|
|
|
| DateUtils.FORMAT_SHOW_YEAR));//年份
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* TODO: Add the menu for setting alert. Currently disable it because the DateTimePicker
|
|
|
|
|
* is not ready
|
|
|
|
|
*/
|
|
|
|
|
showAlertHeader();//在标题头部设置提醒的时间
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void showAlertHeader() {
|
|
|
|
|
if (mWorkingNote.hasClockAlert()) {//如果当前便签已经设置了提醒,则继续向下判断
|
|
|
|
|
long time = System.currentTimeMillis();//得到当前时间
|
|
|
|
|
if (time > mWorkingNote.getAlertDate()) {//如果系统时间大于了闹钟设置的时间,那么闹钟失效
|
|
|
|
|
mNoteHeaderHolder.tvAlertDate.setText(R.string.note_alert_expired);//提醒时间已过期
|
|
|
|
|
} else {//如果没超时,则显示还剩下多少时间
|
|
|
|
|
mNoteHeaderHolder.tvAlertDate.setText(DateUtils.getRelativeTimeSpanString(
|
|
|
|
|
mWorkingNote.getAlertDate(), time, DateUtils.MINUTE_IN_MILLIS));//如果提醒时间未到,则设置标题中显示提醒时间
|
|
|
|
|
}
|
|
|
|
|
mNoteHeaderHolder.tvAlertDate.setVisibility(View.VISIBLE);//显示闹钟开启的图标
|
|
|
|
|
mNoteHeaderHolder.ivAlertIcon.setVisibility(View.VISIBLE);//提醒时间图标显示可见
|
|
|
|
|
} else {
|
|
|
|
|
// mNoteHeaderHolder.tvAlertDate.setVisibility(View.GONE);//如果便签不包含提醒,则不显示
|
|
|
|
|
mNoteHeaderHolder.ivAlertIcon.setVisibility(View.GONE);
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
protected void onNewIntent(Intent intent) {//新建一个传值对象
|
|
|
|
|
super.onNewIntent(intent);
|
|
|
|
|
initActivityState(intent);//初始化活动状态
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
protected void onSaveInstanceState(Bundle outState) {//保存当前活动的状态
|
|
|
|
|
super.onSaveInstanceState(outState);
|
|
|
|
|
/**
|
|
|
|
|
* For new note without note id, we should firstly save it to
|
|
|
|
|
* generate a id. If the editing note is not worth saving, there
|
|
|
|
|
* is no id which is equivalent to create new note
|
|
|
|
|
*/
|
|
|
|
|
if (!mWorkingNote.existInDatabase()) {//如果该workingnote实例无法在数据库中找到
|
|
|
|
|
saveNote();//保存标签
|
|
|
|
|
}
|
|
|
|
|
outState.putLong(Intent.EXTRA_UID, mWorkingNote.getNoteId());//将生成的noteId保存到outState中
|
|
|
|
|
Log.d(TAG, "Save working note id: " + mWorkingNote.getNoteId() + " onSaveInstanceState");//使用Log输出debug信息,保存的执行便签id
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public boolean dispatchTouchEvent(MotionEvent ev) {//对屏幕触控事件的判断
|
|
|
|
|
if (mNoteBgColorSelector.getVisibility() == View.VISIBLE
|
|
|
|
|
&& !inRangeOfView(mNoteBgColorSelector, ev)) {//当备件颜色选择器可见,并且触控事件不在它的范围内时,执行下面代码
|
|
|
|
|
mNoteBgColorSelector.setVisibility(View.GONE);//设置颜色选择器在屏幕上可见
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (mFontSizeSelector.getVisibility() == View.VISIBLE
|
|
|
|
|
&& !inRangeOfView(mFontSizeSelector, ev)) {//当文字大小选择器可见,并且触控事件不在它的范围内时,执行下面代码
|
|
|
|
|
mFontSizeSelector.setVisibility(View.GONE);//设置字体大小选择器在屏幕上可见
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
return super.dispatchTouchEvent(ev);//未被消耗时调用父类的方法
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private boolean inRangeOfView(View view, MotionEvent ev) {//判断触摸事件发生的位置是否在View控件范围内
|
|
|
|
|
int []location = new int[2];
|
|
|
|
|
view.getLocationOnScreen(location);//声明location数组,用于存放屏幕位置的横纵坐标x-y
|
|
|
|
|
int x = location[0];
|
|
|
|
|
int y = location[1];
|
|
|
|
|
if (ev.getX() < x//如果触控的位置超出了给定的范围,返回false
|
|
|
|
|
|| ev.getX() > (x + view.getWidth())
|
|
|
|
|
|| ev.getY() < y
|
|
|
|
|
|| ev.getY() > (y + view.getHeight())) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void initResources() {//初始化资源
|
|
|
|
|
mHeadViewPanel = findViewById(R.id.note_title);//初始化便签标题栏
|
|
|
|
|
mNoteHeaderHolder = new HeadViewHolder();//HeadViewHolder是对便签顶部的视图的容器,此处实例化了它的对象
|
|
|
|
|
mNoteHeaderHolder.tvModified = (TextView) findViewById(R.id.tv_modified_date);//建立便签的时候初始化时间
|
|
|
|
|
mNoteHeaderHolder.ivAlertIcon = (ImageView) findViewById(R.id.iv_alert_icon);//得到提醒闹钟图标
|
|
|
|
|
mNoteHeaderHolder.tvAlertDate = (TextView) findViewById(R.id.tv_alert_date);//得到闹钟日期
|
|
|
|
|
mNoteHeaderHolder.ibSetBgColor = (ImageView) findViewById(R.id.btn_set_bg_color);//得到设置背景颜色的按钮
|
|
|
|
|
mNoteHeaderHolder.ibSetBgColor.setOnClickListener(this);//设置背景颜色控件的点击监听
|
|
|
|
|
mNoteEditor = (EditText) findViewById(R.id.note_edit_view);//初始化便签编辑部分界面
|
|
|
|
|
mNoteEditorPanel = findViewById(R.id.sv_note_edit);//得到文件编辑器
|
|
|
|
|
mNoteBgColorSelector = findViewById(R.id.note_bg_color_selector);//设置背景颜色的选择器
|
|
|
|
|
for (int id : sBgSelectorBtnsMap.keySet()) {//对所有颜色选择按钮设置监听器
|
|
|
|
|
ImageView iv = (ImageView) findViewById(id);
|
|
|
|
|
iv.setOnClickListener(this);//设置点击监听器
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
mFontSizeSelector = findViewById(R.id.font_size_selector);//初始化便签文字字号选择器
|
|
|
|
|
for (int id : sFontSizeBtnsMap.keySet()) {//对所有字号选择按钮设置监听器
|
|
|
|
|
View view = findViewById(id);
|
|
|
|
|
view.setOnClickListener(this);
|
|
|
|
|
};
|
|
|
|
|
mSharedPrefs = PreferenceManager.getDefaultSharedPreferences(this);//得到用户的偏好信息
|
|
|
|
|
mFontSizeId = mSharedPrefs.getInt(PREFERENCE_FONT_SIZE, ResourceParser.BG_DEFAULT_FONT_SIZE);//从偏好设置中得到设置字体大小的ID
|
|
|
|
|
/**
|
|
|
|
|
* HACKME: Fix bug of store the resource id in shared preference.
|
|
|
|
|
* The id may larger than the length of resources, in this case,
|
|
|
|
|
* return the {@link ResourceParser#BG_DEFAULT_FONT_SIZE}
|
|
|
|
|
*/
|
|
|
|
|
if(mFontSizeId >= TextAppearanceResources.getResourcesSize()) {//如果获取到的字体大小值的长度大于资源文件应有长度
|
|
|
|
|
mFontSizeId = ResourceParser.BG_DEFAULT_FONT_SIZE;//将其设置为默认长度,缺省值为1
|
|
|
|
|
}
|
|
|
|
|
mEditTextList = (LinearLayout) findViewById(R.id.note_edit_list);//得到标签编辑的列表
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
protected void onPause() {//重写onPause方法,将便签编辑界面暂停
|
|
|
|
|
super.onPause();
|
|
|
|
|
if(saveNote()) {//保存便签的内容
|
|
|
|
|
Log.d(TAG, "Note data was saved with length:" + mWorkingNote.getContent().length());// 暂停时即进行便签的存储,记录log文件
|
|
|
|
|
}
|
|
|
|
|
clearSettingState();//清除状态设置
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void updateWidget() {//更新窗口与桌面小窗口同步
|
|
|
|
|
Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_UPDATE);//实例化Intent,用于和AppWidgetManager进行消息交换
|
|
|
|
|
if (mWorkingNote.getWidgetType() == Notes.TYPE_WIDGET_2X) {//根据workingnote的widget类型大小,设置intent中映射的类
|
|
|
|
|
intent.setClass(this, NoteWidgetProvider_2x.class);
|
|
|
|
|
} else if (mWorkingNote.getWidgetType() == Notes.TYPE_WIDGET_4X) {//如果是4倍大小
|
|
|
|
|
intent.setClass(this, NoteWidgetProvider_4x.class);
|
|
|
|
|
} else {
|
|
|
|
|
Log.e(TAG, "Unspported widget type");//Log输出error信息,不支持的widget类型
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_IDS, new int[] {//将桌面挂件的标识作为附加信息添加到Intent中
|
|
|
|
|
mWorkingNote.getWidgetId()//以广播形式发送intent
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
sendBroadcast(intent);//把intent信息广播发送
|
|
|
|
|
setResult(RESULT_OK, intent);//设置当前Activity结束后将结束信息发送给其父活动
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void onClick(View v) {//当点击事件发生时执行该方法
|
|
|
|
|
int id = v.getId();//获取到点击事件的id
|
|
|
|
|
if (id == R.id.btn_set_bg_color) {//如果点击的是设置背景颜色的按钮
|
|
|
|
|
mNoteBgColorSelector.setVisibility(View.VISIBLE);//.背景颜色选择器设置为可见
|
|
|
|
|
findViewById(sBgSelectorSelectionMap.get(mWorkingNote.getBgColorId())).setVisibility(
|
|
|
|
|
View.VISIBLE);//将备选颜色界面设为可见
|
|
|
|
|
} else if (sBgSelectorBtnsMap.containsKey(id)) {//判断是否是背景颜色选择器的一个按钮
|
|
|
|
|
findViewById(sBgSelectorSelectionMap.get(mWorkingNote.getBgColorId())).setVisibility(
|
|
|
|
|
View.GONE);//将原来的背影颜色设置为不可见
|
|
|
|
|
mWorkingNote.setBgColorId(sBgSelectorBtnsMap.get(id));//根据id设置新的背景颜色
|
|
|
|
|
mNoteBgColorSelector.setVisibility(View.GONE);//将背景颜色选择器隐藏
|
|
|
|
|
} else if (sFontSizeBtnsMap.containsKey(id)) {//如果点击的是文字大小设置器中的文字大小选项按钮
|
|
|
|
|
findViewById(sFontSelectorSelectionMap.get(mFontSizeId)).setVisibility(View.GONE);//将备选字体界面设为可见
|
|
|
|
|
mFontSizeId = sFontSizeBtnsMap.get(id);//获取字号
|
|
|
|
|
mSharedPrefs.edit().putInt(PREFERENCE_FONT_SIZE, mFontSizeId).commit();//将共享设置中的字体进行修改
|
|
|
|
|
findViewById(sFontSelectorSelectionMap.get(mFontSizeId)).setVisibility(View.VISIBLE);//将字体设置设为可见
|
|
|
|
|
if (mWorkingNote.getCheckListMode() == TextNote.MODE_CHECK_LIST) {//如果workingNote模式为核对列表模式
|
|
|
|
|
getWorkingText();//.获取到正在编辑的文本
|
|
|
|
|
switchToListMode(mWorkingNote.getContent());//将便签内容显示切换到列表模式
|
|
|
|
|
} else {
|
|
|
|
|
mNoteEditor.setTextAppearance(this,
|
|
|
|
|
TextAppearanceResources.getTexAppearanceResource(mFontSizeId));//如果不是check模式,则设置文字编辑器中文字为相应字体大小
|
|
|
|
|
}
|
|
|
|
|
mFontSizeSelector.setVisibility(View.GONE);//最后将文字大小选择器设置为不可见
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void onBackPressed() {//点击返回键时的操作
|
|
|
|
|
if(clearSettingState()) {//如果无界面打开,则直接返回,否则关闭再返回
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
saveNote();//保存便签
|
|
|
|
|
super.onBackPressed();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private boolean clearSettingState() {//清除设置状态
|
|
|
|
|
if (mNoteBgColorSelector.getVisibility() == View.VISIBLE) {
|
|
|
|
|
mNoteBgColorSelector.setVisibility(View.GONE);//如果背景色选择器可见,设置为不可见
|
|
|
|
|
return true;
|
|
|
|
|
} else if (mFontSizeSelector.getVisibility() == View.VISIBLE) {
|
|
|
|
|
mFontSizeSelector.setVisibility(View.GONE);//如果文字大小选择器可见,则将其设置为不可见
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void onBackgroundColorChanged() {//背景颜色改变
|
|
|
|
|
findViewById(sBgSelectorSelectionMap.get(mWorkingNote.getBgColorId())).setVisibility(
|
|
|
|
|
View.VISIBLE);//通过workingnote对象中存储的背景色id,从预定义哈希表中找到对应项,设置为可见
|
|
|
|
|
mNoteEditorPanel.setBackgroundResource(mWorkingNote.getBgColorResId());//根据workingNote的背景颜色资源id,设置便签编辑器的背景资源
|
|
|
|
|
mHeadViewPanel.setBackgroundResource(mWorkingNote.getTitleBgResId());//将便签头的背景资源设置为标题的背景色
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public boolean onPrepareOptionsMenu(Menu menu) {//对选择菜单的准备
|
|
|
|
|
if (isFinishing()) {//如果窗口正在关闭,则不做处理
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
clearSettingState();//清除设置状态
|
|
|
|
|
menu.clear();//清除菜单项
|
|
|
|
|
if (mWorkingNote.getFolderId() == Notes.ID_CALL_RECORD_FOLDER) {//如果便签所在的文件夹为便签的通话记录文件夹
|
|
|
|
|
getMenuInflater().inflate(R.menu.call_note_edit, menu);//MenuInflater是用来实例化Menu目录下的Menu布局文件的
|
|
|
|
|
} else {
|
|
|
|
|
getMenuInflater().inflate(R.menu.note_edit, menu);//加载一个布局文件
|
|
|
|
|
}
|
|
|
|
|
if (mWorkingNote.getCheckListMode() == TextNote.MODE_CHECK_LIST) {//是否进入了清单模式,加载相应的菜单
|
|
|
|
|
menu.findItem(R.id.menu_list_mode).setTitle(R.string.menu_normal_mode);//将菜单中的菜单列表模式的标题设置为“离开选择列表”
|
|
|
|
|
} else {
|
|
|
|
|
menu.findItem(R.id.menu_list_mode).setTitle(R.string.menu_list_mode);//将菜单中的菜单列表模式的标题设置为“进入选择列表”
|
|
|
|
|
}
|
|
|
|
|
if (mWorkingNote.hasClockAlert()) {//如果便签有闹钟提醒
|
|
|
|
|
menu.findItem(R.id.menu_alert).setVisible(false);//将添加提醒的菜单选项设置为不可见
|
|
|
|
|
} else {//如果workingNote对象中没有时钟提醒事项,则把删除提醒的菜单选项设置为不可见
|
|
|
|
|
menu.findItem(R.id.menu_delete_remind).setVisible(false);
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public boolean onOptionsItemSelected(MenuItem item) {//处理菜单被选中后的时间处理
|
|
|
|
|
switch (item.getItemId()) {//获得项的id,根据菜单中不同的按钮设置不同的处理
|
|
|
|
|
case R.id.menu_new_note://创建新标签
|
|
|
|
|
createNewNote();
|
|
|
|
|
break;
|
|
|
|
|
case R.id.menu_delete://删除便签
|
|
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(this);//实例化提醒对话框
|
|
|
|
|
builder.setTitle(getString(R.string.alert_title_delete));//设置对话框的标题,“删除便签”
|
|
|
|
|
builder.setIcon(android.R.drawable.ic_dialog_alert);//设置对话框的图标
|
|
|
|
|
builder.setMessage(getString(R.string.alert_message_delete_note));//设置对话框消息内容“确认删除这个便签?”
|
|
|
|
|
builder.setPositiveButton(android.R.string.ok,
|
|
|
|
|
new DialogInterface.OnClickListener() {//设置确认按钮,并监听它是否被点击
|
|
|
|
|
public void onClick(DialogInterface dialog, int which) {//设置对话框的点击函数
|
|
|
|
|
deleteCurrentNote();//删除当前的便签
|
|
|
|
|
finish();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
builder.setNegativeButton(android.R.string.cancel, null);//显示对话框.设置取消按钮
|
|
|
|
|
builder.show();//显示提醒对话框
|
|
|
|
|
break;
|
|
|
|
|
case R.id.menu_font_size://菜单字体大小的设置
|
|
|
|
|
mFontSizeSelector.setVisibility(View.VISIBLE);//将字体的选择器置为可见
|
|
|
|
|
findViewById(sFontSelectorSelectionMap.get(mFontSizeId)).setVisibility(View.VISIBLE);//通过id找到相应字体的大小
|
|
|
|
|
break;
|
|
|
|
|
case R.id.menu_list_mode://列表的菜单模式
|
|
|
|
|
mWorkingNote.setCheckListMode(mWorkingNote.getCheckListMode() == 0 ?//设置清单模式,若当前为清单模式,则取消;否之则设为清单模式
|
|
|
|
|
TextNote.MODE_CHECK_LIST : 0);
|
|
|
|
|
break;
|
|
|
|
|
case R.id.menu_share://菜单共享
|
|
|
|
|
getWorkingText();//获取当前便签的文本
|
|
|
|
|
sendTo(this, mWorkingNote.getContent());//用sendto函数将运行文本发送到遍历的本文内
|
|
|
|
|
break;
|
|
|
|
|
case R.id.menu_send_to_desktop://发送到桌面
|
|
|
|
|
sendToDesktop();
|
|
|
|
|
break;
|
|
|
|
|
case R.id.menu_alert://创建菜单的提醒设置
|
|
|
|
|
setReminder();//删除菜单的提醒
|
|
|
|
|
break;
|
|
|
|
|
case R.id.menu_delete_remind://选择删除提醒
|
|
|
|
|
mWorkingNote.setAlertDate(0, false);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void setReminder() {//建立事件提醒器
|
|
|
|
|
DateTimePickerDialog d = new DateTimePickerDialog(this, System.currentTimeMillis());//建立修改时间日期的对话框
|
|
|
|
|
d.setOnDateTimeSetListener(new OnDateTimeSetListener() {//置日期时间设定的监听器
|
|
|
|
|
public void OnDateTimeSet(AlertDialog dialog, long date) {//设置日期提醒
|
|
|
|
|
mWorkingNote.setAlertDate(date , true);//设置提醒时间
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
d.show();//显示该控件
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Share note to apps that support {@link Intent#ACTION_SEND} action
|
|
|
|
|
* and {@text/plain} type
|
|
|
|
|
*/
|
|
|
|
|
private void sendTo(Context context, String info) {//该函数将字符串发送出去
|
|
|
|
|
Intent intent = new Intent(Intent.ACTION_SEND);//新建发送活动的传值对象
|
|
|
|
|
intent.putExtra(Intent.EXTRA_TEXT, info);//将需要传递的便签信息放入text文件中
|
|
|
|
|
intent.setType("text/plain");//编辑连接器的类型
|
|
|
|
|
context.startActivity(intent);//使用context启动intent对应的活动
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void createNewNote() {//创建新的便签
|
|
|
|
|
// Firstly, save current editing notes
|
|
|
|
|
saveNote();//保存已有便签
|
|
|
|
|
|
|
|
|
|
// For safety, start a new NoteEditActivity
|
|
|
|
|
finish();
|
|
|
|
|
Intent intent = new Intent(this, NoteEditActivity.class);//设置一个新的便签活动编辑器
|
|
|
|
|
intent.setAction(Intent.ACTION_INSERT_OR_EDIT);//将当前活动设置为插入或者编辑
|
|
|
|
|
intent.putExtra(Notes.INTENT_EXTRA_FOLDER_ID, mWorkingNote.getFolderId());//将运行便签的ID添加到Intent中
|
|
|
|
|
startActivity(intent);//开始activity并链接
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void deleteCurrentNote() {//删除当前的便签
|
|
|
|
|
if (mWorkingNote.existInDatabase()) {//判断便签是否在数据库中
|
|
|
|
|
HashSet<Long> ids = new HashSet<Long>();
|
|
|
|
|
long id = mWorkingNote.getNoteId();//获取当前便签的id
|
|
|
|
|
if (id != Notes.ID_ROOT_FOLDER) {//如果不是头文件夹建立一个hash表把便签id存起来
|
|
|
|
|
ids.add(id);
|
|
|
|
|
} else {//否则输出错误
|
|
|
|
|
Log.d(TAG, "Wrong note id, should not happen");
|
|
|
|
|
}
|
|
|
|
|
if (!isSyncMode()) {//在非同步模式情况下
|
|
|
|
|
if (!DataUtils.batchDeleteNotes(getContentResolver(), ids)) {//使用DataUtils的批量删除便签,将ids中的所有便签删除
|
|
|
|
|
Log.e(TAG, "Delete Note error");//删除操作
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
if (!DataUtils.batchMoveToFolder(getContentResolver(), ids, Notes.ID_TRASH_FOLER)) {//如果是同步模式,则将ids中的便签批量移动到“垃圾”文件夹。
|
|
|
|
|
Log.e(TAG, "Move notes to trash folder error, should not happens");//输出错误信息
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
mWorkingNote.markDeleted(true);//将该便签标记为已删除
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private boolean isSyncMode() {//判断是否为同步模式
|
|
|
|
|
return NotesPreferenceActivity.getSyncAccountName(this).trim().length() > 0;//返回同步的用户名长度,如果大于0则有同步状态,否则非同步
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void onClockAlertChanged(long date, boolean set) {//当提醒时间改变时执行该函数
|
|
|
|
|
/**
|
|
|
|
|
* User could set clock to an unsaved note, so before setting the
|
|
|
|
|
* alert clock, we should save the note first
|
|
|
|
|
*/
|
|
|
|
|
if (!mWorkingNote.existInDatabase()) {
|
|
|
|
|
saveNote();//若当前编辑的便签不在数据库中,则先保存便签
|
|
|
|
|
}
|
|
|
|
|
if (mWorkingNote.getNoteId() > 0) {//若当前编辑的便签的id>0
|
|
|
|
|
Intent intent = new Intent(this, AlarmReceiver.class);//新建一个intent,指向活动AlarmReceiver
|
|
|
|
|
intent.setData(ContentUris.withAppendedId(Notes.CONTENT_NOTE_URI, mWorkingNote.getNoteId()));//若有运行的便签就将便签的ID放置在URI中去
|
|
|
|
|
PendingIntent pendingIntent = PendingIntent.getBroadcast(this, 0, intent, 0);//设置延迟触发Intent
|
|
|
|
|
AlarmManager alarmManager = ((AlarmManager) getSystemService(ALARM_SERVICE));//获得闹钟服务
|
|
|
|
|
showAlertHeader();//设置提醒管理器
|
|
|
|
|
if(!set) {
|
|
|
|
|
alarmManager.cancel(pendingIntent);//如果没有确定设置提醒 ,则闹钟管理器取消该提醒
|
|
|
|
|
} else {
|
|
|
|
|
alarmManager.set(AlarmManager.RTC_WAKEUP, date, pendingIntent);//将提醒时间、pendingintent传入闹钟管理器,作为新的提醒事项
|
|
|
|
|
}
|
|
|
|
|
} else {//如果没有设置就报错
|
|
|
|
|
/**
|
|
|
|
|
* There is the condition that user has input nothing (the note is
|
|
|
|
|
* not worthy saving), we have no note id, remind the user that he
|
|
|
|
|
* should input something
|
|
|
|
|
*/
|
|
|
|
|
Log.e(TAG, "Clock alert setting error");//如果便签id不存在,输出error信息
|
|
|
|
|
showToast(R.string.error_note_empty_for_clock);//显示消息提示框,为未编辑的便签设置闹钟
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void onWidgetChanged() {
|
|
|
|
|
updateWidget();
|
|
|
|
|
}//当widget变化时,执行更新widget这个函数
|
|
|
|
|
|
|
|
|
|
public void onEditTextDelete(int index, String text) {//删除编辑的文本框所出发的事件
|
|
|
|
|
int childCount = mEditTextList.getChildCount();//获取EditText列表里EditText项的数量
|
|
|
|
|
if (childCount == 1) {
|
|
|
|
|
return;//如果EditText项数为1,不做操作,返回
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (int i = index + 1; i < childCount; i++) {//修改删除文本之后的Index
|
|
|
|
|
((NoteEditText) mEditTextList.getChildAt(i).findViewById(R.id.et_edit_text))//通过id把编辑框存在便签编辑框中
|
|
|
|
|
.setIndex(i - 1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
mEditTextList.removeViewAt(index);//移除特定位置的视图
|
|
|
|
|
NoteEditText edit = null;
|
|
|
|
|
if(index == 0) {////如果index为0,则将edit定位到第一个EditText项
|
|
|
|
|
edit = (NoteEditText) mEditTextList.getChildAt(0).findViewById(
|
|
|
|
|
R.id.et_edit_text);
|
|
|
|
|
} else {//通过id把编辑框存在空的NoteEditText中
|
|
|
|
|
edit = (NoteEditText) mEditTextList.getChildAt(index - 1).findViewById(
|
|
|
|
|
R.id.et_edit_text);
|
|
|
|
|
}
|
|
|
|
|
int length = edit.length();//获取edit的长度
|
|
|
|
|
edit.append(text);//将后面的文本加入到edit中
|
|
|
|
|
edit.requestFocus();//请求优先完成该此编辑
|
|
|
|
|
edit.setSelection(length);//定位到length位置处的条目
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void onEditTextEnter(int index, String text) {//进入编辑文本框所触发的事件
|
|
|
|
|
/**
|
|
|
|
|
* Should not happen, check for debug
|
|
|
|
|
*/
|
|
|
|
|
if(index > mEditTextList.getChildCount()) {//如果越界就报错
|
|
|
|
|
Log.e(TAG, "Index out of mEditTextList boundrary, should not happen");//输出错误信息,“不可能发生”
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
View view = getListItem(text, index);//根据文本和index获取到列表项的view
|
|
|
|
|
mEditTextList.addView(view, index);//添加当前项的视图
|
|
|
|
|
NoteEditText edit = (NoteEditText) view.findViewById(R.id.et_edit_text);//建立一个新的视图并添加到编辑文本框内
|
|
|
|
|
edit.requestFocus();//请求优先操作
|
|
|
|
|
edit.setSelection(0);//设置选择地点
|
|
|
|
|
for (int i = index + 1; i < mEditTextList.getChildCount(); i++) {//遍历子文本框并设置对应对下标
|
|
|
|
|
((NoteEditText) mEditTextList.getChildAt(i).findViewById(R.id.et_edit_text))
|
|
|
|
|
.setIndex(i);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void switchToListMode(String text) {//切换至列表模式
|
|
|
|
|
mEditTextList.removeAllViews();//移除所有子视图
|
|
|
|
|
String[] items = text.split("\n");//根据换行符分割字符串
|
|
|
|
|
int index = 0;//清空所有视图,初始化下标
|
|
|
|
|
for (String item : items) {//遍历所有文本单元并添加到文本列表中
|
|
|
|
|
if(!TextUtils.isEmpty(item)) {//如果item不是空的
|
|
|
|
|
mEditTextList.addView(getListItem(item, index));//添加新的视图
|
|
|
|
|
index++;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
mEditTextList.addView(getListItem("", index));//添加最后一行的相关标签
|
|
|
|
|
mEditTextList.getChildAt(index).findViewById(R.id.et_edit_text).requestFocus();//获取当前列表项焦点
|
|
|
|
|
|
|
|
|
|
mNoteEditor.setVisibility(View.GONE);//便签编辑器不可见
|
|
|
|
|
mEditTextList.setVisibility(View.VISIBLE);//将文本编辑框置为可见
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private Spannable getHighlightQueryResult(String fullText, String userQuery) {//获取高亮效果的反馈情况
|
|
|
|
|
SpannableString spannable = new SpannableString(fullText == null ? "" : fullText);//新建一个效果选项
|
|
|
|
|
if (!TextUtils.isEmpty(userQuery)) {//如果搜索结果不为空
|
|
|
|
|
mPattern = Pattern.compile(userQuery);//将用户的请求编译为正则表达式
|
|
|
|
|
Matcher m = mPattern.matcher(fullText);//建立一个状态机检查pattern并进行匹配
|
|
|
|
|
int start = 0;//初始化start
|
|
|
|
|
while (m.find(start)) {//将匹配到的内容设置为高亮
|
|
|
|
|
spannable.setSpan(//设置背景颜色
|
|
|
|
|
new BackgroundColorSpan(this.getResources().getColor(//将目标设置为高亮
|
|
|
|
|
R.color.user_query_highlight)), m.start(), m.end(),//更新起始位置
|
|
|
|
|
Spannable.SPAN_INCLUSIVE_EXCLUSIVE);
|
|
|
|
|
start = m.end();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return spannable;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private View getListItem(String item, int index) {//获取列表项
|
|
|
|
|
View view = LayoutInflater.from(this).inflate(R.layout.note_edit_list_item, null);//获取便签编辑列表项的布局
|
|
|
|
|
final NoteEditText edit = (NoteEditText) view.findViewById(R.id.et_edit_text);//获得编辑文本
|
|
|
|
|
edit.setTextAppearance(this, TextAppearanceResources.getTexAppearanceResource(mFontSizeId));//创建一个文本编辑框并置为可见
|
|
|
|
|
CheckBox cb = ((CheckBox) view.findViewById(R.id.cb_edit_item));//建立一个打钩框并设置监听器
|
|
|
|
|
cb.setOnCheckedChangeListener(new OnCheckedChangeListener() {//设置监听判断是否已标识
|
|
|
|
|
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {//如果CheckBox已勾选
|
|
|
|
|
if (isChecked) {//如果已经被标记
|
|
|
|
|
edit.setPaintFlags(edit.getPaintFlags() | Paint.STRIKE_THRU_TEXT_FLAG);//设置中划线
|
|
|
|
|
} else {//未被标记
|
|
|
|
|
edit.setPaintFlags(Paint.ANTI_ALIAS_FLAG | Paint.DEV_KERN_TEXT_FLAG);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
if (item.startsWith(TAG_CHECKED)) {//判断是否勾选
|
|
|
|
|
cb.setChecked(true);//选择框设置为true
|
|
|
|
|
edit.setPaintFlags(edit.getPaintFlags() | Paint.STRIKE_THRU_TEXT_FLAG);
|
|
|
|
|
item = item.substring(TAG_CHECKED.length(), item.length()).trim();//去掉TAG_CHECKED和空格
|
|
|
|
|
} else if (item.startsWith(TAG_UNCHECKED)) {//选择不勾选
|
|
|
|
|
cb.setChecked(false);//设置为false
|
|
|
|
|
edit.setPaintFlags(Paint.ANTI_ALIAS_FLAG | Paint.DEV_KERN_TEXT_FLAG);//绘画
|
|
|
|
|
item = item.substring(TAG_UNCHECKED.length(), item.length()).trim();//去掉unchecked与空格
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
edit.setOnTextViewChangeListener(this);//监听文本视图的变化
|
|
|
|
|
edit.setIndex(index);//运行编辑框的监听器对该行为作出反应,并设置下标及文本内容
|
|
|
|
|
edit.setText(getHighlightQueryResult(item, mUserQuery));//设置用户输入为高亮
|
|
|
|
|
return view;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void onTextChange(int index, boolean hasText) {//便签内容发生改变
|
|
|
|
|
if (index >= mEditTextList.getChildCount()) {//index超出EditText列表项数
|
|
|
|
|
Log.e(TAG, "Wrong index, should not happen");//输出错误信息
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if(hasText) {//内容不为空
|
|
|
|
|
mEditTextList.getChildAt(index).findViewById(R.id.cb_edit_item).setVisibility(View.VISIBLE);//将其子编辑框可见性置为可见
|
|
|
|
|
} else {//否则不可见
|
|
|
|
|
mEditTextList.getChildAt(index).findViewById(R.id.cb_edit_item).setVisibility(View.GONE);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void onCheckListModeChanged(int oldMode, int newMode) {//检查模式和列表模式的切换
|
|
|
|
|
if (newMode == TextNote.MODE_CHECK_LIST) {//如果新模式为列表模式
|
|
|
|
|
switchToListMode(mNoteEditor.getText().toString());//检查模式切换到列表模式
|
|
|
|
|
} else {
|
|
|
|
|
if (!getWorkingText()) {//如果未获取到workingText
|
|
|
|
|
mWorkingNote.setWorkingText(mWorkingNote.getContent().replace(TAG_UNCHECKED + " ",
|
|
|
|
|
""));//设置工作文本
|
|
|
|
|
}
|
|
|
|
|
mNoteEditor.setText(getHighlightQueryResult(mWorkingNote.getContent(), mUserQuery));//设置高亮文本
|
|
|
|
|
mEditTextList.setVisibility(View.GONE);//便签文本列表设置为不可见
|
|
|
|
|
mNoteEditor.setVisibility(View.VISIBLE);//便签编辑器设置为可见
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private boolean getWorkingText() {//得到工作文本
|
|
|
|
|
boolean hasChecked = false;//初始化check的标记
|
|
|
|
|
if (mWorkingNote.getCheckListMode() == TextNote.MODE_CHECK_LIST) {//判断是否是清单模式
|
|
|
|
|
StringBuilder sb = new StringBuilder();//创建可变字符串
|
|
|
|
|
for (int i = 0; i < mEditTextList.getChildCount(); i++) {//for循环遍历EditTextList的项
|
|
|
|
|
View view = mEditTextList.getChildAt(i);//获取当前文本编辑列表的第i项
|
|
|
|
|
NoteEditText edit = (NoteEditText) view.findViewById(R.id.et_edit_text);//获得文本编辑框
|
|
|
|
|
if (!TextUtils.isEmpty(edit.getText())) {//若文本不为空
|
|
|
|
|
if (((CheckBox) view.findViewById(R.id.cb_edit_item)).isChecked()) {
|
|
|
|
|
sb.append(TAG_CHECKED).append(" ").append(edit.getText()).append("\n");//扩展字符串为已打钩并把标记置true
|
|
|
|
|
hasChecked = true;
|
|
|
|
|
} else {//如果未被勾选
|
|
|
|
|
sb.append(TAG_UNCHECKED).append(" ").append(edit.getText()).append("\n");//扩展字符串并且添加为未打勾
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
mWorkingNote.setWorkingText(sb.toString());//利用编辑好的字符串设置运行便签的内容
|
|
|
|
|
} else {
|
|
|
|
|
mWorkingNote.setWorkingText(mNoteEditor.getText().toString());//用编辑器中的内容设置运行中标签的内容
|
|
|
|
|
}
|
|
|
|
|
return hasChecked;//返回便签是否已标记
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private boolean saveNote() {//保存便签
|
|
|
|
|
getWorkingText();//获取到当前编辑便签的文本
|
|
|
|
|
boolean saved = mWorkingNote.saveNote();//获取工作文本后保存内容
|
|
|
|
|
if (saved) {//如果已保存
|
|
|
|
|
/**
|
|
|
|
|
* There are two modes from List view to edit view, open one note,
|
|
|
|
|
* create/edit a node. Opening node requires to the original
|
|
|
|
|
* position in the list when back from edit view, while creating a
|
|
|
|
|
* new node requires to the top of the list. This code
|
|
|
|
|
* {@link #RESULT_OK} is used to identify the create/edit state
|
|
|
|
|
*/
|
|
|
|
|
setResult(RESULT_OK);//代表是通过编辑的方式打开便签,而非新建便签
|
|
|
|
|
}
|
|
|
|
|
return saved;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void sendToDesktop() {//将便签发送至桌面
|
|
|
|
|
/**
|
|
|
|
|
* Before send message to home, we should make sure that current
|
|
|
|
|
* editing note is exists in databases. So, for new note, firstly
|
|
|
|
|
* save it
|
|
|
|
|
*/
|
|
|
|
|
if (!mWorkingNote.existInDatabase()) {//若便签不存在数据库中
|
|
|
|
|
saveNote();//保存此新建的便签
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (mWorkingNote.getNoteId() > 0) {//若是有内容
|
|
|
|
|
Intent sender = new Intent();//新建传递对象
|
|
|
|
|
Intent shortcutIntent = new Intent(this, NoteEditActivity.class);//从当前活动跳转到编辑便签页面NoteEditActivity
|
|
|
|
|
shortcutIntent.setAction(Intent.ACTION_VIEW);//链接内容为一个视图
|
|
|
|
|
shortcutIntent.putExtra(Intent.EXTRA_UID, mWorkingNote.getNoteId());//将便签的相关信息都添加到要发送的文件里
|
|
|
|
|
sender.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent);//将shortcut的图标标题存入sender中
|
|
|
|
|
sender.putExtra(Intent.EXTRA_SHORTCUT_NAME,
|
|
|
|
|
makeShortcutIconTitle(mWorkingNote.getContent()));//设置图标
|
|
|
|
|
sender.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE,
|
|
|
|
|
Intent.ShortcutIconResource.fromContext(this, R.drawable.icon_app));//将便签的相关信息都添加到要发送的文件里
|
|
|
|
|
sender.putExtra("duplicate", true);
|
|
|
|
|
sender.setAction("com.android.launcher.action.INSTALL_SHORTCUT");//设置sneder的行为是发送
|
|
|
|
|
showToast(R.string.info_note_enter_desktop);//显示消息提示框,表示文本已经增加到home中
|
|
|
|
|
sendBroadcast(sender);//显示到桌面
|
|
|
|
|
} else {//如果便签的id错误,则保存提醒用户
|
|
|
|
|
/**
|
|
|
|
|
* There is the condition that user has input nothing (the note is
|
|
|
|
|
* not worthy saving), we have no note id, remind the user that he
|
|
|
|
|
* should input something
|
|
|
|
|
*/
|
|
|
|
|
Log.e(TAG, "Send to desktop error");//空便签直接报错
|
|
|
|
|
showToast(R.string.error_note_empty_for_send_to_desktop);//展示toast报错消息,提示不能发送一个空便签到桌面
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private String makeShortcutIconTitle(String content) {//生成快捷方式的图标标题
|
|
|
|
|
content = content.replace(TAG_CHECKED, "");//编辑小图标的标题
|
|
|
|
|
content = content.replace(TAG_UNCHECKED, "");
|
|
|
|
|
return content.length() > SHORTCUT_ICON_TITLE_MAX_LEN ? content.substring(0,
|
|
|
|
|
SHORTCUT_ICON_TITLE_MAX_LEN) : content;//直接设置为content中的内容并返回,有勾选和未勾选2种
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void showToast(int resId) {
|
|
|
|
|
showToast(resId, Toast.LENGTH_SHORT);
|
|
|
|
|
}//显示提示的视图
|
|
|
|
|
|
|
|
|
|
private void showToast(int resId, int duration) {//持续显示提示的视图
|
|
|
|
|
Toast.makeText(this, resId, duration).show();//设置toast消息的文本内容
|
|
|
|
|
}
|
|
|
|
|
}
|