2

내 탭 활동의 모든 조각에 배너를 추가하고 싶습니다. 배너는 페이지 하단에서 일정하게 유지됩니다.탭 활동에 배너 추가

프로젝트에 8 페이지가 있습니다. 모든 조각에 하나씩 배너를 추가 할 수 있습니다.하지만이 방법에서는 모든 조각에 8 개의 배너를 추가해야합니다. 필요하지 않습니다. 일정한 배너가 필요합니다. 바닥에있는 모든 파편들에. 도움을

감사합니다 :) 여기

enter image description here

내 main_activity.xml이다;

<android.support.design.widget.CoordinatorLayout 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:app="http://schemas.android.com/apk/res-auto" 
    xmlns:tools="http://schemas.android.com/tools" 
    xmlns:ads="http://schemas.android.com/apk/res-auto" 
    android:id="@+id/main_content" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:fitsSystemWindows="true" 
    tools:context="com.example.aslan.rte3.MainActivity"> 




    <android.support.design.widget.AppBarLayout 
     android:id="@+id/appbar" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:paddingTop="@dimen/appbar_padding_top" 
     android:theme="@style/AppTheme.AppBarOverlay" 
     android:background="@android:color/black"> 

     <android.support.design.widget.TabLayout 
      android:id="@+id/tabs" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      app:tabGravity="center" 
      app:tabMode="scrollable" /> 

    </android.support.design.widget.AppBarLayout> 


    <android.support.v4.view.ViewPager 
     android:id="@+id/container" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     app:layout_behavior="@string/appbar_scrolling_view_behavior" 
     android:background="#E0DFDE"> 

    </android.support.v4.view.ViewPager> 






</android.support.design.widget.CoordinatorLayout> 

답변

1

시도 내가 이런 짓이 하나

<LinearLayout 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:orientation="vertical"> 

    <android.support.v4.view.ViewPager 
     android:id="@+id/container" 
     android:layout_width="match_parent" 
     android:layout_height="0dp" 
     android:layout_weight="1" 
     app:layout_behavior="@string/appbar_scrolling_view_behavior" 
     android:background="#E0DFDE"> 

    <FrameLayout 
     android:id="@+id/banner_layout" 
     android:layout_width="match_parent" 
     android:layout_height="50dp"> 
     <!-- put your banner here --> 
    </FrameLayout> 
</LinearLayout> 
+0

하여 하나

<android.support.v4.view.ViewPager android:id="@+id/container" android:layout_width="match_parent" android:layout_height="match_parent" app:layout_behavior="@string/appbar_scrolling_view_behavior" android:background="#E0DFDE"> </android.support.v4.view.ViewPager> 

를 대체 할, 그러나 저에 미치는 해달라고 작업은 그 쇼 빈 페이지 내 screen.Frame의 레이아웃입니다 항상 정상에, 나는 그것의 위치를 ​​바꿀 수 없다. 그리고 콘솔은 말한다, 광고를 보여줄 충분한 공간이 없다. 320x50 dp가 필요하지만 320x0 dp 만 있습니다. – metomero

+0

활동의 레이아웃을 제공해 주시겠습니까? – MaxV

+0

질문에 내 xlm 파일을 추가했습니다. – metomero