You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mim/NotesListItem.java

135 lines
5.9 KiB

3 months ago
/*
* 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;
import android.content.Context;
import android.text.format.DateUtils;
import android.view.View;
import android.widget.CheckBox;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.TextView;
import net.micode.notes.R;
import net.micode.notes.data.Notes;
import net.micode.notes.tool.DataUtils;
import net.micode.notes.tool.ResourceParser.NoteItemBgResources;
1 month ago
//创建便签列表项目选项
3 months ago
public class NotesListItem extends LinearLayout {
1 month ago
private ImageView mAlert;//闹钟图片
private TextView mTitle;//标题
private TextView mTime;//时间
private TextView mCallName;//名称
private NoteItemData mItemData;//标签数据
private CheckBox mCheckBox;
3 months ago
1 month ago
/*
*/
3 months ago
public NotesListItem(Context context) {
1 month ago
super(context);//调整调用父类构造函数的顺序
inflate(context, R.layout.note_item, this);//将一个xml中定义的布局控件找出来这里的xml是R.layout
//findViewById用于从contentView中查找指定ID的View转换出来的形式根据需要而定
3 months ago
mAlert = (ImageView) findViewById(R.id.iv_alert_icon);
mTitle = (TextView) findViewById(R.id.tv_title);
mTime = (TextView) findViewById(R.id.tv_time);
mCallName = (TextView) findViewById(R.id.tv_name);
mCheckBox = (CheckBox) findViewById(android.R.id.checkbox);
}
1 month ago
//根据data的属性对各个控件的属性的控制主要是可见性Visibility内容setText格式setTextAppearance
3 months ago
public void bind(Context context, NoteItemData data, boolean choiceMode, boolean checked) {
if (choiceMode && data.getType() == Notes.TYPE_NOTE) {
1 month ago
mCheckBox.setVisibility(View.VISIBLE);//设置可见行为可见
mCheckBox.setChecked(checked);//格子打勾
3 months ago
} else {
mCheckBox.setVisibility(View.GONE);
}
mItemData = data;
1 month ago
//设置控件属性共三种情况由data的id和父id是否与保存到文件夹的id一致来决定
3 months ago
if (data.getId() == Notes.ID_CALL_RECORD_FOLDER) {
mCallName.setVisibility(View.GONE);
mAlert.setVisibility(View.VISIBLE);
1 month ago
//设置该textview的style
3 months ago
mTitle.setTextAppearance(context, R.style.TextAppearancePrimaryItem);
1 month ago
//settext为设置内容
3 months ago
mTitle.setText(context.getString(R.string.call_record_folder_name)
+ context.getString(R.string.format_folder_files_count, data.getNotesCount()));
mAlert.setImageResource(R.drawable.call_record);
} else if (data.getParentId() == Notes.ID_CALL_RECORD_FOLDER) {
mCallName.setVisibility(View.VISIBLE);
mCallName.setText(data.getCallName());
mTitle.setTextAppearance(context,R.style.TextAppearanceSecondaryItem);
mTitle.setText(DataUtils.getFormattedSnippet(data.getSnippet()));
1 month ago
//关于闹钟的设置
3 months ago
if (data.hasAlert()) {
1 month ago
mAlert.setImageResource(R.drawable.clock);//图片来源的设置
3 months ago
mAlert.setVisibility(View.VISIBLE);
} else {
mAlert.setVisibility(View.GONE);
}
} else {
mCallName.setVisibility(View.GONE);
mTitle.setTextAppearance(context, R.style.TextAppearancePrimaryItem);
1 month ago
//设置title格式
3 months ago
if (data.getType() == Notes.TYPE_FOLDER) {
mTitle.setText(data.getSnippet()
+ context.getString(R.string.format_folder_files_count,
data.getNotesCount()));
mAlert.setVisibility(View.GONE);
} else {
mTitle.setText(DataUtils.getFormattedSnippet(data.getSnippet()));
if (data.hasAlert()) {
1 month ago
mAlert.setImageResource(R.drawable.clock);//设置图片来源
3 months ago
mAlert.setVisibility(View.VISIBLE);
} else {
mAlert.setVisibility(View.GONE);
}
}
}
1 month ago
//设置内容获取相关时间从data里编辑的日期中获取
3 months ago
mTime.setText(DateUtils.getRelativeTimeSpanString(data.getModifiedDate()));
setBackground(data);
}
1 month ago
//根据data的文件属性来设置背景
3 months ago
private void setBackground(NoteItemData data) {
int id = data.getBgColorId();
1 month ago
//若是note型文件则有4种情况对于这4中不同情况的背景来源
3 months ago
if (data.getType() == Notes.TYPE_NOTE) {
1 month ago
//单个数据并且只有一个子文件夹
3 months ago
if (data.isSingle() || data.isOneFollowingFolder()) {
setBackgroundResource(NoteItemBgResources.getNoteBgSingleRes(id));
1 month ago
} else if (data.isLast()) {//是最后一个数据
3 months ago
setBackgroundResource(NoteItemBgResources.getNoteBgLastRes(id));
1 month ago
} else if (data.isFirst() || data.isMultiFollowingFolder()) {//是一个数据并由多个子文件夹
3 months ago
setBackgroundResource(NoteItemBgResources.getNoteBgFirstRes(id));
} else {
setBackgroundResource(NoteItemBgResources.getNoteBgNormalRes(id));
}
} else {
1 month ago
//若不是note直接调用文件夹的背景来源
3 months ago
setBackgroundResource(NoteItemBgResources.getFolderBgRes());
}
}
public NoteItemData getItemData() {
return mItemData;
}
}