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.cmendes0101:android-tv-epg:'
}
dependencies {
implementation("com.github.cmendes0101:android-tv-epg:")
}
<dependency>
<groupId>com.github.cmendes0101</groupId>
<artifactId>android-tv-epg</artifactId>
<version></version>
</dependency>
libraryDependencies += "com.github.cmendes0101" % "android-tv-epg" % ""
:dependencies [[com.github.cmendes0101/android-tv-epg ""]]
This is a "classic" TV EPG which works on tablets and phones and allows you to scroll in all directions (horizontal, vertical and diagonal). Example project is located in repo but in short you need to add the EPG to your xml or by code:
<se.kmdev.tvepg.epg.EPG
android:id="@+id/epg"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
Then by code adding a click listener...
epg.setEPGClickListener(new EPGClickListener() {
@Override
public void onChannelClicked(int channelPosition, EPGChannel epgChannel) {
// Channel clicked
}
@Override
public void onEventClicked(int channelPosition, int programPosition, EPGEvent epgEvent) {
// Program event clicked
}
@Override
public void onResetButtonClicked() {
// Reset button clicked
}
});
... and data to be shown.
epg.setEPGData(new EPGDataImpl(MockDataService.getMockData()));
Thats basically it. If you want to use it in your project you need resources from the example project as well as the epg package for it to work. If you have any questions or such don't hesitate to contact me.
Good luck!