denzcoskun / ImageSlideshow

Android image slider.
Apache License 2.0
354 stars 141 forks source link

How to remove background colour of Title and indicator dots. #87

Open Yousaf128 opened 1 year ago

Yousaf128 commented 1 year ago

How to remove dark background colour of title and dat ?

mukesunke commented 1 year ago

Create title_bg.xml file in your drawable folder and add the following code inside it

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:shape="rectangle">
    <gradient
        android:angle="270"
        android:centerColor="#00E7E7E8"
        android:endColor="#00CFCFCF"
        android:startColor="#000000" />
</shape>

finally apply it to your Slider layout like this app:iss_title_background="@drawable/title_bg"