Android中NotePad学习

匿名 (未验证) 提交于 2019-12-03 00:34:01

NotePad

获取Note创建时的系统时间(最终修改时间),并对时间的显示格式进行统一化要求,以列表的形式将Note的标题,图标和所获取的创建时间显示出来,
代码:

添加显示时间的TextView     <TextView         android:id="@+id/text1_time"         android:layout_width="match_parent"         android:layout_height="wrap_content"         android:textAppearance="?android:attr/textAppearanceSmall"         android:paddingLeft="5dip"         android:textColor="@color/colorBlack"/>

效果如下图:

从数据库中获取搜索结果,实现Note的标题搜索功能,
代码:

<item     android:id="@+id/menu_search"     android:title="@string/menu_search"     android:icon="@android:drawable/ic_search_category_default"     android:showAsAction="always"> </item>

效果如下:

笔记背景颜色选择功能,使用自定义Dialog,在自定义Dialog中展示不同的颜色,并对展示的颜色进行设置ClickListener,当受到某种颜色点击响应后,背景颜色将会改变成所选择的笔记的颜色,背景颜色将会以SharesdPreferenced的方式进行保存。再次进入是会显示上次保存的背景色,使用户可以选择自己喜欢的风格来编辑Note。
代码:

//读取颜色数据
int x = mCursor.getInt(mCursor.getColumnIndex(NotePad.Notes.COLUMN_NAME_BACK_COLOR));
switch (x){
case NotePad.Notes.DEFAULT_COLOR:
mText.setBackgroundColor(Color.rgb(255, 255, 255));
break;
case NotePad.Notes.YELLOW_COLOR:
mText.setBackgroundColor(Color.rgb(247, 216, 133));
break;
case NotePad.Notes.Gray_COLOR:
mText.setBackgroundColor(Color.rgb(165, 202, 237));
break;
case NotePad.Notes.Red_COLOR:
mText.setBackgroundColor(Color.rgb(161, 214, 174));
break;
case NotePad.Notes.RED_COLOR:
mText.setBackgroundColor(Color.rgb(244, 149, 133));
break;
default:
mText.setBackgroundColor(Color.rgb(255, 255, 255));
break;
}

效果截图:

添加了输出文件的功能,可以将Note文件提取出来,效果展示:

到此结束~

转载请标明出处:Android中NotePad学习
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!