android - How to remove bottom line of custom Tab view -

how can remove line tab view? or can set height or colors it?
try defining new theme windowcontentoverlay set null:
<style name="mytheme" parent="@android:style/theme> <item name="android:windowcontentoverlay">@null</item> </style> and apply theme activity in manifest (or can apply element apply application-wide):
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.stylingandroid.vectordrawables" android:versioncode="1" android:versionname="1.0"> <uses-sdk android:minsdkversion="10" /> <application android:icon="@drawable/icon" android:label="@string/app_name"> <activity android:name=".mainactivity" android:label="@string/app_name" android:theme="@style/mytheme"> <intent-filter> <action android:name="android.intent.action.main" /> <category android:name="android.intent.category.launcher" /> </intent-filter> </activity> </application> </manifest> that should remove shadow.
if want change colour of set android:cachecolorhint in style.
Comments
Post a Comment