`
bashenmail
  • 浏览: 230411 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

改写Preference

阅读更多

代码如下:

import android.content.Context;
import android.preference.Preference;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.RatingBar;
import android.widget.TextView;

import com.tcad.marketassistant.R;

public class CommentsPreference extends Preference {

	private LayoutInflater inflater;
	
	private String rating;
	
	private String author;
	
	private String date;
	
	private String content;
	
	public CommentsPreference(Context context) {
		super(context);
	
		inflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
	}

	@Override
	protected View onCreateView(ViewGroup parent) {
		
		View v = inflater.inflate(R.layout.comments, null);
		
		RatingBar r = (RatingBar)v.findViewById(R.id.com_rating);
		
		TextView a = (TextView)v.findViewById(R.id.com_author);
		
		TextView d = (TextView)v.findViewById(R.id.com_date);
		
		TextView c = (TextView)v.findViewById(R.id.com_content);
		
		if(rating!=null){
			
			r.setRating(Float.parseFloat(rating));
		}
		if(author!=null){
			
			a.setText(author);
		}
		if(date!=null){
			
			d.setText(date);
		}
		if(content!=null){
			
			c.setText(content);
		}
		return v;
	}

	public void setRaingAuthorDateContent(String rating,String author,String date,String content){
		
		this.rating = rating;
		
		this.author = author;
		
		this.date = date;
		
		this.content = content;
		
	}
}

  需要注意的是在onCreateView而不是onBindView中

分享到:
评论

相关推荐

    Collaborative-Filtering-recommendation:电影评估推荐系统

    改写: 包含文件RewriteCF.py;用numpy等库重写了一遍Phase2EC的算法;算法思想一致,稍微提高了一些性能 阶段3阶段: 包含文件Phase3.py;在Rewrite的基础上进一步延伸;不是取基于用户或项目的协同过滤算法的算术...

    Cordova-Plugin-QuickFile:用于Cordova,PhoneGap项目,配合最新file插件简化文件操作

    但是GapFile只能通过设置preference( )来设置存储路径,很不方便。所以改写了gapfile用法因为整个插件只有一个js文件,所以使用时将quickfile.js复制到www/js目录即可。需要在在index.html中手动引用该文件。添加...

    高中英语单词-乱序版本.docx

    - **preference**: 对某事物的偏好或优先选择。 - **beneath**: 介词,表示在下方的位置。 - **currency**: 货币或流通的通货。 - **warmth**: 温暖,可以指温度、情感的热情或激动。 - **adapt**: 适应环境或...

    MYQQ2009 - 用控制台上QQ

    2. (--a)%b可能为负数,原来没注意到,引发了改写mcb的内存错误。 3. 发包序号策略改善,不再每次发包都递增。 Version 1.9 (2008-7-15) New features: 1. 重新策划程序,采用QQ2008贺岁版协议。 2. 原来的group...

    MyQQ(DosQQ) 超小的精简QQ DEV-C++ 源码

    2. (--a)%b可能为负数,原来没注意到,引发了改写mcb的内存错误。 3. 发包序号策略改善,不再每次发包都递增。 Version 1.9 (2008-7-15) New features: 1. 重新策划程序,采用QQ2008贺岁版协议。 2. 原来的group...

    四级高频词汇

    - **例句**:Adjust the settings according to your preference. ##### 28. admit of - **释义**:……的可能,留有的余地 - **例句**:The situation admits of no further delay. ##### 29. in advance - **...

    英语六级考试完形填空必须掌握的重要短语

    - Adjust the settings according to your preference. - He needed to adjust his schedule to accommodate the new project. #### 31. have an advantage over - **含义**:在…方面占优势。 - **例句**: - ...

Global site tag (gtag.js) - Google Analytics