在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称(OpenSource Name):ronaldsmartin/Material-ViewPagerIndicator开源软件地址(OpenSource Url):https://github.com/ronaldsmartin/Material-ViewPagerIndicator开源编程语言(OpenSource Language):Java 100.0%开源软件介绍(OpenSource Introduction):Material-ViewPagerIndicatorA super easy-to-use page indicator for the Android Support Library v4's DemoA demo app with examples is available on Google Play. The source for the demo is the Usage
Usage is simple - just add it as a child view of your XML<androidx.viewpager.widget.ViewPager
android:id="@+id/view_pager"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignWithParentIfMissing="true">
<!-- Add as a direct child of your ViewPager -->
<com.itsronald.widget.ViewPagerIndicator
android:id="@+id/view_pager_indicator"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom|center_horizontal"
android:gravity="center_vertical"/>
</androidx.viewpager.widget.ViewPager> ProgramaticallyOr in code... import androidx.viewpager.widget.ViewPager;
import android.view.Gravity;
import android.view.ViewGroup.LayoutParams;
import com.itsronald.widget.ViewPagerIndicator;
...
ViewPager viewPager = ...;
final ViewPager.LayoutParams layoutParams = new ViewPager.LayoutParams();
layoutParams.width = LayoutParams.MATCH_PARENT;
layoutParams.height = LayoutParams.WRAP_CONTENT;
layoutParams.gravity = Gravity.BOTTOM;
final ViewPagerIndicator viewPagerIndicator = new ViewPagerIndicator(context);
viewPager.addView(viewPagerIndicator, layoutParams); For more advanced usage, see the wiki. DownloadMaterial-ViewPagerIndicator is available via JitPack.io. GradleAdd JitPack to your maven repositories: allprojects {
repositories {
...
maven { url "https://jitpack.io" }
}
} Add Material-ViewPagerIndicator to your app dependencies: dependencies {
// x.y.z is the latest release version number.
implementation 'com.github.ronaldsmartin:Material-ViewPagerIndicator:x.y.z'
}
OtherPlease see the JitPack page for instructions on using the library with other build systems. LicenseMaterial-ViewPagerIndicator is licensed under Apache 2.0.
Parts of this library are derived from Support-v4's |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论