项目作者: Source-Set-564

项目描述 :
Slide button library for android
高级语言: Kotlin
项目地址: git://github.com/Source-Set-564/SlidingButton.git
创建时间: 2020-03-31T08:03:12Z
项目社区:https://github.com/Source-Set-564/SlidingButton

开源协议:MIT License

下载


SlidingButton

Min SDK
Version

Slide button library for android, we hope this library is useful and easy to customize as you needed. For additional information you can see change log

Sample Preview

Sample A


Preview A-1
Preview A-2
Preview A-3
Preview A-4

Sample B


Preview B-1
Preview B-2
Preview B-3
Preview B-4

Gradle

Add dependencies to your build.gradle file at :app or modules level

  1. implementation 'id.ss564.lib.slidingbutton:slidingbutton:<latest-version>'

and don’t forget add jcenter() to your repository

  1. repositories {
  2. //...
  3. jcenter()
  4. //...
  5. }

Then sync your gradle.


How To Use

Notes : This guide is still in process, I will work on it as soon as possible. So, keep checking later if you see this note.

In your layout.xml file, add the view

  1. <id.ss564.lib.slidingbutton.SlidingButton
  2. android:id="@+id/slidingButton"
  3. android:layout_width="match_parent"
  4. android:layout_height="wrap_content"></id.ss564.lib.slidingbutton.SlidingButton>

Yeah… just add like code above. It’s pretty simple :smile:

You can use SlidingButton.OnStateChangeListener to find out if the button is shifted or not. Just add a little bit code like below on your java or kotlin file, for example on MainActivity

  • Java
  1. public class MainActivity extend AppCompatActivty {
  2. @Override
  3. protected void onCreate(Bundle savedInstanceState){
  4. super.onCreate(savedInstanceState);
  5. setContentView(R.layout.activity_main);
  6. SlidingButton mSlidingButton = findViewById(R.id.slidingButton);
  7. mSlidingButton.setOnStateChangeListener(new SlidingButton.OnStateChangeListener(){
  8. @Override
  9. public void onChange(boolean active){
  10. //do what you wanna to do
  11. }
  12. })
  13. }
  14. }
  • Kotlin
  1. class MainActivity : AppCompatActivity() {
  2. override fun onCreate(savedInstanceState : Bundle?){
  3. super.onCreate(savedInstanceState)
  4. setContentView(R.layout.activity_main)
  5. //access view using synthetic, do your own style to access the view :)
  6. slidingButton.setOnStateChangeListener { active ->
  7. //or using `object : SlidingButton.OnStateChangeListener` instead of lambda
  8. //do what you wanna to do
  9. }
  10. }
  11. }

It’s pretty simple right? :smile:

If you wanna customizing, please attention to the following attributes:

  • app:sliding_text

    Use to set text to the view, value of this attribute is string that can be hardcode, reference,or null

  • app:sliding_text_color

    Use to set text color, value of this attribute can be hardcode or reference. Absolutely you can reference it to ColorStateList :smile:

  • app:sliding_text_size

    Use to set text size, value of this attribute is dimension that can be hardcode or reference

  • app:sliding_text_fontFamily

    Use to set font family by name, value of this attribute is string that can be hardcode, or reference

  • app:sliding_text_textStyle

    Use to set text style, value of this attribute normal, italic,bold, or bold|italic

  • app:sliding_text_background

    Use to set text background, value of this attribute can be color, drawable, or null. Absolutely you can reference it to ColorStateList or StateListDrawable :smile:

  • app:sliding_text_paddingStart, app:sliding_text_paddingTop, app:sliding_text_paddingEnd, app:sliding_text_paddingBottom

    Use to set text padding, value is dimension that can be hardcode or reference

  • app:sliding_button_width, app:sliding_button_height

  • app:sliding_button_icon

  • app:sliding_button_icon_tint

  • app:sliding_icon_scaleType

  • app:sliding_button_background

  • app:sliding_button_paddingStart, app:sliding_button_paddingTop, app:sliding_button_paddingEnd, app:sliding_button_paddingBottom

  • app:sliding_button_marginStart, app:sliding_button_marginTop, app:sliding_button_marginEnd, app:sliding_button_marginBottom

  • app:sliding_enabledTextAlpha

    Use to alpha text when sliding, value of this attribute Boolean. Default value true

  • app:sliding_showTrack

    Use to show track indicator when sliding, value of this attribute Boolean. Default value false

  • app:sliding_trackBackground

    Use to set track indicator background.

  • app:sliding_trackBackgroundTint

    Use to set tint track indicator background.

  • app:sliding_trackExtendTo

    Use to set track extended to container or button

  • app:sliding_corner_radius only on API level 21 (Lollipop)


License

  1. MIT License
  2. Copyright (c) 2020 Source Set 564 Contributors
  3. Permission is hereby granted, free of charge, to any person obtaining a copy
  4. of this software and associated documentation files (the "Software"), to deal
  5. in the Software without restriction, including without limitation the rights
  6. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  7. copies of the Software, and to permit persons to whom the Software is
  8. furnished to do so, subject to the following conditions:
  9. The above copyright notice and this permission notice shall be included in all
  10. copies or substantial portions of the Software.
  11. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  12. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  13. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  14. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  15. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  16. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  17. SOFTWARE.