本文整理汇总了Java中android.widget.CheckBox.toggle方法的典型用法代码示例。如果您正苦于以下问题:Java CheckBox.toggle方法的具体用法?Java CheckBox.toggle怎么用?Java CheckBox.toggle使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类android.widget.CheckBox
的用法示例。
在下文中一共展示了CheckBox.toggle方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getView
import android.widget.CheckBox; //导入方法依赖的package包/类
/**
* Gets View of Habit Event checks
* @param position
* @param convertView
* @param parent
* @return
*/
@NonNull
@Override
public View getView(int position, @Nullable View convertView, @NonNull ViewGroup parent) {
// Inflating from xml
LayoutInflater inflater = LayoutInflater.from(getContext());
final View custom = inflater.inflate(R.layout.myfeed_list_view, parent, false);
HabitEvent habitEvent = getItem(position);
((TextView) custom.findViewById(R.id.habit)).setText(habitEvent.getTitle());
((TextView) custom.findViewById(R.id.comment)).setText(habitEvent.getComment());
CheckBox picCheck = (CheckBox) custom.findViewById(R.id.pic_check);
if(habitEvent.hasPicture()){
picCheck.toggle();
}
picCheck.setClickable(Boolean.FALSE);
CheckBox locCheck = (CheckBox) custom.findViewById(R.id.loc_check);
if(habitEvent.hasLocation()){
locCheck.toggle();
}
locCheck.setClickable(Boolean.FALSE);
final int fpos = position;
(custom.findViewById(R.id.outer)).setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent intent = new Intent(getContext(), ViewHabitEventActivity.class);
intent.putExtra("event_position", fpos);
((Activity) getContext()).startActivityForResult(intent, FeedTabActivity.VIEWING);
}
});
return custom;
}