Commit 56374043 by sikang

add event

parent 87b50787
...@@ -5,6 +5,7 @@ import android.app.Dialog; ...@@ -5,6 +5,7 @@ import android.app.Dialog;
import android.content.DialogInterface; import android.content.DialogInterface;
import android.content.Intent; import android.content.Intent;
import android.support.v4.app.FragmentActivity; import android.support.v4.app.FragmentActivity;
import android.util.Log;
import android.view.Gravity; import android.view.Gravity;
import android.view.View; import android.view.View;
import android.view.ViewGroup; import android.view.ViewGroup;
...@@ -178,7 +179,6 @@ public class AgreementPolicyActivity extends BaseActivity { ...@@ -178,7 +179,6 @@ public class AgreementPolicyActivity extends BaseActivity {
settings.setDomStorageEnabled(true); settings.setDomStorageEnabled(true);
settings.setCacheMode(WebSettings.LOAD_NO_CACHE);//不加载缓存 settings.setCacheMode(WebSettings.LOAD_NO_CACHE);//不加载缓存
WebStorage.getInstance().deleteAllData();//主动清除数据 WebStorage.getInstance().deleteAllData();//主动清除数据
loadPolicy(); loadPolicy();
UIHelper.bindClickListener(getContentView(), new OnNoShakeClickListener() { UIHelper.bindClickListener(getContentView(), new OnNoShakeClickListener() {
......
...@@ -108,7 +108,7 @@ public final class TrackEvent { ...@@ -108,7 +108,7 @@ public final class TrackEvent {
/** /**
* 点击同意隐私协议,但由于没勾选协议无法提交 * 点击同意隐私协议,但由于没勾选协议无法提交
*/ */
AGREE_FAILED(type_user, actoin_click, "agree_failed"), AGREE_FAILED(type_user, actoin_click, "agree_agreement_failed"),
/** /**
* 点击一个产品 * 点击一个产品
...@@ -121,6 +121,11 @@ public final class TrackEvent { ...@@ -121,6 +121,11 @@ public final class TrackEvent {
SMS_LOGIN(type_user, actoin_click, "sms_login"), SMS_LOGIN(type_user, actoin_click, "sms_login"),
/** /**
* 点击获取验证码
*/
SMS_CODE(type_user, actoin_click, "sms_code"),
/**
* 点击申请产品 * 点击申请产品
*/ */
LOAN_APPLY(type_user, actoin_click, "Loan_apply"), LOAN_APPLY(type_user, actoin_click, "Loan_apply"),
......
...@@ -14,6 +14,7 @@ ...@@ -14,6 +14,7 @@
android:id="@+id/activity_web_wv" android:id="@+id/activity_web_wv"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
android:clickable="false"
android:longClickable="false" /> android:longClickable="false" />
</com.scwang.smartrefresh.layout.SmartRefreshLayout> </com.scwang.smartrefresh.layout.SmartRefreshLayout>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment