最近的项目里用到了,在网上找不到合适的,于是自己写了个简单的,带回d效果:
可以自定义的属性有:
<!-- 滑动解锁控件 xml配置属性 --><declare-styleable name="SlIDetoUnlockVIEw"> <attr name="slIDeImageVIEwWIDth" format="dimension"/><!-- 滑块宽度 --> <attr name="slIDeImageVIEwResID" format="reference"/><!-- 滑块资源ID --> <attr name="slIDeImageVIEwResIDAfter" format="reference"/><!-- 滑动到右边时,滑块资源ID --> <attr name="vIEwBackgroundResID" format="reference"/><!-- 背景资源ID --> <attr name="textHint" format="string"/><!-- 文本内容 --> <attr name="textSize" format="integer"/><!-- 文本字号 --> <attr name="textcolorResID" format="color"/><!-- 文本字色 --> <attr name="slIDeThreshold" format="float"/><!-- 滑动阈值,默认是0.5,当右滑距离不满整个控件宽度的0.5,就会回d至左边 --></declare-styleable>
activity_main.xml:
<?xml version="1.0" enCoding="utf-8"?><relativeLayout xmlns:androID="http://schemas.androID.com/apk/res/androID" xmlns:tools="http://schemas.androID.com/tools" androID:layout_wIDth="match_parent" androID:layout_height="match_parent" xmlns:chuck="http://schemas.androID.com/apk/res-auto" androID:paddingBottom="@dimen/activity_vertical_margin" androID:paddingleft="@dimen/activity_horizontal_margin" androID:paddingRight="@dimen/activity_horizontal_margin" androID:paddingtop="@dimen/activity_vertical_margin" tools:context="com.qdong.slIDetounlockdemo.MainActivity"> <relativeLayout androID:layout_wIDth="match_parent" androID:layout_height="wrap_content" androID:ID="@+ID/relativeLayout"> <!-- chuck:textSize="14sp" chuck:textcolorResID="@color/colorWhite"--> <com.qdong.slIDe_to_unlock_vIEw.CustomSlIDetoUnlockVIEw androID:ID="@+ID/slIDe_to_unlock" androID:layout_wIDth="match_parent" androID:layout_height="50dp" chuck:vIEwBackgroundResID="@drawable/shape_round_normal_green" chuck:slIDeImageVIEwWIDth="@dimen/slIDe_wIDth" chuck:slIDeImageVIEwResID="@mipmap/icon_slIDe" chuck:slIDeImageVIEwResIDAfter="@mipmap/ic_launcher" chuck:slIDeThreshold="0.5" chuck:textSize="6" chuck:textHint="@string/hint" chuck:textcolorResID="@color/colorWhite" > </com.qdong.slIDe_to_unlock_vIEw.CustomSlIDetoUnlockVIEw> </relativeLayout> <button androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:text="reset" androID:ID="@+ID/button" androID:layout_below="@+ID/relativeLayout" androID:layout_centerHorizontal="true" androID:layout_margintop="150dp"/> <TextVIEw androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:ID="@+ID/tv_text" androID:text="slIDe distance:" androID:layout_alignBottom="@+ID/button" androID:layout_centerHorizontal="true" androID:layout_marginBottom="60dp"/></relativeLayout>
MainActivity:
public class MainActivity extends AppCompatActivity { private com.qdong.slIDe_to_unlock_vIEw.CustomSlIDetoUnlockVIEw mCustomSlIDetoUnlockVIEw; private TextVIEw tv_text; @OverrIDe protected voID onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentVIEw(R.layout.activity_main); mCustomSlIDetoUnlockVIEw= (com.qdong.slIDe_to_unlock_vIEw.CustomSlIDetoUnlockVIEw) findVIEwByID(R.ID.slIDe_to_unlock); tv_text= (TextVIEw) findVIEwByID(R.ID.tv_text); CustomSlIDetoUnlockVIEw.CallBack callBack=new CustomSlIDetoUnlockVIEw.CallBack() { @OverrIDe public voID onSlIDe(int distance) { tv_text.setText("slIDe distance:"+distance); } @OverrIDe public voID onUnlocked() { tv_text.setText("onUnlocked"); } }; mCustomSlIDetoUnlockVIEw.setmCallBack(callBack); findVIEwByID(R.ID.button).setonClickListener(new VIEw.OnClickListener() { @OverrIDe public voID onClick(VIEw vIEw) { mCustomSlIDetoUnlockVIEw.resetVIEw(); } }); }}
下载地址:
https://github.com/506954774/AndroidCustomSlideToUnlockView
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程小技巧。
总结以上是内存溢出为你收集整理的Android自定义滑动解锁控件使用详解全部内容,希望文章能够帮你解决Android自定义滑动解锁控件使用详解所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)