Android启动页用户相关政策弹框的实现代码
程序员文章站
2022-11-23 11:07:07
现在android上架各大平台都要求app首页添加一个弹框,显示用户协议以及一些隐私政策,不然上架各大平台,现在就来简单的实现一下这个对话框既然是一个对话框,那我们就先来简单的封装一个对话框,这样方便...
现在android上架各大平台都要求app首页添加一个弹框,显示用户协议以及一些隐私政策,不然上架各大平台,现在就来简单的实现一下这个对话框
既然是一个对话框,那我们就先来简单的封装一个对话框,这样方便后续的一些修改:
widget_user_dialog.xml
<?xml version="1.0" encoding="utf-8"?> <androidx.appcompat.widget.linearlayoutcompat xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:background="@drawable/bg_sprint_border" android:layout_width="wrap_content" android:layout_height="wrap_content"> <androidx.appcompat.widget.linearlayoutcompat android:background="@drawable/bg_sprint_border" android:orientation="vertical" android:layout_marginleft="25dp" android:layout_marginright="25dp" android:layout_width="wrap_content" android:layout_height="wrap_content"> <androidx.appcompat.widget.appcompattextview android:id="@+id/tv_sprint_title" android:text="sprint" android:padding="12dp" android:layout_gravity="center_horizontal" android:textsize="18sp" android:textcolor="@color/colorblack" android:textstyle="bold" android:layout_width="wrap_content" android:layout_height="wrap_content"/> <androidx.appcompat.widget.appcompattextview android:id="@+id/tv_sprint_content" android:text="我是内容我是内容我是内容我是内容我是内容我是内容我是内容我是内容我是内容我是内容我是内容我是内容我是内容我是内容我是内容我是内容" android:layout_gravity="center_horizontal" android:padding="8dp" android:textsize="14sp" android:textcolor="@color/colorblack" android:layout_width="wrap_content" android:layout_height="wrap_content"/> <view android:layout_width="match_parent" android:layout_height="0.5dp" android:background="@color/colorlightgrey_1" /> <linearlayout android:layout_width="match_parent" android:layout_height="40dp" android:layout_marginbottom="0.1dp" android:layout_marginleft="0.1dp" android:layout_marginright="0.1dp" android:orientation="horizontal"> <textview android:id="@+id/tv_dialog_no" android:layout_width="0dp" android:layout_height="fill_parent" android:layout_weight="1" android:background="@drawable/bg_sprint_cancle" android:gravity="center_horizontal|center_vertical" android:text="取消" android:textsize="15sp" android:textcolor="@color/colorblack"/> <view android:layout_width="0.5dp" android:layout_height="match_parent" android:background="@color/colorlightgrey_1" /> <!--android:background="@drawable/message_dialog_bottom_right"--> <textview android:id="@+id/tv_dialog_ok" android:layout_width="0dp" android:layout_height="fill_parent" android:layout_weight="1" android:gravity="center_horizontal|center_vertical" android:text="确定" android:textsize="15sp" android:background="@drawable/bg_sprint_agreen_commit" android:textcolor="@color/colorfont_0098fa" /> </linearlayout> </androidx.appcompat.widget.linearlayoutcompat> </androidx.appcompat.widget.linearlayoutcompat>
drawable文件这里就不放出来了,不懂得可以问问度娘,主要就是设置个圆角,然后还有颜色
agreementdialog.java
这里就是封装的对话框,包括标题、确定、取消等一些控件的封装,主要我们用spannablestring 这个来实现内容的编辑,可以设置指定内容的演示颜色、大小以及样式等等,需求有需要的话大家可以自己扩展一下
import android.app.dialog; import android.content.context; import android.os.bundle; import android.text.spannablestring; import android.text.textutils; import android.text.method.linkmovementmethod; import android.view.view; import android.view.window; import android.widget.textview; import androidx.annotation.nonnull; import com.huantek.module.sprint.r; public class agreementdialog extends dialog { private context context; private textview tv_tittle; private textview tv_content; private textview tv_dialog_ok; private textview tv_dialog_no; private string title; private spannablestring str; private view.onclicklistener mclicklistener; private string btnname; private string no; private string strcontent; public agreementdialog(@nonnull context context) { super(context); } //构造方法 public agreementdialog(context context, spannablestring content, string strcontent, string title) { super(context, r.style.mydialog); this.context = context; this.str = content; this.strcontent = strcontent; this.title = title; } public agreementdialog setonclicklistener(view.onclicklistener onclick) { this.mclicklistener = onclick; return this; } public agreementdialog setbtname(string yes, string no) { this.btnname = yes; this.no = no; return this; } @override protected void oncreate(bundle savedinstancestate) { super.oncreate(savedinstancestate); requestwindowfeature(window.feature_no_title); setcontentview(r.layout.widget_sprint_user_dialog); initview(); } private void initview() { tv_dialog_ok = (textview) findviewbyid(r.id.tv_dialog_ok); tv_tittle = (textview) findviewbyid(r.id.tv_sprint_title); tv_content = (textview) findviewbyid(r.id.tv_sprint_content); tv_dialog_no = (textview) findviewbyid(r.id.tv_dialog_no); tv_content.setmovementmethod(linkmovementmethod.getinstance()); if (!textutils.isempty(btnname)) { tv_dialog_ok.settext(btnname); } if (!textutils.isempty(no)) { tv_dialog_no.settext(no); } //设置点击对话框外部不可取消 this.setcanceledontouchoutside(false); this.setcancelable(true); tv_dialog_ok.setonclicklistener(new view.onclicklistener() { @override public void onclick(view arg0) { agreementdialog.this.dismiss(); if (mclicklistener != null) { mclicklistener.onclick(tv_dialog_ok); } } }); tv_dialog_no.setonclicklistener(new view.onclicklistener() { @override public void onclick(view arg0) { agreementdialog.this.dismiss(); if (mclicklistener != null) { mclicklistener.onclick(tv_dialog_no); } } }); if (textutils.isempty(strcontent)) { tv_content.settext(str); } else { tv_content.settext(strcontent); } tv_tittle.settext(title); } }
对于这种对话框,并不是每次都需要弹出来,只有用户在第一次安装的时候才会弹出,后面启动的话就无需在弹出来了,所以我们要进行一个判断,判断用户是不是第一次使用
先定义一个boolean的值,用于判断用户是不是第一次使用
//是否是第一次使用 private boolean isfirstuse;
这里可以用sharedpreferences来进行保存这个值是false还是true
sharedpreferences preferences = getsharedpreferences("isfirstuse", mode_private); //默认设置为true isfirstuse = preferences.getboolean("isfirstuse", true);
如果是第一次使用,那我们就设置对应的标题、内容等相关值,如果不是就不做操作
new agreementdialog(context, generatesp("感谢您信任并使用" + apputils.getappname(this)+"xxxxxx《"+ apputils.getappname(this) + "用户协议》" + "和《"+ apputils.getappname(this) + "隐私政策》" + "xxxxx"),null,"温馨提示").setbtname("同意", "不同意") .setonclicklistener(new view.onclicklistener() { @override public void onclick(view v) { switch (v.getid()){ case r.id.tv_dialog_ok: //实例化editor对象 sharedpreferences.editor editor = preferences.edit(); //存入数据 editor.putboolean("isfirstuse", false); //提交修改 editor.commit(); //这里是一开始的申请权限,不懂可以看我之前的博客 requirepermission(); break; case r.id.tv_dialog_no: finish(); break; } } }).show(); } else { }
记得一定要.show(),不然对话框不会弹出来,这里面的重点部分在于generatesp()这个方法,这里就是为了设置“用户协议”这几个字体的颜色
private spannablestring generatesp(string text) { //定义需要操作的内容 string high_light_1 = "《用户协议》"; string high_light_2 = "《隐私政策》"; spannablestring spannablestring = new spannablestring(text); //初始位置 int start = 0; //结束位置 int end; int index; //indexof(string str, int fromindex): 返回从 fromindex 位置开始查找指定字符在字符串中第一次出现处的索引,如果此字符串中没有这样的字符,则返回 -1。 //简单来说,(index = text.indexof(high_light_1, start)) > -1这部分代码就是为了查找你的内容里面有没有high_light_1这个值的内容,并确定它的起始位置 while ((index = text.indexof(high_light_1, start)) > -1) { //结束的位置 end = index + high_light_1.length(); spannablestring.setspan(new qmuitouchablespan(this.getresources().getcolor(r.color.colorfont_0098fa), this.getresources().getcolor(r.color.colorfont_0098fa), this.getresources().getcolor(r.color.colorwhite), this.getresources().getcolor(r.color.colorwhite)) { @override public void onspanclick(view widget) { // 点击用户协议的相关操作,可以使用webview来加载一个网页 } }, index, end, spanned.span_inclusive_exclusive); start = end; } start = 0; while ((index = text.indexof(high_light_2, start)) > -1) { end = index + high_light_2.length(); spannablestring.setspan(new qmuitouchablespan(this.getresources().getcolor(r.color.colorfont_0098fa), this.getresources().getcolor(r.color.colorfont_0098fa), this.getresources().getcolor(r.color.colorwhite), this.getresources().getcolor(r.color.colorwhite)) { @override public void onspanclick(view widget) { // 点击隐私政策的相关操作,可以使用webview来加载一个网页 } }, index, end, spanned.span_inclusive_exclusive); start = end; } //最后返回spannablestring return spannablestring; }
最后就是qmuitouchablespan.java
用来触发用户点击时的相关操作
/** * created by sammi on 2020/2/27. * /** * 可 touch 的 span,在 {@link #setpressed(boolean)} 后根据是否 pressed 来触发不同的ui状态 * <p> * 提供设置 span 的文字颜色和背景颜色的功能, 在构造时传入 * </p> */ public abstract class qmuitouchablespan extends clickablespan { private boolean mispressed; @colorint private int mnormalbackgroundcolor; @colorint private int mpressedbackgroundcolor; @colorint private int mnormaltextcolor; @colorint private int mpressedtextcolor; private boolean misneedunderline = false; public abstract void onspanclick(view widget); @override public final void onclick(view widget) { if (viewcompat.isattachedtowindow(widget)) { onspanclick(widget); } } public qmuitouchablespan(@colorint int normaltextcolor, @colorint int pressedtextcolor, @colorint int normalbackgroundcolor, @colorint int pressedbackgroundcolor) { mnormaltextcolor = normaltextcolor; mpressedtextcolor = pressedtextcolor; mnormalbackgroundcolor = normalbackgroundcolor; mpressedbackgroundcolor = pressedbackgroundcolor; } public int getnormalbackgroundcolor() { return mnormalbackgroundcolor; } public void setnormaltextcolor(int normaltextcolor) { mnormaltextcolor = normaltextcolor; } public void setpressedtextcolor(int pressedtextcolor) { mpressedtextcolor = pressedtextcolor; } public int getnormaltextcolor() { return mnormaltextcolor; } public int getpressedbackgroundcolor() { return mpressedbackgroundcolor; } public int getpressedtextcolor() { return mpressedtextcolor; } public void setpressed(boolean isselected) { mispressed = isselected; } public boolean ispressed() { return mispressed; } public void setisneedunderline(boolean isneedunderline) { misneedunderline = isneedunderline; } @override public void updatedrawstate(textpaint ds) { ds.setcolor(mispressed ? mpressedtextcolor : mnormaltextcolor); ds.bgcolor = mispressed ? mpressedbackgroundcolor : mnormalbackgroundcolor; ds.setunderlinetext(misneedunderline); } }
附上效果图
总结
到此这篇关于android启动页用户相关政策弹框的实现的文章就介绍到这了,更多相关android启动页用户相关政策弹框的实现内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!