本文整理了Java中android.widget.TextView.setSaveEnabled()
方法的一些代码示例,展示了TextView.setSaveEnabled()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。TextView.setSaveEnabled()
方法的具体详情如下:
包路径:android.widget.TextView
类名称:TextView
方法名:setSaveEnabled
暂无
代码示例来源:origin: THEONE10211024/ApiDemos
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View v = inflater.inflate(R.layout.labeled_text_edit, container, false);
View tv = v.findViewById(R.id.msg);
((TextView)tv).setText("The TextView saves and restores this text.");
// Retrieve the text editor and tell it to save and restore its state.
// Note that you will often set this in the layout XML, but since
// we are sharing our layout with the other fragment we will customize
// it here.
((TextView)v.findViewById(R.id.saved)).setSaveEnabled(true);
return v;
}
}
代码示例来源:origin: qiubiteme/android_api_demos
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View v = inflater.inflate(R.layout.labeled_text_edit, container, false);
View tv = v.findViewById(R.id.msg);
((TextView)tv).setText("The TextView saves and restores this text.");
// Retrieve the text editor and tell it to save and restore its state.
// Note that you will often set this in the layout XML, but since
// we are sharing our layout with the other fragment we will customize
// it here.
((TextView)v.findViewById(R.id.saved)).setSaveEnabled(true);
return v;
}
}
内容来源于网络,如有侵权,请联系作者删除!