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.githubsmxy:wheelview:1.0.0'
}
dependencies {
implementation("com.github.githubsmxy:wheelview:1.0.0")
}
<dependency>
<groupId>com.github.githubsmxy</groupId>
<artifactId>wheelview</artifactId>
<version>1.0.0</version>
</dependency>
libraryDependencies += "com.github.githubsmxy" % "wheelview" % "1.0.0"
:dependencies [[com.github.githubsmxy/wheelview "1.0.0"]]
Android滚轮控件,基于ListView实现,可以自定义样式。
allprojects {
repositories {
maven { url 'https://jitpack.io' }
}
}
compile 'com.github.GitHubSMXY:WheelView:v1.0.0'
Use the WheelView as a View, Java and XML are both supported.
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main)
mainWheelView = (WheelView) findViewById(R.id.main_wheelview);
mainWheelView.setWheelAdapter(new ArrayWheelAdapter(this,80,0));
mainWheelView.setSkin(WheelView.Skin.Holo);
mainWheelView.setWheelData(createMainDatas());
WheelView.WheelViewStyle style = new WheelView.WheelViewStyle();
style.selectedTextSize = 70;
style.textSize = 70;
mainWheelView.setStyle(style);
}
}
<com.wx.wheelview.widget.WheelView
android:id="@+id/wheelview"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
| method 方法 | description 描述 | |:--- |:---| | void setWheelAdapter(BaseWheelAdapter<T> adapter) | 设置滚轮数据源适配器(required) | | void setWheelData(List<T> list) | 设置滚轮数据(required) | | void setLoop(boolean loop) | 设置滚轮是否循环滚动 | | void setWheelSize(int wheelSize) | 设置滚轮个数 | | void setSkin(Skin skin) | 设置皮肤风格 | | Skin getSkin() | 获得皮肤风格 | | void setStyle(WheelViewStyle style) | 设置滚轮样式 | | WheelViewStyle getStyle() | 获得滚轮样式 | | void setWheelClickable(boolean clickable) | 设置滚轮选中项是否可点击 | | void setSelection(final int selection) | 设置滚轮位置 | | int getSelection() | 获取滚轮位置 | | void join(WheelView wheelView) | 连接副WheelView(联动设置) | | void joinDatas(HashMap<String, List<T>> map) | 副WheelView数据(联动设置) | | int getCurrentPosition() | 获取当前滚轮位置 | | T getSelectionItem() | 获取当前滚轮位置的数据 | | void setExtraText(String text, int textColor, int textSize, int margin) | 设置选中行附加文本 | | int getWheelCount() | 获得滚轮数据总数 | | void setOnWheelItemSelectedListener(OnWheelItemSelectedListener<T> onWheelItemSelectedListener) | 设置滚轮滑动停止时事件,监听滚轮选中项 | | void setOnWheelItemClickListener(OnWheelItemClickListener<T> onWheelItemClickListener) | 设置滚轮选中项点击事件 | | WheelViewDialog setDialogStyle(int color) | 设置Dialog外观颜色 |