获取菜单项以进行动画处理

时间:2012-04-13 00:29:46

标签: android menu android-actionbar actionbarsherlock

我正在尝试在我的ActionBar(实际上是ActionBarSherlock)中加载活动的同时为菜单项设置动画。我在第一次创建活动时使用的代码,但是每次再次调用活动时,我都会在“loadingItem”上获得NullReference异常,因为onCreateOptionsMenu之后会调用onCreate。我尝试使用onPrepareOptionsMenu但同样的事情。

public class MyActivity extends SherlockActivity  {
    private MenuItem loadingItem;

    @Override
    public void onCreate(final Bundle icicle) 
    {
        final LayoutInflater inflater = (LayoutInflater)getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        final ImageView ivRefresh = (ImageView)inflater.inflate(R.layout.refresh_view, null);

        final Animation rotation = AnimationUtils.loadAnimation(this, R.anim.refresh);
        ivRefresh.startAnimation(rotation);
        loadingItem.setActionView(ivRefresh);
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        getSupportMenuInflater().inflate(R.menu.my_menu, menu);
        loadingItem = menu.findItem(R.id.loading);
        return super.onCreateOptionsMenu(menu);
    }
}

my_menu.xml

<?xml version="1.0" encoding="UTF-8"?>

<menu xmlns:android="http://schemas.android.com/apk/res/android">

    <item android:id="@+id/loading" 
          android:icon="@drawable/loading"
          android:showAsAction="always"          
    />

</menu>

更新

这最终是我想要完成的。我有一个WebView,我想显示一个加载图标,直到WebView完成加载:

    @Override
    public void onCreate(final Bundle icicle) 
    {
        WebView webView = (WebView)findViewById(R.id.webview);
        webView.getSettings().setSupportZoom(true);  
        webView.getSettings().setBuiltInZoomControls(true);

        webView.loadUrl("http://www.google.com");

        webView.setWebViewClient(new WebBrowserClient());

        final LayoutInflater inflater = (LayoutInflater)getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        final ImageView ivRefresh = (ImageView)inflater.inflate(R.layout.refresh_view, null);

        final Animation rotation = AnimationUtils.loadAnimation(this, R.anim.refresh);
        ivRefresh.startAnimation(rotation);
        loadingItem.setActionView(ivRefresh);

        webView.setWebChromeClient(new WebChromeClient() {
            public void onProgressChanged(WebView view, int progress) {

                if (!isFinishing() && progress == 100 && loadingItem != null && loadingItem.getActionView() != null)
                {
                    loadingItem.getActionView().clearAnimation();
                    loadingItem.setActionView(null);
                }
            }
        }); 
    }

1 个答案:

答案 0 :(得分:2)

onCreateOptionsMenu将始终在onCreate之后调用。实际上,onCreate always将成为创建活动时调用的第一个方法。

您应该在使用之前分配loadingItem变量,或者将其声明为静态,以便在活动被销毁时不会删除引用(仍然可能发生,在这种情况下我建议第一个)选项)。

为什么不在onCreateOptionsMenu设置动画?