使用后退按钮和
返回活动时startActivity(new Intent(this, ActivityMainMenu.class));
调用,是否有任何方法可以自动转到自定义视图?
我注意到,当回到视图时,它不再是无效的。
基本上没有使用活动的onResume我希望能够恢复我的自定义视图。
答案 0 :(得分:1)
对于任何想知道你可以使用的人:
protected void onAttachedToWindow()
每次将视图附加到窗口时都会调用它。
答案 1 :(得分:0)
在Android Source for TextView中,post
为Runnable
。
if (ss.error != null) {
final CharSequence error = ss.error;
// Display the error later, after the first layout pass
post(new Runnable() {
public void run() {
setError(error);
}
});
}