0

我有一个 Activity 恢复

@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
4

1 回答 1

0

解决方案是将结果存储在findViewById(android.R.id.button1)由该onResume()方法初始化的字段中。

于 2012-08-31T00:39:03.980 回答