Step 1. Add the JitPack repository to your build file
Add it in your root settings.gradle at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
Add it in your settings.gradle.kts at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
}
Add to pom.xml
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
Add it in your build.sbt at the end of resolvers:
resolvers += "jitpack" at "https://jitpack.io"
Add it in your project.clj at the end of repositories:
:repositories [["jitpack" "https://jitpack.io"]]
Step 2. Add the dependency
dependencies {
implementation 'com.github.moeidheidari:banner:1.04'
}
dependencies {
implementation("com.github.moeidheidari:banner:1.04")
}
<dependency>
<groupId>com.github.moeidheidari</groupId>
<artifactId>banner</artifactId>
<version>1.04</version>
</dependency>
libraryDependencies += "com.github.moeidheidari" % "banner" % "1.04"
:dependencies [[com.github.moeidheidari/banner "1.04"]]
A simple to use banner slider library written in android studio.
This tiny library assists you make your sliders more adabtable whenever you want to get your banner images from somewhere else(by url).
Android studio with gradle version 3.0+
Add this items in your build.gradle file
Step 1:
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
Step 2:
dependencies {
implementation 'com.github.MoeidHeidari:banner:1.04'
}
Steps 1 :
Add it to your *.xml file
<com.example.moeidbannerlibrary.banner.BannerLayout
android:id="@+id/Banner"
android:layout_width="match_parent"
android:layout_height="220dp"
app:autoPlaying="true"
app:centerScale="1.6"
app:itemSpace="0"
app:moveSpeed="0.5"
app:showIndicator="true"/>
Steps 2 :
In your activity
BannerLayout banner=(BannerLayout) findViewById(R.id.Banner);
List<String> urls = new ArrayList<>();
urls.add("http://szzljy.com/images/mountain/mountain4.jpg");
urls.add("http://szzljy.com/images/mountain/mountain4.jpg");
urls.add("http://www.visitgreece.gr/deployedFiles/StaticFiles/Photos/Generic%20Contents/Forests/mountains_2_560.jpg");
urls.add("http://szzljy.com/images/mountain/mountain4.jpg");
urls.add("http://www.visitgreece.gr/deployedFiles/StaticFiles/Photos/Generic%20Contents/Forests/mountains_2_560.jpg");
urls.add("http://szzljy.com/images/mountain/mountain4.jpg");
BaseBannerAdapter webBannerAdapter=new BaseBannerAdapter(this,urls);
webBannerAdapter.setOnBannerItemClickListener(new BannerLayout.OnBannerItemClickListener() {
@Override
public void onItemClick(int position)
{
}
});
banner.setAdapter(webBannerAdapter);
This project is licensed under the MIT License - see the LICENSE.md file for details