0
(對不起,我的英語不好) 我所做的是viewPager內viewPager,我想設置圖像和文本到每個選項卡與填充。 我想做這樣的事情 - Mock up design設置高度和頁邊距以在圖片和文本中的每個選項卡在tablayout
但到目前爲止,我只是添加圖片到標籤&保證金。但我不知道爲什麼選項卡之間的邊距不起作用?這裏是我的XML代碼 -
<LinearLayout 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"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="com.example.ansh.customizingtab.MainActivity">
<android.support.design.widget.TabLayout
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:id="@+id/tabLayout"
app:tabMode="scrollable"
app:tabGravity="fill"
android:layout_margin="10dp"
app:tabPaddingStart="8dp"
app:tabPaddingEnd="8dp"
app:tabBackground="@drawable/background_tab">
</android.support.design.widget.TabLayout>
<com.example.ansh.customizingtab.CustomViewPager
android:id="@+id/viewpager"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/white"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
其中,導致這 - Result image
顯示** CustomViewPager **的代碼。嘗試使用「wrap_content」作爲寬度,並強制wrap_content作爲高度。 –
現在,CustomViewPager中沒有任何內容。我只是用它來禁用滑動效果。 @GeetChoubey –