当前位置: 首页>>代码示例>>Java>>正文


Java CheckedTextView.setBackgroundColor方法代码示例

本文整理汇总了Java中android.widget.CheckedTextView.setBackgroundColor方法的典型用法代码示例。如果您正苦于以下问题:Java CheckedTextView.setBackgroundColor方法的具体用法?Java CheckedTextView.setBackgroundColor怎么用?Java CheckedTextView.setBackgroundColor使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在android.widget.CheckedTextView的用法示例。


在下文中一共展示了CheckedTextView.setBackgroundColor方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getView

import android.widget.CheckedTextView; //导入方法依赖的package包/类
@Override
public View getView(int position, View convertView, ViewGroup parent) {
	View view;
	if (convertView == null) {
		view = LayoutInflater.from(context).inflate(R.layout.single_tasque_row, null);
	} else {
		view = convertView;
	}
	if (data.moveToPosition(position)) {
		CheckedTextView title = (CheckedTextView) view.findViewById(R.id.single_tasque_row_checked_title);
		if (forDelete.get(position)) {
			title.setBackgroundColor(selected_color);
		} else {
			title.setBackgroundColor(deselected_color);
		}
		Utility.applyFontSize(title);
		title.setText(data.getString(data.getColumnIndex(Categories.NAME)));
		title.setTag(data.getString(data.getColumnIndex(Categories.ID)));
		title.setChecked(checked.get(position));
	}
	return view;
}
 
开发者ID:bhm,项目名称:Tasque-for-Android,代码行数:23,代码来源:TasqueRTMCategoryAdapter.java

示例2: initUi

import android.widget.CheckedTextView; //导入方法依赖的package包/类
private void initUi() {
    followCheckedText = new CheckedTextView(getActivity());
    try {
        followCheckedText.setBackgroundColor(getActivity().getResources().getColor(android.R.color.white));
    } catch (Throwable t) {
        Log.w(TAG, t);
    }
    followCheckedText.setChecked(true);
    int dp_10 = com.mob.tools.utils.R.dipToPx(getActivity(), 10);
    followCheckedText.setCompoundDrawablePadding(dp_10);
    followCheckedText.setCompoundDrawablesWithIntrinsicBounds(R.drawable.bg_checkbox, 0, 0, 0);
    followCheckedText.setGravity(Gravity.CENTER_VERTICAL);
    followCheckedText.setPadding(dp_10, dp_10, dp_10, dp_10);
    followCheckedText.setText(R.string.follow_us);
    followCheckedText.setTextColor(0xff909090);
    LinearLayout.LayoutParams lp = new LinearLayout.LayoutParams(
            ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT);
    followCheckedText.setLayoutParams(lp);
    LinearLayout llBody = (LinearLayout) getBodyView().getChildAt(0);
    llBody.addView(followCheckedText);
    followCheckedText.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            CheckedTextView ctv = (CheckedTextView) v;
            ctv.setChecked(!ctv.isChecked());
        }
    });

    followCheckedText.measure(0, 0);
    int height = followCheckedText.getMeasuredHeight();
    TranslateAnimation animShow = new TranslateAnimation(
            Animation.RELATIVE_TO_SELF, 0,
            Animation.RELATIVE_TO_SELF, 0,
            Animation.ABSOLUTE, height,
            Animation.ABSOLUTE, 0);
    animShow.setDuration(1000);
    getWebBody().startAnimation(animShow);
    followCheckedText.startAnimation(animShow);
}
 
开发者ID:ourbeehive,项目名称:AndPlug,代码行数:40,代码来源:ShareSDKAuthorizeAdapter.java


注:本文中的android.widget.CheckedTextView.setBackgroundColor方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。