如何在PagerAdapter中更改ImageButton的可见性?

时间:2012-01-31 19:44:45

标签: android android-viewpager android-adapter

我想更改PagerAdapter中图片按钮的可见性。我似乎不能通过id在instantiateItem中引用布局的部分,我只能引用完整的布局。这很奇怪,因为我似乎仍然可以通过id来引用我的网页浏览。

我该如何处理?这是我正在尝试做的,但我在下面显示的最后一行得到一个空指针异常:

    public Object instantiateItem(View collection, int position) {
        ImageButton btnRight = (ImageButton) findViewById(R.id.buttonright);
        ImageButton btnLeft = (ImageButton) findViewById(R.id.buttonleft);
        if (position == 0) {
            resLayout = R.layout.the_webview;
            urltoload = theUrls[position];
            resId = R.id.webview0;
            btnLeft.setVisibility(View.INVISIBLE);
        View view = inflater.inflate(resLayout, null);

...

        if (position != 2) {
            mainWebView = (WebView) view.findViewById(resId);
            mainWebView.getSettings().setJavaScriptEnabled(true);
            mainWebView.loadUrl(urltoload);

        }
        ((ViewPager) collection).addView(view, 0);
        return view;
    }

我需要相应地设置可见性的位置,因此我无法在onCreate中执行此操作。我知道对于普通的适配器,我可以使用getView,但我不能将它用于PagerAdapter。

我还读过我可以通过处理程序创建自己的UI更新线程,但在这种情况下我该怎么做?

感谢。

3 个答案:

答案 0 :(得分:1)

关于更新线程UI的问题,请查看runOnUiThread here

答案 1 :(得分:0)

试试这个,其中“itemLayout”是你的布局:

View thisLayout = inflater.inflate(R.layout.itemLayout, null);

btnLeft = (ImageButton) thisLayout.findViewById(R.id.buttonleft);

<do stuff with btnLeft>

((ViewPager) collection).addView(thisLayout);

return thisLayout;

答案 2 :(得分:0)

答案就在这里:http://mobile.tutsplus.com/tutorials/android/android-user-interface-design-horizontal-view-paging/comment-page-1/#comment-14065

显然,您必须参考按钮所在的相对或线性布局,否则findViewById将无法找到您所指的内容。