How to remove Android ViewPager tabs divider? -
How to remove Android ViewPager tabs divider? -
how remove dividers viewpager?
here code:
<android.support.v4.view.viewpager xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/pager" android:layout_width="match_parent" android:layout_height="match_parent" tools:context="com.bus.tralisto.mainactivity" />
i cannot set android:divider
or used to. have thought how remove them?
i think can "hack" making divider transparent :
<style name="yourtheme" parent="@android:style/theme.holo.light"> <item name="android:actionbartabbarstyle">@style/divider</item> </style> <style name="divider" parent="@android:style/widget.holo.actionbar.tabbar"> <item name="android:divider">@android:color/transparent</item> //or utilize transparent drawable image <item name="android:showdividers">middle</item> <item name="android:dividerpadding">0dp</item> </style>
please told me whether works or not. never tested code, working when want alter divider own image.
android android-viewpager
Comments
Post a Comment