【问题标题】:Actionbar with Fragment tabs and AdMob带有片段标签和 AdMob 的操作栏
【发布时间】:2012-12-01 06:34:19
【问题描述】:

我有一个应用程序将 ActionBar 与选项卡与 Fragments 结合使用。 现在我想将屏幕分成顶部的普通屏幕和底部的小栏用于广告:
左边是普通屏幕,标签和它们的片段占据了整个屏幕。 我想要的是右边的情况。标签和片段占据红色部分,绿色部分用于广告。 所以红色部分应该为广告腾出空间,我不想覆盖广告。

由于设置 ActionBar 和选项卡的 Activity 没有布局,我无法添加 AdView。

我该怎么做?

编辑
这就是我实现我的应用程序的方式。带有选项卡的操作栏负责显示片段,因此主 Activity 中不使用 xml 布局文件。

我的代码: TestActivity.java

public class TestActivity extends SherlockFragmentActivity {
    private ActionBar actionBar;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setupTabs(savedInstanceState);

        initAds();
    }

    private void setupTabs(Bundle savedInstanceState) {
        actionBar = getSupportActionBar();
        actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);

        addTab1();
        addTab2();
    }

    private void addTab1() {
        Tab tab1 = actionBar.newTab();
        tab1.setTag("1");
        String tabText = "1";
        tab1.setText(tabText);
        tab1.setTabListener(new TabListener<MyFragment>(TestActivity.this, "1", MyFragment.class));

        actionBar.addTab(tab1);
    }

    private void addTab2() {
        Tab tab1 = actionBar.newTab();
        tab1.setTag("2");
        String tabText = "2";
        tab1.setText(tabText);
        tab1.setTabListener(new TabListener<MyFragment>(TestActivity.this, "2", MyFragment.class));

        actionBar.addTab(tab1);
    }

    private void initAds(){
        //Here I want to display the ad, only loading once, Just like Davek804 said
    }
}

TabListener.java

public class TabListener<T extends SherlockFragment> implements com.actionbarsherlock.app.ActionBar.TabListener {
    private final SherlockFragmentActivity mActivity;
    private final String mTag;
    private final Class<T> mClass;

    public TabListener(SherlockFragmentActivity activity, String tag, Class<T> clz) {
        mActivity = activity;
        mTag = tag;
        mClass = clz;
    }

    /* The following are each of the ActionBar.TabListener callbacks */

    public void onTabSelected(Tab tab, FragmentTransaction ft) {
        SherlockFragment preInitializedFragment = (SherlockFragment) mActivity.getSupportFragmentManager().findFragmentByTag(mTag);

        // Check if the fragment is already initialized
        if (preInitializedFragment == null) {
            // If not, instantiate and add it to the activity
            SherlockFragment mFragment = (SherlockFragment) SherlockFragment.instantiate(mActivity, mClass.getName());
            ft.add(android.R.id.content, mFragment, mTag);
        } else {
            ft.attach(preInitializedFragment);
        }
    }

    public void onTabUnselected(Tab tab, FragmentTransaction ft) {
        SherlockFragment preInitializedFragment = (SherlockFragment) mActivity.getSupportFragmentManager().findFragmentByTag(mTag);

        if (preInitializedFragment != null) {
            // Detach the fragment, because another one is being attached
            ft.detach(preInitializedFragment);
        }
    }

    public void onTabReselected(Tab tab, FragmentTransaction ft) {
        // User selected the already selected tab. Usually do nothing.
    }
}

MyFragment.java

public class MyFragment extends SherlockFragment {

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        return inflater.inflate(R.layout.myfragment, container, false);
    }

}

【问题讨论】:

  • 因此,无论用户在哪个选项卡上,您都希望 AdView 可见?基本上,这是不正确的,但是您想要的是 adView 本质上是整个主布局,但它只占据底部?所以当用户切换标签时,红色会改变,但绿色保持不变(不是每个标签上的新版本的绿色)?

标签: android admob android-actionbar


【解决方案1】:

创建一个包含 AdView 定义的 XML 文件,并使用 &lt;include&gt; 将其包含在每个片段的底部。

或者创建一个布局和你的标签。参照。参考资料:

要开始,您的布局必须包含一个 ViewGroup,您可以在其中 放置与选项卡关联的每个片段。确保 ViewGroup 有一个 资源 ID,以便您可以从标签交换代码中引用它。 或者,如果选项卡内容将填充活动布局 (不包括操作栏),那么您的活动不需要布局 完全没有(你甚至不需要调用 setContentView())。相反,你 可以将每个片段放在默认的根 ViewGroup 中,您可以 用android.R.id.content ID引用(可以看到这个ID用在 下面的示例代码,在片段事务期间)。

【讨论】:

  • 这会导致广告在标签之间切换时重新加载,这不是我想要的。
  • 您可能想在问题中这么说。然后只需创建一个 RelativeLayout 并将 AdView 锚定到底部。然后将您的片段不要添加到android.R.id.content,而是添加到布局中的容器(FrameLayout 可以)。参照。参考:developer.android.com/guide/topics/ui/actionbar.html#Tabs
【解决方案2】:
猜你喜欢
  • 1970-01-01
  • 2011-07-13
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2012-11-18
相关资源
最近更新 更多