我有一个以
恢复的活动@Override
protected void onResume() {
Log.v(TAG, " onResume() disables the OK button");
// onAuthentificated will re-enable it
findViewById(android.R.id.button1).setEnabled(false);
super.onResume();
}
稍后,验证成功,我的回调称为
@Override
public void onAuthenticated(String username) {
Log.v(TAG, "user can press button");
findViewById(android.R.id.button1).setEnabled(true);
super.onAuthenticated(username);
}
我知道最后会调用setEnabled(true)
。
我的问题是该按钮仍然显示为灰色。发生了什么以及我该如何解决这个问题?
布局(但它没有帮助)
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
style="@style/VerticalLayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<!-- other stuff -->
<Button
android:id="@android:id/button1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:text="@android:string/ok" />
</LinearLayout>
以下是logcat的最后一行
08-30 13:00:45.182: V/ReportActivity(344): onResume() disables the OK button
8-30 13:00:45.382: I/ReportActivity(344): Authentification token callback
08-30 13:00:45.477: D/dalvikvm(344): GC_CONCURRENT freed 324K, 5% free 9960K/10375K, paused 2ms+3ms
08-30 13:00:45.567: D/NetworkService(344): Broadcast the fact user is authenticated
08-30 13:00:45.567: D/ReportActivity(344): user can press button
答案 0 :(得分:0)
解决方案是将findViewById(android.R.id.button1)
的结果存储在由onResume()
方法初始化的字段中。