“我的”页面修改。更换签名,包名,友盟统计、百度统计账号,
@@ -7,7 +7,7 @@ android {
|
||||
compileSdkVersion 29
|
||||
|
||||
defaultConfig {
|
||||
applicationId "com.wudoo.qingxun"
|
||||
applicationId "com.xuanyi.accompany"
|
||||
minSdkVersion 19
|
||||
targetSdkVersion 29
|
||||
versionCode Integer.valueOf(version_code)
|
||||
@@ -52,19 +52,19 @@ android {
|
||||
signingConfigs {
|
||||
|
||||
v2 {
|
||||
storeFile file('../qx.jks')
|
||||
storePassword "123456789"
|
||||
keyAlias "key_qingxun"
|
||||
keyPassword "123456789"
|
||||
storeFile file('../66pw.jks')
|
||||
storePassword "accompanyplay"
|
||||
keyAlias "66accompany"
|
||||
keyPassword "accompanyplay"
|
||||
v2SigningEnabled true
|
||||
v1SigningEnabled true
|
||||
}
|
||||
|
||||
v1 {
|
||||
storeFile file('../qx.jks')
|
||||
storePassword "123456789"
|
||||
keyAlias "key_qingxun"
|
||||
keyPassword "123456789"
|
||||
storeFile file('../66pw.jks')
|
||||
storePassword "accompanyplay"
|
||||
keyAlias "66accompany"
|
||||
keyPassword "accompanyplay"
|
||||
if (sign_mode == "v1v2") {
|
||||
v2SigningEnabled true
|
||||
} else {
|
||||
@@ -166,7 +166,7 @@ android {
|
||||
}
|
||||
|
||||
productFlavors {
|
||||
qingxun {
|
||||
accompany {
|
||||
dimension 'default'
|
||||
}
|
||||
|
||||
|
@@ -376,7 +376,7 @@
|
||||
<!-- tools:node="merge" />-->
|
||||
<!-- 为了兼容小程序返回的问题,声明WXEntryActivity,并把之前的 WechatHandlerActivity注释 -->
|
||||
<activity
|
||||
android:name="com.wudoo.qingxun.wxapi.WXEntryActivity"
|
||||
android:name="com.xuanyi.accompany.wxapi.WXEntryActivity"
|
||||
android:configChanges="keyboardHidden|orientation|screenSize"
|
||||
android:exported="true" />
|
||||
|
||||
@@ -429,7 +429,7 @@
|
||||
<activity
|
||||
android:name=".MainActivity"
|
||||
android:configChanges="orientation|keyboardHidden|screenSize"
|
||||
android:label="轻寻"
|
||||
android:label="66陪玩"
|
||||
android:launchMode="singleTask"
|
||||
android:screenOrientation="portrait"
|
||||
android:windowSoftInputMode="adjustPan|stateAlwaysHidden">
|
||||
|
@@ -1,4 +1,4 @@
|
||||
package com.wudoo.qingxun.wxapi;
|
||||
package com.xuanyi.accompany.wxapi;
|
||||
|
||||
import android.content.Intent;
|
||||
|
@@ -498,7 +498,7 @@ public class XChatApplication extends Application {
|
||||
private void init(String channel) {
|
||||
initNimUIKit();
|
||||
initYiDun();
|
||||
initShuMeiTianWang(channel);
|
||||
// initShuMeiTianWang(channel); //暂时不用
|
||||
MobSDK.init(this);
|
||||
UriProvider.initUri(BuildConfig.BASE_URL_DEBUG, BuildConfig.BASE_URL_STAGING, BuildConfig.BASE_URL_RELEASE);
|
||||
try {
|
||||
@@ -526,14 +526,14 @@ public class XChatApplication extends Application {
|
||||
*/
|
||||
Realm.init(BasicConfig.INSTANCE.getAppContext());
|
||||
RealmConfiguration config = new RealmConfiguration.Builder()
|
||||
.name("qingxun.realm")
|
||||
.name("accompany.realm")
|
||||
.deleteRealmIfMigrationNeeded()
|
||||
.build();
|
||||
Realm.setDefaultConfiguration(config);
|
||||
|
||||
|
||||
LogUtil.i(TAG, channel);
|
||||
initBaiduStatistic(channel);
|
||||
// initBaiduStatistic(channel); 百度统计
|
||||
initUmengAppStatistic(channel);
|
||||
|
||||
if (isDebug()) {
|
||||
|
@@ -1486,8 +1486,8 @@ public class HomePartyRoomFragment extends BaseMvpFragment<IHomePartyView, HomeP
|
||||
|
||||
@Subscribe(threadMode = ThreadMode.MAIN)
|
||||
public void onAntiSpamEvent(AntiSpamEvent event) {
|
||||
// Toast.makeText(getContext(), "发送失败,轻寻提醒您文明用语~", Toast.LENGTH_SHORT).show();
|
||||
SingleToastUtil.showToastShort("发送失败,轻寻提醒您文明用语~");
|
||||
// Toast.makeText(getContext(), "发送失败,66陪玩提醒您文明用语~", Toast.LENGTH_SHORT).show();
|
||||
SingleToastUtil.showToastShort("发送失败,66陪玩提醒您文明用语~");
|
||||
}
|
||||
|
||||
/**
|
||||
|
@@ -413,7 +413,7 @@ public class DialogManager {
|
||||
}
|
||||
|
||||
/**
|
||||
* 1、轻寻通用的dialog设置,以后尽量所有的dialog都引到这个方法,方便以后改版
|
||||
* 1、66陪玩通用的dialog设置,以后尽量所有的dialog都引到这个方法,方便以后改版
|
||||
* 2、如果UI要求弹框是完全自定义的,再重新写过
|
||||
* @param title 标题,空则隐藏 (ui说,有些弹框带标题,有些不带,两种情况共存)
|
||||
* @param message 内容,不能为空,配合{@link com.yizhuan.erban.utils.SpannableBuilder} 变色使用
|
||||
|
@@ -642,7 +642,7 @@ public class HomeFragmentAdapter extends BaseMultiItemQuickAdapter<HomeItem, Bas
|
||||
}
|
||||
|
||||
/**
|
||||
* 设置轻寻头条数据
|
||||
* 设置66陪玩头条数据
|
||||
*/
|
||||
private void setErbanTopMessageData(BaseViewHolder holder, HomeItem homeItem) {
|
||||
VMTopMessageInfo topMessageInfo = (VMTopMessageInfo) homeItem.getData();
|
||||
@@ -724,7 +724,7 @@ public class HomeFragmentAdapter extends BaseMultiItemQuickAdapter<HomeItem, Bas
|
||||
}
|
||||
|
||||
/**
|
||||
* 设置轻寻推荐item
|
||||
* 设置66陪玩推荐item
|
||||
*/
|
||||
private void setErbanRecommend(BaseViewHolder holder, HomeItem homeItem) {
|
||||
RecommendInfo recommendInfo = (RecommendInfo) homeItem.getData();
|
||||
|
@@ -220,7 +220,7 @@ public class FindFragment extends BaseMvpFragment<IFindFragmentView, FindFragmen
|
||||
}
|
||||
|
||||
/**
|
||||
* 设置轻寻头条数据
|
||||
* 设置66陪玩头条数据
|
||||
*/
|
||||
private void setTuTuTopMessageData(VMTopMessageInfo topMessageInfo) {
|
||||
ErbanTopMessageAdapter adapter = new ErbanTopMessageAdapter(mContext, topMessageInfo.getVmTopMessageList());
|
||||
|
@@ -134,7 +134,7 @@ import static com.yizhuan.xchat_android_core.home.bean.BannerInfo.SKIP_TYP_APP;
|
||||
import static com.yizhuan.xchat_android_core.home.bean.BannerInfo.SKIP_TYP_H5;
|
||||
|
||||
/**
|
||||
* 轻寻首页
|
||||
* 66陪玩首页
|
||||
*/
|
||||
@CreatePresenter(MainFragmentPresenter.class)
|
||||
public class GameHomeFragment extends BaseMvpFragment<IMainFragmentView, MainFragmentPresenter>
|
||||
@@ -767,7 +767,7 @@ public class GameHomeFragment extends BaseMvpFragment<IMainFragmentView, MainFra
|
||||
Iterator<BannerInfo> iterator = bannerInfos.iterator();
|
||||
while (iterator.hasNext()) {
|
||||
BannerInfo next = iterator.next();
|
||||
if (Objects.equals(next.getBannerName(), "轻寻-小世界")) {
|
||||
if (Objects.equals(next.getBannerName(), "66陪玩-小世界")) {
|
||||
iterator.remove();
|
||||
break;
|
||||
}
|
||||
|
@@ -1,47 +1,29 @@
|
||||
package com.yizhuan.erban.home.fragment;
|
||||
|
||||
import android.Manifest;
|
||||
import android.content.Intent;
|
||||
import android.databinding.DataBindingUtil;
|
||||
import android.graphics.PorterDuff;
|
||||
import android.graphics.drawable.Drawable;
|
||||
import android.os.Bundle;
|
||||
import android.support.annotation.Nullable;
|
||||
import android.view.View;
|
||||
import android.widget.ImageView;
|
||||
|
||||
import com.bumptech.glide.load.DataSource;
|
||||
import com.bumptech.glide.load.engine.DiskCacheStrategy;
|
||||
import com.bumptech.glide.load.engine.GlideException;
|
||||
import com.bumptech.glide.request.RequestListener;
|
||||
import com.bumptech.glide.request.target.Target;
|
||||
import com.bumptech.glide.request.target.ViewTarget;
|
||||
import com.netease.nim.uikit.support.glide.GlideApp;
|
||||
import com.yizhuan.erban.MainActivity;
|
||||
import com.yizhuan.erban.R;
|
||||
import com.yizhuan.erban.UIHelper;
|
||||
import com.yizhuan.erban.avroom.recommendcard.MyRecommendCardActivity;
|
||||
import com.yizhuan.erban.base.BaseFragment;
|
||||
import com.yizhuan.erban.common.widget.dialog.DialogManager;
|
||||
import com.yizhuan.erban.databinding.FragmentMeBinding;
|
||||
import com.yizhuan.erban.decoration.view.DecorationStoreActivity;
|
||||
import com.yizhuan.erban.family.view.activity.FamilyHomeActivity;
|
||||
import com.yizhuan.erban.module_hall.HallDataManager;
|
||||
import com.yizhuan.erban.module_hall.hall.activity.ModuleHallActivity;
|
||||
import com.yizhuan.erban.decoration.view.MyDecorationActivity;
|
||||
import com.yizhuan.erban.radish.activity.RadishRecordActivity;
|
||||
import com.yizhuan.erban.ui.patriarch.PatriarchModeActivity;
|
||||
import com.yizhuan.erban.ui.relation.AttentionListActivity;
|
||||
import com.yizhuan.erban.ui.relation.FansListActivity;
|
||||
import com.yizhuan.erban.ui.wallet.WalletGoldActivity;
|
||||
import com.yizhuan.erban.ui.webview.CommonWebViewActivity;
|
||||
import com.yizhuan.erban.ui.widget.ObservableScrollView;
|
||||
import com.yizhuan.erban.ui.widget.higuide.TuTuGuideHelper;
|
||||
import com.yizhuan.erban.utils.BlurTransformation;
|
||||
import com.yizhuan.xchat_android_core.UriProvider;
|
||||
import com.yizhuan.xchat_android_core.auth.AuthModel;
|
||||
import com.yizhuan.xchat_android_core.customer_server.CustomerServerModel;
|
||||
import com.yizhuan.xchat_android_core.decoration.headwear.bean.HeadWearInfo;
|
||||
import com.yizhuan.xchat_android_core.family.model.FamilyModel;
|
||||
import com.yizhuan.xchat_android_core.manager.IMNetEaseManager;
|
||||
import com.yizhuan.xchat_android_core.manager.RelationShipEvent;
|
||||
import com.yizhuan.xchat_android_core.market_verify.MarketVerifyModel;
|
||||
@@ -49,15 +31,11 @@ import com.yizhuan.xchat_android_core.market_verify.event.MarketVerifyUpdateEven
|
||||
import com.yizhuan.xchat_android_core.noble.NobleInfo;
|
||||
import com.yizhuan.xchat_android_core.noble.NobleProtocol;
|
||||
import com.yizhuan.xchat_android_core.noble.NobleUtil;
|
||||
import com.yizhuan.xchat_android_core.statistic.StatisticManager;
|
||||
import com.yizhuan.xchat_android_core.statistic.protocol.StatisticsProtocol;
|
||||
import com.yizhuan.xchat_android_core.user.UserModel;
|
||||
import com.yizhuan.xchat_android_core.user.bean.UserInfo;
|
||||
import com.yizhuan.xchat_android_core.user.event.LoginUserInfoUpdateEvent;
|
||||
import com.yizhuan.xchat_android_core.utils.StarUtils;
|
||||
import com.yizhuan.xchat_android_library.rxbus.RxBusHelper;
|
||||
import com.yizhuan.xchat_android_library.utils.SingleToastUtil;
|
||||
import com.yizhuan.xchat_android_library.utils.config.BasicConfig;
|
||||
|
||||
import org.greenrobot.eventbus.EventBus;
|
||||
import org.greenrobot.eventbus.Subscribe;
|
||||
@@ -138,7 +116,7 @@ public class MeFragment extends BaseFragment implements View.OnClickListener {
|
||||
requestUpdateUserInfo();
|
||||
} else if (second == CUSTOM_MESS_SUB_HADEXPIRE) {
|
||||
mBinding.ivUserNobleLevel.setVisibility(View.GONE);
|
||||
mBinding.tvNobleRemainTime.setVisibility(View.GONE);
|
||||
// mBinding.tvNobleRemainTime.setVisibility(View.GONE);
|
||||
mBinding.ivAvatarHeadWear.setVisibility(View.GONE);
|
||||
}
|
||||
});
|
||||
@@ -150,14 +128,14 @@ public class MeFragment extends BaseFragment implements View.OnClickListener {
|
||||
onMarketVerifyUpdateEvent(null);
|
||||
|
||||
//模厅
|
||||
HallDataManager.get().registerHallExist(this, hallExist -> {
|
||||
if (hallExist != null && hallExist) {
|
||||
mBinding.llModuleHall.setVisibility(View.VISIBLE);
|
||||
return;
|
||||
}
|
||||
mBinding.llModuleHall.setVisibility(View.GONE);
|
||||
});
|
||||
HallDataManager.get().registerName(this, name -> mBinding.tvModuleHall.setText(name));
|
||||
// HallDataManager.get().registerHallExist(this, hallExist -> {
|
||||
// if (hallExist != null && hallExist) {
|
||||
// mBinding.llModuleHall.setVisibility(View.VISIBLE);
|
||||
// return;
|
||||
// }
|
||||
// mBinding.llModuleHall.setVisibility(View.GONE);
|
||||
// });
|
||||
// HallDataManager.get().registerName(this, name -> mBinding.tvModuleHall.setText(name));
|
||||
|
||||
if (TuTuGuideHelper.isNeedHiGuide(TuTuGuideHelper.KEY_GUIDE_ME_TAB)) {
|
||||
mBinding.meItemRadish.post(() -> {
|
||||
@@ -198,13 +176,13 @@ public class MeFragment extends BaseFragment implements View.OnClickListener {
|
||||
mBinding.tvUserId.setText(String.format(Locale.getDefault(),
|
||||
getString(R.string.text_user_id), String.valueOf(mUserInfo.getErbanNo())));
|
||||
|
||||
int nobleExpire = mUserInfo.getRemainDay();
|
||||
if (nobleExpire > -1) {
|
||||
mBinding.tvNobleRemainTime.setVisibility(View.VISIBLE);
|
||||
} else {
|
||||
mBinding.tvNobleRemainTime.setVisibility(View.GONE);
|
||||
}
|
||||
mBinding.tvNobleRemainTime.setText(getString(R.string.noble_remain_time, nobleExpire));
|
||||
// int nobleExpire = mUserInfo.getRemainDay();
|
||||
// if (nobleExpire > -1) {
|
||||
// mBinding.tvNobleRemainTime.setVisibility(View.VISIBLE);
|
||||
// } else {
|
||||
// mBinding.tvNobleRemainTime.setVisibility(View.GONE);
|
||||
// }
|
||||
// mBinding.tvNobleRemainTime.setText(getString(R.string.noble_remain_time, nobleExpire));
|
||||
|
||||
NobleInfo nobleInfo = mUserInfo.getNobleInfo();
|
||||
HeadWearInfo headWearInfo = mUserInfo.getUserHeadwear();
|
||||
@@ -215,7 +193,7 @@ public class MeFragment extends BaseFragment implements View.OnClickListener {
|
||||
NobleUtil.loadResource(NobleUtil.getBadgeByLevel(nobleInfo.getLevel()), mBinding.ivUserNobleLevel);
|
||||
} else {
|
||||
mBinding.ivUserNobleLevel.setVisibility(View.GONE);
|
||||
mBinding.tvNobleRemainTime.setVisibility(View.GONE);
|
||||
// mBinding.tvNobleRemainTime.setVisibility(View.GONE);
|
||||
}
|
||||
NobleUtil.loadHeadWear(headWearInfo.getPic(), mBinding.ivAvatarHeadWear);
|
||||
} else if (nobleInfo != null) {
|
||||
@@ -226,7 +204,7 @@ public class MeFragment extends BaseFragment implements View.OnClickListener {
|
||||
} else {
|
||||
mBinding.ivAvatarHeadWear.setImageDrawable(null);
|
||||
mBinding.ivUserNobleLevel.setVisibility(View.GONE);
|
||||
mBinding.tvNobleRemainTime.setVisibility(View.GONE);
|
||||
// mBinding.tvNobleRemainTime.setVisibility(View.GONE);
|
||||
}
|
||||
|
||||
String star = StarUtils.getConstellation(new Date(mUserInfo.getBirth()));
|
||||
@@ -279,17 +257,17 @@ public class MeFragment extends BaseFragment implements View.OnClickListener {
|
||||
public void onClick(View v) {
|
||||
int id = v.getId();
|
||||
switch (id) {
|
||||
case R.id.me_item_my_family:
|
||||
|
||||
StatisticManager.Instance().onEvent(BasicConfig.INSTANCE.getAppContext(),
|
||||
StatisticsProtocol.Event.MY_FAMILY_CLICK, "我的家族入口", null);
|
||||
|
||||
String familyId = null;
|
||||
if (null != FamilyModel.Instance().getMyFamily()) {
|
||||
familyId = FamilyModel.Instance().getMyFamily().getFamilyId();
|
||||
}
|
||||
FamilyHomeActivity.start(mContext, familyId);
|
||||
break;
|
||||
// case R.id.me_item_my_family:
|
||||
//
|
||||
// StatisticManager.Instance().onEvent(BasicConfig.INSTANCE.getAppContext(),
|
||||
// StatisticsProtocol.Event.MY_FAMILY_CLICK, "我的家族入口", null);
|
||||
//
|
||||
// String familyId = null;
|
||||
// if (null != FamilyModel.Instance().getMyFamily()) {
|
||||
// familyId = FamilyModel.Instance().getMyFamily().getFamilyId();
|
||||
// }
|
||||
// FamilyHomeActivity.start(mContext, familyId);
|
||||
// break;
|
||||
case R.id.iv_user_head:
|
||||
case R.id.rl_user_info:
|
||||
if (mUserInfo != null) {
|
||||
@@ -310,90 +288,113 @@ public class MeFragment extends BaseFragment implements View.OnClickListener {
|
||||
|
||||
case R.id.tv_user_fans:
|
||||
|
||||
// case R.id.fl_me_charm:
|
||||
// CommonWebViewActivity.start(mContext, UriProvider.getUserCharmLevelUrl());
|
||||
// break;
|
||||
|
||||
case R.id.tv_user_fan_text:
|
||||
startActivity(new Intent(mContext, FansListActivity.class));
|
||||
break;
|
||||
|
||||
case R.id.me_item_wallet:
|
||||
UIHelper.showWalletAct(mContext);
|
||||
case R.id.ll_my_room:
|
||||
toast("我的房间");
|
||||
break;
|
||||
case R.id.me_item_patriarch:
|
||||
startActivity(new Intent(getActivity(), PatriarchModeActivity.class));
|
||||
break;
|
||||
case R.id.me_item_setting:
|
||||
UIHelper.showSettingAct(mContext);
|
||||
break;
|
||||
|
||||
case R.id.me_item_charge:
|
||||
startActivity(new Intent(mContext, WalletGoldActivity.class));
|
||||
case R.id.ll_collect_room:
|
||||
toast("收藏房间");
|
||||
break;
|
||||
|
||||
case R.id.me_item_radish:
|
||||
RadishRecordActivity.startActivity(mContext);
|
||||
break;
|
||||
|
||||
case R.id.me_item_noble:
|
||||
boolean isNoble = mNobleInfo != null && mNobleInfo.getLevel() > 0 || mUserInfo != null && mUserInfo.getNobleInfo() != null && mUserInfo.getNobleInfo().getLevel() > 0;
|
||||
if (isNoble) {
|
||||
CommonWebViewActivity.start(mContext, UriProvider.IM_SERVER_URL + "modules/nobles/homepage.html",
|
||||
new CommonWebViewActivity.WebViewCallBack() {
|
||||
@Override
|
||||
public void onResult(String str) {
|
||||
UserModel.get().updateCurrentUserInfo().subscribe();
|
||||
}
|
||||
});
|
||||
} else {
|
||||
CommonWebViewActivity.start(mContext, UriProvider.getNobleIntro(),
|
||||
new CommonWebViewActivity.WebViewCallBack() {
|
||||
@Override
|
||||
public void onResult(String str) {
|
||||
UserModel.get().updateCurrentUserInfo().subscribe();
|
||||
}
|
||||
});
|
||||
}
|
||||
case R.id.me_item_wallet:
|
||||
UIHelper.showWalletAct(mContext);
|
||||
break;
|
||||
|
||||
case R.id.fl_me_level:
|
||||
case R.id.me_item_level:
|
||||
CommonWebViewActivity.start(mContext, UriProvider.getUserLevelUrl());
|
||||
break;
|
||||
|
||||
case R.id.fl_me_charm:
|
||||
CommonWebViewActivity.start(mContext, UriProvider.getUserCharmLevelUrl());
|
||||
case R.id.me_item_decoration_store:
|
||||
startActivity(new Intent(mContext, MyDecorationActivity.class));
|
||||
break;
|
||||
|
||||
case R.id.me_item_car_shop:
|
||||
if (mUserInfo != null) {
|
||||
DecorationStoreActivity.start(mContext, mUserInfo.getUid());
|
||||
}
|
||||
break;
|
||||
case R.id.ll_module_hall:
|
||||
if (mUserInfo == null) {
|
||||
return;
|
||||
}
|
||||
ModuleHallActivity.start(mContext);
|
||||
case R.id.me_item_union:
|
||||
toast("我的公会");
|
||||
break;
|
||||
|
||||
case R.id.ll_approve:
|
||||
StatisticManager.Instance().onEvent(StatisticsProtocol.Event.personal_data_101prove, "101认证");
|
||||
|
||||
CommonWebViewActivity.start(getActivity(), UriProvider.getTutuAprove());
|
||||
case R.id.me_item_patriarch:
|
||||
startActivity(new Intent(getActivity(), PatriarchModeActivity.class));
|
||||
break;
|
||||
|
||||
case R.id.ll_authen:
|
||||
checkPermission(Manifest.permission.WRITE_EXTERNAL_STORAGE, Manifest.permission.CAMERA)
|
||||
.subscribe(result -> {
|
||||
if (result) {
|
||||
CommonWebViewActivity.start(getActivity(), UriProvider.getTutuRealNamePage());
|
||||
} else {
|
||||
SingleToastUtil.showToast(getString(R.string.ask_again));
|
||||
}
|
||||
});
|
||||
case R.id.me_item_setting:
|
||||
UIHelper.showSettingAct(mContext);
|
||||
break;
|
||||
|
||||
case R.id.ll_recommend_position:
|
||||
StatisticManager.Instance().onEvent(StatisticsProtocol.Event.EVENT_MY_RECOMMEND_CLICK, "我的推荐卡");
|
||||
MyRecommendCardActivity.start(getActivity());
|
||||
break;
|
||||
// case R.id.me_item_charge:
|
||||
// startActivity(new Intent(mContext, WalletGoldActivity.class));
|
||||
// break;
|
||||
|
||||
|
||||
|
||||
// case R.id.me_item_noble:
|
||||
// boolean isNoble = mNobleInfo != null && mNobleInfo.getLevel() > 0 || mUserInfo != null && mUserInfo.getNobleInfo() != null && mUserInfo.getNobleInfo().getLevel() > 0;
|
||||
// if (isNoble) {
|
||||
// CommonWebViewActivity.start(mContext, UriProvider.IM_SERVER_URL + "modules/nobles/homepage.html",
|
||||
// new CommonWebViewActivity.WebViewCallBack() {
|
||||
// @Override
|
||||
// public void onResult(String str) {
|
||||
// UserModel.get().updateCurrentUserInfo().subscribe();
|
||||
// }
|
||||
// });
|
||||
// } else {
|
||||
// CommonWebViewActivity.start(mContext, UriProvider.getNobleIntro(),
|
||||
// new CommonWebViewActivity.WebViewCallBack() {
|
||||
// @Override
|
||||
// public void onResult(String str) {
|
||||
// UserModel.get().updateCurrentUserInfo().subscribe();
|
||||
// }
|
||||
// });
|
||||
// }
|
||||
// break;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// case R.id.me_item_car_shop:
|
||||
// if (mUserInfo != null) {
|
||||
// DecorationStoreActivity.start(mContext, mUserInfo.getUid());
|
||||
// }
|
||||
// break;
|
||||
// case R.id.ll_module_hall:
|
||||
// if (mUserInfo == null) {
|
||||
// return;
|
||||
// }
|
||||
// ModuleHallActivity.start(mContext);
|
||||
// break;
|
||||
|
||||
// case R.id.ll_approve:
|
||||
// StatisticManager.Instance().onEvent(StatisticsProtocol.Event.personal_data_101prove, "101认证");
|
||||
//
|
||||
// CommonWebViewActivity.start(getActivity(), UriProvider.getTutuAprove());
|
||||
// break;
|
||||
|
||||
// case R.id.ll_authen:
|
||||
// checkPermission(Manifest.permission.WRITE_EXTERNAL_STORAGE, Manifest.permission.CAMERA)
|
||||
// .subscribe(result -> {
|
||||
// if (result) {
|
||||
// CommonWebViewActivity.start(getActivity(), UriProvider.getTutuRealNamePage());
|
||||
// } else {
|
||||
// SingleToastUtil.showToast(getString(R.string.ask_again));
|
||||
// }
|
||||
// });
|
||||
// break;
|
||||
|
||||
// case R.id.ll_recommend_position:
|
||||
// StatisticManager.Instance().onEvent(StatisticsProtocol.Event.EVENT_MY_RECOMMEND_CLICK, "我的推荐卡");
|
||||
// MyRecommendCardActivity.start(getActivity());
|
||||
// break;
|
||||
case R.id.ll_kf:
|
||||
getDialogManager().showOkCancelDialog("点击确认后将发起客户对话框,确认联系客服吗?",
|
||||
new DialogManager.OkCancelDialogListener() {
|
||||
@@ -429,7 +430,7 @@ public class MeFragment extends BaseFragment implements View.OnClickListener {
|
||||
public void onMarketVerifyUpdateEvent(MarketVerifyUpdateEvent event) {
|
||||
//审核包隐藏tab
|
||||
if (MarketVerifyModel.get().isMarketChecking()) {
|
||||
mBinding.meItemMyFamily.setVisibility(View.GONE);
|
||||
// mBinding.meItemMyFamily.setVisibility(View.GONE);
|
||||
}
|
||||
}
|
||||
|
||||
|
@@ -112,7 +112,7 @@ public class FindFragmentPresenter extends BaseMvpPresenter<IFindFragmentView> {
|
||||
return null;
|
||||
}
|
||||
VMTopMessageInfo topMessageInfo = new VMTopMessageInfo();
|
||||
topMessageInfo.setTitle("轻寻头条");
|
||||
topMessageInfo.setTitle("66陪玩头条");
|
||||
List<VMTopMessage> vmTopMessageList = new ArrayList<>();
|
||||
//组装成2个2个一组
|
||||
final int groupSize = 2;
|
||||
|
@@ -382,7 +382,7 @@ public class RecommendFragmentPresenter extends BaseMvpPresenter<IRecommendFragm
|
||||
}
|
||||
|
||||
} else if (homeInfo.getType() == HomeItem.TYPE_TOP_MESSAGE) {
|
||||
//轻寻头条数据
|
||||
//66陪玩头条数据
|
||||
//3.1.2开始不处理
|
||||
} else if (homeInfo.getType() == HomeItem.TYPE_RECOMMEND ||
|
||||
homeInfo.getType() == HomeItem.TYPE_CONFIG) {
|
||||
|
@@ -206,7 +206,7 @@ public class SignInActivity extends BaseMvpActivity<ISignInView, SignInPresenter
|
||||
builder.append("分享好友",
|
||||
new ForegroundColorSpan(getResources().getColor(R.color.appColor)))
|
||||
.append(" 即可获得补签机会\n")
|
||||
.append("分享后返回轻寻才有效哦~",
|
||||
.append("分享后返回66陪玩才有效哦~",
|
||||
new ForegroundColorSpan(getResources().getColor(R.color.color_999999)));
|
||||
okLabel = "分享好友";
|
||||
} else {
|
||||
|
@@ -81,10 +81,10 @@ public class TeamViewModel extends BaseViewModel {
|
||||
}
|
||||
|
||||
/**
|
||||
* 通过轻寻号搜索群聊成员
|
||||
* 通过66陪玩号搜索群聊成员
|
||||
*
|
||||
* @param chatId 群组 ID
|
||||
* @param erbanNo 轻寻号
|
||||
* @param erbanNo 66陪玩号
|
||||
* @param page 页码
|
||||
* @return
|
||||
*/
|
||||
|
@@ -94,7 +94,7 @@ public class RegisterActivity extends BaseActivity implements View.OnClickListen
|
||||
btnRegister = findViewById(R.id.btn_register);
|
||||
tvProtocol = findViewById(R.id.tv_protocol);
|
||||
|
||||
String userAgreementTip = "《轻寻用户协议》";
|
||||
String userAgreementTip = "《66陪玩用户协议》";
|
||||
String privacyAgreementDescTip = context.getString(R.string.text_login_protocol_2, userAgreementTip);
|
||||
SpannableString ss = new SpannableString(privacyAgreementDescTip);
|
||||
int userAgreementTipIndex = privacyAgreementDescTip.indexOf(userAgreementTip);
|
||||
|
@@ -25,7 +25,7 @@ public class ChargeAdapter extends BaseQuickAdapter<ChargeBean, BaseViewHolder>
|
||||
|
||||
baseViewHolder.setVisible(R.id.ll_gold_charge, !TextUtils.isEmpty(chargeBean.getProdName()));
|
||||
|
||||
baseViewHolder.setText(R.id.tv_money_gold, chargeBean.prodName.replace("轻寻", ""))
|
||||
baseViewHolder.setText(R.id.tv_money_gold, chargeBean.prodName.replace("66陪玩", ""))
|
||||
.setText(R.id.cb_money, mContext.getString(R.string.charge_number, chargeBean.money));
|
||||
|
||||
RelativeLayout rl_gold_charge = baseViewHolder.getView(R.id.ll_gold_charge);
|
||||
|
@@ -14,7 +14,7 @@ public class AboutActivity extends BaseActivity {
|
||||
protected void onCreate(Bundle savedInstanceState) {
|
||||
super.onCreate(savedInstanceState);
|
||||
setContentView(R.layout.activity_about);
|
||||
initTitleBar("关于轻寻");
|
||||
initTitleBar("关于66陪玩");
|
||||
initView();
|
||||
initData();
|
||||
}
|
||||
|
@@ -11,7 +11,7 @@
|
||||
// override fun onCreate(savedInstanceState: Bundle?) {
|
||||
// super.onCreate(savedInstanceState)
|
||||
// setContentView(R.layout.activity_about)
|
||||
// initTitleBar("关于轻寻")
|
||||
// initTitleBar("关于66陪玩")
|
||||
// initView()
|
||||
// initData()
|
||||
// }
|
||||
|
@@ -112,8 +112,8 @@ public class ShareDialog extends BottomSheetDialog implements View.OnClickListen
|
||||
if (type != TYPE_SHARE_H5) {
|
||||
onShareDialogItemClick.onInAppSharingItemClick();
|
||||
} else {
|
||||
// Toast.makeText(context, "该内容不能分享给轻寻好友", Toast.LENGTH_SHORT).show();
|
||||
SingleToastUtil.showToastShort("该内容不能分享给轻寻好友");
|
||||
// Toast.makeText(context, "该内容不能分享给66陪玩好友", Toast.LENGTH_SHORT).show();
|
||||
SingleToastUtil.showToastShort("该内容不能分享给66陪玩好友");
|
||||
}
|
||||
}
|
||||
dismiss();
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<solid android:color="#4d73e8" />
|
||||
<solid android:color="#30ffffff" />
|
||||
<corners android:radius="50dp" />
|
||||
</shape>
|
@@ -120,7 +120,7 @@
|
||||
android:id="@+id/tv_plan"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="轻寻护苗计划"
|
||||
android:text="66陪玩护苗计划"
|
||||
android:textColor="@color/color_FE4C62"
|
||||
android:textSize="12sp" />
|
||||
</LinearLayout>
|
||||
|
@@ -23,7 +23,7 @@
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:text="“轻寻”隐私政策"
|
||||
android:text="“66陪玩”隐私政策"
|
||||
android:textColor="#ff1b1b1b"
|
||||
android:textSize="16sp"
|
||||
android:textStyle="bold" />
|
||||
|
@@ -91,8 +91,8 @@
|
||||
android:id="@+id/iv_user_info_arrow_right"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginEnd="20dp"
|
||||
android:src="@drawable/arrow_right_2"
|
||||
android:layout_marginEnd="@dimen/dp_me_text_padding_to_icon"
|
||||
android:src="@drawable/arrow_right_white"
|
||||
app:layout_constraintBottom_toBottomOf="@+id/iv_user_head"
|
||||
app:layout_constraintRight_toRightOf="parent"
|
||||
app:layout_constraintTop_toTopOf="@+id/iv_user_head"
|
||||
@@ -101,8 +101,8 @@
|
||||
<com.yizhuan.erban.common.widget.CircleImageView
|
||||
android:id="@+id/iv_user_head"
|
||||
avatarUrl="@{userInfo.avatar}"
|
||||
android:layout_width="70dp"
|
||||
android:layout_height="70dp"
|
||||
android:layout_width="60dp"
|
||||
android:layout_height="60dp"
|
||||
android:layout_marginTop="30dp"
|
||||
android:layout_marginEnd="10dp"
|
||||
android:onClick="@{click}"
|
||||
@@ -112,8 +112,8 @@
|
||||
|
||||
<android.support.v7.widget.AppCompatImageView
|
||||
android:id="@+id/iv_avatar_head_wear"
|
||||
android:layout_width="100dp"
|
||||
android:layout_height="100dp"
|
||||
android:layout_width="90dp"
|
||||
android:layout_height="90dp"
|
||||
app:layout_constraintBottom_toBottomOf="@id/iv_user_head"
|
||||
app:layout_constraintLeft_toLeftOf="@id/iv_user_head"
|
||||
app:layout_constraintRight_toRightOf="@id/iv_user_head"
|
||||
@@ -161,7 +161,9 @@
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_vertical"
|
||||
app:layout_constraintLeft_toRightOf="@id/ll_id"
|
||||
app:layout_constraintTop_toTopOf="@id/ll_id">
|
||||
android:layout_marginStart="@dimen/dp_5"
|
||||
app:layout_constraintTop_toTopOf="@id/ll_id"
|
||||
app:layout_constraintBottom_toBottomOf="@id/ll_id">
|
||||
|
||||
<android.support.v7.widget.AppCompatImageView
|
||||
android:id="@+id/iv_user_noble_level"
|
||||
@@ -273,7 +275,7 @@
|
||||
android:weightSum="4"
|
||||
app:layout_constraintLeft_toLeftOf="parent"
|
||||
app:layout_constraintRight_toRightOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@id/iv_user_head"
|
||||
app:layout_constraintTop_toBottomOf="@id/iv_avatar_head_wear"
|
||||
tools:ignore="UselessParent">
|
||||
|
||||
<LinearLayout
|
||||
@@ -311,10 +313,10 @@
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/tv_user_fans"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_width="0dp"
|
||||
android:layout_weight="1"
|
||||
android:gravity="center"
|
||||
android:gravity="left|center_vertical"
|
||||
android:onClick="@{click}"
|
||||
android:orientation="vertical">
|
||||
|
||||
@@ -342,78 +344,113 @@
|
||||
|
||||
<View
|
||||
android:layout_width="1dp"
|
||||
android:layout_height="13dp"
|
||||
android:layout_height="@dimen/dp_30"
|
||||
android:background="#E6E6E6" />
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/fl_me_level"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_weight="1"
|
||||
android:gravity="center"
|
||||
android:onClick="@{click}"
|
||||
android:visibility="gone"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/iv_user_item_level"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_vertical"
|
||||
android:maxLines="1"
|
||||
android:text="@{@string/lv + String.valueOf(userInfo.userLevelVo.experLevelSeq)}"
|
||||
android:textColor="#333333"
|
||||
android:textSize="18sp"
|
||||
tools:text="Lv.1123" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_vertical"
|
||||
android:maxLines="1"
|
||||
android:text="@string/user_level"
|
||||
android:textColor="#666666"
|
||||
android:textSize="12sp" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<!-- <View-->
|
||||
<!-- android:layout_width="1dp"-->
|
||||
<!-- android:layout_height="13dp"-->
|
||||
<!-- android:background="#E6E6E6" />-->
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/fl_me_charm"
|
||||
android:layout_width="0dp"
|
||||
android:id="@+id/ll_my_room"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_width="0dp"
|
||||
android:layout_weight="1"
|
||||
android:gravity="center"
|
||||
android:visibility="gone"
|
||||
android:gravity="right|center_vertical"
|
||||
android:onClick="@{click}"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/iv_user_item_charm"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_vertical"
|
||||
android:maxLines="1"
|
||||
android:text="@{String.valueOf(userInfo.userLevelVo.charmLevelSeq)}"
|
||||
android:textColor="#333333"
|
||||
android:textSize="18sp"
|
||||
tools:text="9999" />
|
||||
android:layout_width="wrap_content"
|
||||
android:text="@string/my_room"
|
||||
android:drawableTop="@mipmap/icon_my_room"
|
||||
android:textColor="@color/color_CEC0FF"
|
||||
android:drawablePadding="@dimen/dp_3"
|
||||
/>
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_collect_room"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_width="0dp"
|
||||
android:layout_weight="1"
|
||||
android:gravity="center"
|
||||
android:onClick="@{click}"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_vertical"
|
||||
android:maxLines="1"
|
||||
android:text="@string/charm_level"
|
||||
android:textColor="#666666"
|
||||
android:textSize="12sp" />
|
||||
android:layout_width="wrap_content"
|
||||
android:drawableTop="@mipmap/icon_collect_room"
|
||||
android:text="@string/collect_room"
|
||||
android:drawablePadding="@dimen/dp_3"
|
||||
android:textColor="@color/color_CEC0FF"
|
||||
/>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
|
||||
|
||||
<!-- <LinearLayout-->
|
||||
<!-- android:id="@+id/fl_me_level"-->
|
||||
<!-- android:layout_width="0dp"-->
|
||||
<!-- android:layout_height="match_parent"-->
|
||||
<!-- android:layout_weight="1"-->
|
||||
<!-- android:gravity="center"-->
|
||||
<!-- android:onClick="@{click}"-->
|
||||
<!-- android:orientation="vertical">-->
|
||||
|
||||
<!-- <TextView-->
|
||||
<!-- android:id="@+id/iv_user_item_level"-->
|
||||
<!-- android:layout_width="wrap_content"-->
|
||||
<!-- android:layout_height="wrap_content"-->
|
||||
<!-- android:gravity="center_vertical"-->
|
||||
<!-- android:maxLines="1"-->
|
||||
<!-- android:text="@{@string/lv + String.valueOf(userInfo.userLevelVo.experLevelSeq)}"-->
|
||||
<!-- android:textColor="#333333"-->
|
||||
<!-- android:textSize="18sp"-->
|
||||
<!-- tools:text="Lv.1123" />-->
|
||||
|
||||
<!-- <TextView-->
|
||||
<!-- android:layout_width="wrap_content"-->
|
||||
<!-- android:layout_height="wrap_content"-->
|
||||
<!-- android:gravity="center_vertical"-->
|
||||
<!-- android:maxLines="1"-->
|
||||
<!-- android:text="@string/user_level"-->
|
||||
<!-- android:textColor="@color/color_CEC0FF"-->
|
||||
<!-- android:textSize="@dimen/sp_11" />-->
|
||||
|
||||
<!-- </LinearLayout>-->
|
||||
|
||||
<!-- <LinearLayout-->
|
||||
<!-- android:id="@+id/fl_me_charm"-->
|
||||
<!-- android:layout_width="0dp"-->
|
||||
<!-- android:layout_height="match_parent"-->
|
||||
<!-- android:layout_weight="1"-->
|
||||
<!-- android:gravity="center"-->
|
||||
<!-- android:onClick="@{click}"-->
|
||||
<!-- android:orientation="vertical">-->
|
||||
|
||||
<!-- <TextView-->
|
||||
<!-- android:id="@+id/iv_user_item_charm"-->
|
||||
<!-- android:layout_width="wrap_content"-->
|
||||
<!-- android:layout_height="wrap_content"-->
|
||||
<!-- android:gravity="center_vertical"-->
|
||||
<!-- android:maxLines="1"-->
|
||||
<!-- android:text="@{String.valueOf(userInfo.userLevelVo.charmLevelSeq)}"-->
|
||||
<!-- android:textColor="#333333"-->
|
||||
<!-- android:textSize="18sp"-->
|
||||
<!-- tools:text="9999" />-->
|
||||
|
||||
<!-- <TextView-->
|
||||
<!-- android:layout_width="wrap_content"-->
|
||||
<!-- android:layout_height="wrap_content"-->
|
||||
<!-- android:gravity="center_vertical"-->
|
||||
<!-- android:maxLines="1"-->
|
||||
<!-- android:text="@string/charm_level"-->
|
||||
<!-- android:textColor="@color/color_CEC0FF"-->
|
||||
<!-- android:textSize="@dimen/sp_11" />-->
|
||||
|
||||
<!-- </LinearLayout>-->
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
</android.support.constraint.ConstraintLayout>
|
||||
@@ -427,8 +464,6 @@
|
||||
android:layout_marginRight="15dp"
|
||||
android:layout_marginTop="@dimen/dp_15"
|
||||
android:background="@drawable/bg_corner_shadow_12"
|
||||
android:paddingTop="20dp"
|
||||
android:paddingBottom="16dp"
|
||||
android:orientation="vertical"
|
||||
android:layout_below="@id/rl_user_info"
|
||||
android:gravity="center_vertical">
|
||||
@@ -436,56 +471,59 @@
|
||||
<LinearLayout
|
||||
android:id="@+id/me_item_radish"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="55dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_vertical"
|
||||
android:onClick="@{click}"
|
||||
android:orientation="horizontal"
|
||||
android:paddingStart="@dimen/dp_me_padding_left"
|
||||
android:paddingEnd="15dp"
|
||||
tools:ignore="UseCompoundDrawables">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="@dimen/dp_me_icon_width"
|
||||
android:layout_height="@dimen/dp_me_icon_height"
|
||||
android:src="@mipmap/ic_me_radish"
|
||||
tools:ignore="ContentDescription" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="0dp"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="@dimen/dp_me_text_padding_to_icon"
|
||||
android:layout_weight="1"
|
||||
android:drawableStart="@mipmap/ic_me_radish"
|
||||
android:text="@string/label_my_radish"
|
||||
android:layout_marginStart="@dimen/dp_me_text_padding_to_icon"
|
||||
android:drawablePadding="@dimen/dp_me_text_padding_to_icon"
|
||||
android:gravity="center_vertical"
|
||||
android:drawableEnd="@drawable/arrow_right"
|
||||
android:paddingTop="@dimen/dp_20"
|
||||
android:paddingBottom="@dimen/dp_20"
|
||||
android:textColor="@color/color_333333"
|
||||
android:textSize="16sp" />
|
||||
android:textSize="13sp" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<View
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="1dp"
|
||||
android:layout_marginStart="@dimen/dp_me_text_padding_to_icon"
|
||||
android:layout_marginEnd="@dimen/dp_me_text_padding_to_icon"
|
||||
android:background="#F5F5F5" />
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/me_item_wallet"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="55dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_vertical"
|
||||
android:onClick="@{click}"
|
||||
android:orientation="horizontal"
|
||||
android:paddingStart="@dimen/dp_me_padding_left"
|
||||
android:paddingEnd="15dp"
|
||||
tools:ignore="UseCompoundDrawables">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="@dimen/dp_me_icon_width"
|
||||
android:layout_height="@dimen/dp_me_icon_height"
|
||||
android:src="@mipmap/icon_wallet"
|
||||
tools:ignore="ContentDescription" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="0dp"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="@dimen/dp_me_text_padding_to_icon"
|
||||
android:layout_weight="1"
|
||||
android:drawableStart="@mipmap/icon_wallet"
|
||||
android:text="@string/menu_my_income"
|
||||
android:layout_marginStart="@dimen/dp_me_text_padding_to_icon"
|
||||
android:drawablePadding="@dimen/dp_me_text_padding_to_icon"
|
||||
android:gravity="center_vertical"
|
||||
android:drawableEnd="@drawable/arrow_right"
|
||||
android:paddingTop="@dimen/dp_20"
|
||||
android:paddingBottom="@dimen/dp_20"
|
||||
android:textColor="@color/color_333333"
|
||||
android:textSize="16sp" />
|
||||
android:textSize="13sp" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
@@ -500,108 +538,102 @@
|
||||
android:layout_marginRight="15dp"
|
||||
android:layout_marginTop="@dimen/dp_15"
|
||||
android:background="@drawable/bg_corner_shadow_12"
|
||||
android:paddingTop="20dp"
|
||||
android:paddingBottom="16dp"
|
||||
android:orientation="vertical"
|
||||
android:gravity="center_vertical">
|
||||
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/me_item_charge"
|
||||
android:id="@+id/me_item_level"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="55dp"
|
||||
android:layout_marginTop="7dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_vertical"
|
||||
android:onClick="@{click}"
|
||||
android:orientation="horizontal"
|
||||
android:paddingStart="@dimen/dp_me_padding_left"
|
||||
android:paddingEnd="15dp"
|
||||
tools:ignore="UseCompoundDrawables">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="@dimen/dp_me_icon_width"
|
||||
android:layout_height="@dimen/dp_me_icon_height"
|
||||
android:src="@mipmap/ic_me_charge"
|
||||
tools:ignore="ContentDescription" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="@dimen/dp_13"
|
||||
android:layout_weight="1"
|
||||
android:text="@string/menu_my_gold_charge"
|
||||
android:textColor="@color/color_333333"
|
||||
android:textSize="16sp" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/me_item_noble"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="55dp"
|
||||
android:gravity="center_vertical"
|
||||
android:onClick="@{click}"
|
||||
android:orientation="horizontal"
|
||||
android:paddingStart="@dimen/dp_me_padding_left"
|
||||
android:paddingEnd="15dp">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="@dimen/dp_me_icon_width"
|
||||
android:layout_height="@dimen/dp_me_icon_height"
|
||||
android:src="@mipmap/ic_crown"
|
||||
tools:ignore="ContentDescription" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:drawableStart="@mipmap/icon_level"
|
||||
android:text="@string/menu_my_level"
|
||||
android:layout_marginStart="@dimen/dp_me_text_padding_to_icon"
|
||||
android:layout_weight="1"
|
||||
android:text="@string/me_noble_item_text"
|
||||
android:textColor="@color/color_333333"
|
||||
android:textSize="16sp" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_noble_remain_time"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:drawablePadding="@dimen/dp_me_text_padding_to_icon"
|
||||
android:gravity="center_vertical"
|
||||
android:textColor="@color/color_b3b3b3"
|
||||
android:textSize="14sp"
|
||||
tools:text="剩余30天到期" />
|
||||
android:drawableEnd="@drawable/arrow_right"
|
||||
android:paddingTop="@dimen/dp_20"
|
||||
android:paddingBottom="@dimen/dp_20"
|
||||
android:textColor="@color/color_333333"
|
||||
android:textSize="13sp" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/me_item_car_shop"
|
||||
<View
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="55dp"
|
||||
android:layout_height="1dp"
|
||||
android:layout_marginStart="@dimen/dp_me_text_padding_to_icon"
|
||||
android:layout_marginEnd="@dimen/dp_me_text_padding_to_icon"
|
||||
android:background="#F5F5F5" />
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/me_item_decoration_store"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_vertical"
|
||||
android:onClick="@{click}"
|
||||
android:orientation="horizontal"
|
||||
android:paddingStart="@dimen/dp_me_padding_left"
|
||||
android:paddingEnd="15dp"
|
||||
tools:ignore="UseCompoundDrawables">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="@dimen/dp_me_icon_width"
|
||||
android:layout_height="@dimen/dp_me_icon_height"
|
||||
android:src="@mipmap/ic_decoration_store"
|
||||
tools:ignore="ContentDescription" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="0dp"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:drawableStart="@mipmap/icon_decoration"
|
||||
android:text="@string/menu_my_decoration"
|
||||
android:layout_marginStart="@dimen/dp_me_text_padding_to_icon"
|
||||
android:layout_weight="1"
|
||||
android:text="@string/dress_up_mall"
|
||||
android:drawablePadding="@dimen/dp_me_text_padding_to_icon"
|
||||
android:gravity="center_vertical"
|
||||
android:drawableEnd="@drawable/arrow_right"
|
||||
android:paddingTop="@dimen/dp_20"
|
||||
android:paddingBottom="@dimen/dp_20"
|
||||
android:textColor="@color/color_333333"
|
||||
android:textSize="16sp" />
|
||||
android:textSize="13sp" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<View
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="1dp"
|
||||
android:layout_marginStart="@dimen/dp_me_text_padding_to_icon"
|
||||
android:layout_marginEnd="@dimen/dp_me_text_padding_to_icon"
|
||||
android:background="#F5F5F5" />
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/me_item_union"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_vertical"
|
||||
android:onClick="@{click}"
|
||||
android:orientation="horizontal"
|
||||
android:paddingEnd="15dp"
|
||||
tools:ignore="UseCompoundDrawables">
|
||||
|
||||
<TextView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:drawableStart="@mipmap/icon_union"
|
||||
android:text="@string/menu_my_union"
|
||||
android:layout_marginStart="@dimen/dp_me_text_padding_to_icon"
|
||||
android:drawablePadding="@dimen/dp_me_text_padding_to_icon"
|
||||
android:gravity="center_vertical"
|
||||
android:drawableEnd="@drawable/arrow_right"
|
||||
android:paddingTop="@dimen/dp_20"
|
||||
android:paddingBottom="@dimen/dp_20"
|
||||
android:textColor="@color/color_333333"
|
||||
android:textSize="13sp" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
|
||||
@@ -612,190 +644,44 @@
|
||||
android:layout_marginRight="15dp"
|
||||
android:layout_marginTop="@dimen/dp_15"
|
||||
android:background="@drawable/bg_corner_shadow_12"
|
||||
android:paddingTop="20dp"
|
||||
android:paddingBottom="16dp"
|
||||
android:orientation="vertical"
|
||||
android:layout_marginBottom="@dimen/dp_30"
|
||||
android:layout_below="@id/rl_user_info"
|
||||
android:gravity="center_vertical">
|
||||
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_recommend_position"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="55dp"
|
||||
android:onClick="@{click}"
|
||||
android:orientation="horizontal"
|
||||
android:paddingStart="@dimen/dp_me_padding_left"
|
||||
tools:ignore="RtlSymmetry,UseCompoundDrawables">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="@dimen/dp_me_icon_width"
|
||||
android:layout_height="@dimen/dp_me_icon_height"
|
||||
android:src="@mipmap/icon_me_recommend_entrance"
|
||||
tools:ignore="ContentDescription" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="55dp"
|
||||
android:layout_marginStart="@dimen/dp_me_text_padding_to_icon"
|
||||
android:gravity="center_vertical"
|
||||
android:text="@string/recommend_position"
|
||||
android:textColor="@color/color_333333"
|
||||
android:textSize="16sp" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/me_item_my_family"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="55dp"
|
||||
android:gravity="center_vertical"
|
||||
android:onClick="@{click}"
|
||||
android:orientation="horizontal"
|
||||
android:paddingStart="@dimen/dp_me_padding_left"
|
||||
android:paddingEnd="15dp"
|
||||
tools:ignore="UseCompoundDrawables">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="@dimen/dp_me_icon_width"
|
||||
android:layout_height="@dimen/dp_me_icon_height"
|
||||
android:src="@mipmap/ic_me_my_family"
|
||||
tools:ignore="ContentDescription" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="@dimen/dp_me_text_padding_to_icon"
|
||||
android:layout_weight="1"
|
||||
android:text="@string/my_family"
|
||||
android:textColor="@color/color_333333"
|
||||
android:textSize="16sp" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_module_hall"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="55dp"
|
||||
android:onClick="@{click}"
|
||||
android:orientation="horizontal"
|
||||
android:paddingStart="@dimen/dp_me_padding_left"
|
||||
android:paddingEnd="@dimen/dp_15"
|
||||
tools:ignore="UseCompoundDrawables">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="@dimen/dp_me_icon_width"
|
||||
android:layout_height="@dimen/dp_me_icon_height"
|
||||
android:src="@mipmap/icon_me_hall_entrance"
|
||||
tools:ignore="ContentDescription" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_module_hall"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="55dp"
|
||||
android:layout_marginStart="@dimen/dp_me_text_padding_to_icon"
|
||||
android:gravity="center_vertical"
|
||||
android:text="@string/module_hall"
|
||||
android:textColor="@color/color_333333"
|
||||
android:textSize="16sp" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/dp_10"
|
||||
android:gravity="center">
|
||||
|
||||
<View
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="1px"
|
||||
android:layout_marginStart="@dimen/dp_18"
|
||||
android:layout_marginEnd="@dimen/dp_18"
|
||||
android:background="@color/line_color" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_authen"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="55dp"
|
||||
android:onClick="@{click}"
|
||||
android:orientation="horizontal"
|
||||
android:paddingStart="@dimen/dp_me_padding_left"
|
||||
android:paddingEnd="@dimen/dp_15"
|
||||
tools:ignore="UseCompoundDrawables">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="@dimen/dp_me_icon_width"
|
||||
android:layout_height="@dimen/dp_me_icon_height"
|
||||
android:src="@mipmap/icon_identify"
|
||||
tools:ignore="ContentDescription" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="55dp"
|
||||
android:layout_marginStart="@dimen/dp_me_text_padding_to_icon"
|
||||
android:gravity="center_vertical"
|
||||
android:text="@string/real_name_authentication"
|
||||
android:textColor="@color/color_333333"
|
||||
android:textSize="16sp" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_approve"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="55dp"
|
||||
android:onClick="@{click}"
|
||||
android:orientation="horizontal"
|
||||
android:paddingStart="@dimen/dp_me_padding_left"
|
||||
android:paddingEnd="@dimen/dp_15"
|
||||
tools:ignore="UseCompoundDrawables">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="@dimen/dp_me_icon_width"
|
||||
android:layout_height="@dimen/dp_me_icon_height"
|
||||
android:src="@mipmap/ic_approve"
|
||||
tools:ignore="ContentDescription" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="55dp"
|
||||
android:layout_marginStart="@dimen/dp_me_text_padding_to_icon"
|
||||
android:gravity="center_vertical"
|
||||
android:text="@string/approve"
|
||||
android:textColor="@color/color_333333"
|
||||
android:textSize="16sp" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/me_item_patriarch"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="55dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_vertical"
|
||||
android:onClick="@{click}"
|
||||
android:orientation="horizontal"
|
||||
android:paddingStart="@dimen/dp_me_padding_left"
|
||||
android:paddingEnd="15dp"
|
||||
tools:ignore="UseCompoundDrawables">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="@dimen/dp_me_icon_width"
|
||||
android:layout_height="@dimen/dp_me_icon_height"
|
||||
android:src="@mipmap/icon_patriarch"
|
||||
tools:ignore="ContentDescription" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="0dp"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="@dimen/dp_me_text_padding_to_icon"
|
||||
android:layout_weight="1"
|
||||
android:drawableStart="@mipmap/icon_patriarch"
|
||||
android:text="@string/patriarch_mode"
|
||||
android:layout_marginStart="@dimen/dp_me_text_padding_to_icon"
|
||||
android:drawablePadding="@dimen/dp_me_text_padding_to_icon"
|
||||
android:gravity="center_vertical"
|
||||
android:drawableEnd="@drawable/arrow_right"
|
||||
android:paddingTop="@dimen/dp_20"
|
||||
android:paddingBottom="@dimen/dp_20"
|
||||
android:textColor="@color/color_333333"
|
||||
android:textSize="16sp" />
|
||||
android:textSize="13sp" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<View
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="1dp"
|
||||
android:layout_marginStart="@dimen/dp_me_text_padding_to_icon"
|
||||
android:layout_marginEnd="@dimen/dp_me_text_padding_to_icon"
|
||||
android:background="#F5F5F5" />
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/me_item_setting"
|
||||
android:layout_width="match_parent"
|
||||
@@ -803,24 +689,22 @@
|
||||
android:gravity="center_vertical"
|
||||
android:onClick="@{click}"
|
||||
android:orientation="horizontal"
|
||||
android:paddingStart="@dimen/dp_me_padding_left"
|
||||
android:paddingEnd="15dp"
|
||||
tools:ignore="UseCompoundDrawables">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="@dimen/dp_me_icon_width"
|
||||
android:layout_height="@dimen/dp_me_icon_height"
|
||||
android:src="@mipmap/icon_setting"
|
||||
tools:ignore="ContentDescription" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="0dp"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="@dimen/dp_me_text_padding_to_icon"
|
||||
android:layout_weight="1"
|
||||
android:drawableStart="@mipmap/icon_setting"
|
||||
android:text="@string/menu_setting"
|
||||
android:layout_marginStart="@dimen/dp_me_text_padding_to_icon"
|
||||
android:drawablePadding="@dimen/dp_me_text_padding_to_icon"
|
||||
android:gravity="center_vertical"
|
||||
android:drawableEnd="@drawable/arrow_right"
|
||||
android:paddingTop="@dimen/dp_20"
|
||||
android:paddingBottom="@dimen/dp_20"
|
||||
android:textColor="@color/color_333333"
|
||||
android:textSize="16sp" />
|
||||
android:textSize="13sp" />
|
||||
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
|
@@ -37,7 +37,7 @@
|
||||
android:layout_marginBottom="27dp"
|
||||
android:textSize="@dimen/dialog_title_text_fnt"
|
||||
android:textColor="#F9E3AE"
|
||||
tools:text="轻寻送你一个现金红包" />
|
||||
tools:text="66陪玩送你一个现金红包" />
|
||||
|
||||
|
||||
</RelativeLayout>
|
||||
|
Before Width: | Height: | Size: 274 KiB After Width: | Height: | Size: 484 KiB |
Before Width: | Height: | Size: 4.4 KiB After Width: | Height: | Size: 808 B |
BIN
app/src/main/res/mipmap-xxhdpi/icon_collect_room.webp
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
app/src/main/res/mipmap-xxhdpi/icon_decoration.webp
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
app/src/main/res/mipmap-xxhdpi/icon_level.webp
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
app/src/main/res/mipmap-xxhdpi/icon_my_room.webp
Normal file
After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 3.9 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 3.6 KiB After Width: | Height: | Size: 1.4 KiB |
BIN
app/src/main/res/mipmap-xxhdpi/icon_union.png
Normal file
After Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 736 B |
@@ -241,7 +241,7 @@
|
||||
|
||||
<!-- 提示框的背景色 -->
|
||||
|
||||
<!--轻寻-->
|
||||
<!--66陪玩-->
|
||||
|
||||
|
||||
<!-- Background color for light LeBubbleView. -->
|
||||
@@ -486,7 +486,7 @@
|
||||
<color name="design_color">@color/color_FE4C62</color>
|
||||
<color name="color_9af5ef">#9af5ef</color>
|
||||
|
||||
<!-- 轻寻主题色 -->
|
||||
<!-- 66陪玩主题色 -->
|
||||
<color name="color_34EBDE">#34EBDE</color>
|
||||
|
||||
<color name="color_39EBDF">#39EBDF</color>
|
||||
|
@@ -202,7 +202,7 @@
|
||||
<dimen name="dp_me_icon_width">37dp</dimen>
|
||||
<dimen name="dp_me_icon_height">55dp</dimen>
|
||||
<dimen name="dp_me_padding_left">12dp</dimen>
|
||||
<dimen name="dp_me_text_padding_to_icon">13dp</dimen>
|
||||
<dimen name="dp_me_text_padding_to_icon">15dp</dimen>
|
||||
<dimen name="dp_drag_layout_bg_size">80dp</dimen>
|
||||
<dimen name="dp_drag_layout_avatar_size">55dp</dimen>
|
||||
|
||||
|
@@ -1,5 +1,5 @@
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<string name="app_name">轻寻</string>
|
||||
<string name="app_name">66陪玩</string>
|
||||
<string name="no_list_data">这里什么都没有</string>
|
||||
<string name="str_network_not_capable">网络不给力</string>
|
||||
<string name="network_error_reload">网络异常,加载失败</string>
|
||||
@@ -14,7 +14,7 @@
|
||||
<string name="title_activity_scrolling">ScrollingActivity</string>
|
||||
|
||||
|
||||
<string name="hint_login_account">请输入您的手机号/轻寻ID</string>
|
||||
<string name="hint_login_account">请输入您的手机号/66陪玩ID</string>
|
||||
<string name="hint_login_account_2">请输入您的手机号/兔兔ID</string>
|
||||
<string name="hint_login_password">请输入您的密码</string>
|
||||
<string name="hint_login_password_2">请输入密码</string>
|
||||
@@ -90,13 +90,16 @@
|
||||
<string name="bill_no_data_text">您还没有记录喔</string>
|
||||
|
||||
<string name="menu_my_wallet">我的钱包</string>
|
||||
<string name="menu_my_income">礼物收入</string>
|
||||
<string name="menu_my_income">我的礼物票</string>
|
||||
<string name="menu_my_level">我的等级</string>
|
||||
<string name="menu_my_decoration">我的装饰</string>
|
||||
<string name="menu_my_union">我的公会</string>
|
||||
<string name="menu_my_gold_charge">金币/充值</string>
|
||||
<string name="menu_my_auction">竞拍记录</string>
|
||||
<string name="menu_setting">设置</string>
|
||||
|
||||
<string name="room_offline">房主已下线</string>
|
||||
<string name="root_offline_notice">更多好玩的房间在轻寻等您哟!去看看!</string>
|
||||
<string name="root_offline_notice">更多好玩的房间在66陪玩等您哟!去看看!</string>
|
||||
<string name="home">主页</string>
|
||||
<string name="back">返回</string>
|
||||
<string name="fan">粉丝</string>
|
||||
@@ -108,7 +111,7 @@
|
||||
<string name="friend">好友</string>
|
||||
<string name="attention">关注</string>
|
||||
<string name="no_frenids_text">你还没有添加任何好友哦! \n快去添加好友吧!</string>
|
||||
<string name="no_fan_text">你还没有任何轻寻粉丝哦!</string>
|
||||
<string name="no_fan_text">你还没有任何66陪玩粉丝哦!</string>
|
||||
<string name="bind_your_alipay">请先绑定您的支付宝帐号</string>
|
||||
<string name="my_jewel">我的钻石余额</string>
|
||||
<string name="jewel_withdraw">钻石可以用于提现,兑换比率1元=10钻</string>
|
||||
@@ -141,11 +144,11 @@
|
||||
|
||||
|
||||
<!--我的页面-->
|
||||
<string name="me_user_id">轻寻号:%d</string>
|
||||
<string name="me_user_id">66陪玩号:%d</string>
|
||||
<string name="my_attention">我的关注</string>
|
||||
<string name="my_fan">我的粉丝</string>
|
||||
|
||||
<string name="no_attention_text">你还没有关注任何轻寻好友哦! \n快去添加关注吧!</string>
|
||||
<string name="no_attention_text">你还没有关注任何66陪玩好友哦! \n快去添加关注吧!</string>
|
||||
<string name="search_hint">搜索昵称、ID、房间名</string>
|
||||
<string name="online">在线中…</string>
|
||||
<string name="me_customer_server">客服</string>
|
||||
@@ -239,7 +242,7 @@
|
||||
|
||||
<string name="pk_opponent_result"> 查看对方战绩></string>
|
||||
<string name="pk_mine_result"> 查看我的战绩></string>
|
||||
<string name="pk_tip_do_not_give_up">别气馁,轻寻永远支持你哦!</string>
|
||||
<string name="pk_tip_do_not_give_up">别气馁,66陪玩永远支持你哦!</string>
|
||||
|
||||
|
||||
<!--密聊-->
|
||||
@@ -321,7 +324,7 @@
|
||||
<string name="car_detail_price_days2">%1$d    有效期%2$d天</string>
|
||||
<string name="car_user_info_off_shelf">该车辆已下架,无法购买</string>
|
||||
<string name="car_dialog_content_before">开着你的车,驾着你的马</string>
|
||||
<string name="car_dialog_content_after">来轻寻尽情驰骋吧!</string>
|
||||
<string name="car_dialog_content_after">来66陪玩尽情驰骋吧!</string>
|
||||
<string name="car_shop_name">座驾商城</string>
|
||||
<string name="decoration_status_wrapper">%1$s</string>
|
||||
<string name="decoration_remainder">剩余</string>
|
||||
@@ -341,7 +344,7 @@
|
||||
|
||||
5 打爆怪兽的奖励将会随着怪兽的实力(血值)增加而增加,例如:打爆一只血值1000的怪兽将获得总价不少于1000金币的金币或者座驾奖励\n
|
||||
|
||||
6 若有疑问,请咨询轻寻客服微信:1213490\n
|
||||
6 若有疑问,请咨询66陪玩客服微信:1213490\n
|
||||
</string>
|
||||
<string name="text_monster_hunting_introduction">·玩法介绍·</string>
|
||||
<string name="text_ok">确定</string>
|
||||
@@ -405,7 +408,7 @@
|
||||
<string name="family_exit_family">退出家族</string>
|
||||
<string name="family_exit_family_tip">退出家族后您的家族币将无法使用\n重新加入即可还原,你真的要退出吗?</string>
|
||||
<string name="family_invite_friends">邀请好友</string>
|
||||
<string name="family_invite_friends_slogan">【轻寻】 用声音表达心情,用家族传承微笑。</string>
|
||||
<string name="family_invite_friends_slogan">【66陪玩】 用声音表达心情,用家族传承微笑。</string>
|
||||
<string name="family_join">加入</string>
|
||||
<string name="family_search_member_hint">搜索成员ID/昵称 </string>
|
||||
<string name="family_manage_title">家族管理</string>
|
||||
@@ -425,7 +428,7 @@
|
||||
<string name="family_join_valid_hint">加入家族身份验证</string>
|
||||
<string name="family_disband">解散家族</string>
|
||||
<string name="common_tip">提示</string>
|
||||
<string name="family_disband_tip1">需要联系客服才能解散家族哦~\n轻寻家族客服:%1$s</string>
|
||||
<string name="family_disband_tip1">需要联系客服才能解散家族哦~\n66陪玩家族客服:%1$s</string>
|
||||
<string name="family_contact_service">联系客服</string>
|
||||
<string name="family_join_tip">确认加入"%1$s"吗?</string>
|
||||
<string name="family_join_hint">我希望加入贵家族</string>
|
||||
@@ -517,7 +520,7 @@
|
||||
<string name="tab_title_friends">好友</string>
|
||||
<string name="tab_title_attentions">关注</string>
|
||||
<string name="tab_title_fans">粉丝</string>
|
||||
<string name="title_share_dialog">每天第一次分享免费领红包(不包含分享至轻寻好友)</string>
|
||||
<string name="title_share_dialog">每天第一次分享免费领红包(不包含分享至66陪玩好友)</string>
|
||||
<string name="text_share_erban_friends">好友</string>
|
||||
<string name="text_share_wechat_friends">微信好友</string>
|
||||
<string name="text_share_qq_friends">QQ好友</string>
|
||||
@@ -544,7 +547,7 @@
|
||||
<string name="tips_bind_alipay_sms_code">验证码将发送至您绑定的手机\"{0}\",请注意查收</string>
|
||||
<string name="home_more">更多</string>
|
||||
<string name="text_qq_login_erban_member">我是兔兔老用户</string>
|
||||
<string name="text_qq_login_tutu_member">我是轻寻新用户</string>
|
||||
<string name="text_qq_login_tutu_member">我是66陪玩新用户</string>
|
||||
<string name="text_login">登录</string>
|
||||
<string name="input_text_qq_id">请输入您耳伴绑定 QQ 的 ID</string>
|
||||
<string name="input_text_hint_password">请输入您的密码</string>
|
||||
@@ -555,7 +558,7 @@
|
||||
<string name="label_recall_title">亲爱的小孩:</string>
|
||||
<string name="label_recall_content">好久不见,翻起曾经一起度过的时光,期待你再次出现在身旁,谢谢你回来!</string>
|
||||
<string name="hint_recall_input">请输入邀请码(选填)</string>
|
||||
<string name="tips_recall">输入邀请码,邀请你加入的好友和你都可以获得轻寻回归计划的超级大礼哦!</string>
|
||||
<string name="tips_recall">输入邀请码,邀请你加入的好友和你都可以获得66陪玩回归计划的超级大礼哦!</string>
|
||||
<string name="label_recall_accept">收下回归礼</string>
|
||||
|
||||
<string name="label_user_info_avatar">头像:</string>
|
||||
@@ -665,7 +668,7 @@
|
||||
<string name="text_setting_community_norms">社区规范</string>
|
||||
<string name="text_setting_contact_us">联系官方</string>
|
||||
<string name="text_setting_help">帮助</string>
|
||||
<string name="text_setting_about">关于轻寻</string>
|
||||
<string name="text_setting_about">关于66陪玩</string>
|
||||
<string name="text_setting_check_for_update">检查版本</string>
|
||||
<string name="text_setting_lab">实验室</string>
|
||||
<string name="text_setting_logout">退出当前账号</string>
|
||||
@@ -704,7 +707,7 @@
|
||||
<string name="label_draw_gold">瓜分金币</string>
|
||||
<string name="label_draw_gold_reward">瓜分金币\n28天</string>
|
||||
<string name="sign_in_continue_number_days">已累计签到%d天</string>
|
||||
<string name="label_my_radish">萝卜账户</string>
|
||||
<string name="label_my_radish">我的账户</string>
|
||||
<string name="register_password_strong_tip">密码必须使用6–16个字符内的数字和英文字母组合哦!</string>
|
||||
<string name="register_password_strong_tip_2">密码必须6-16字符内数字英文组合哦!</string>
|
||||
<string name="text_bind">绑定</string>
|
||||
@@ -794,7 +797,7 @@
|
||||
<string name="new_user_task_content">萝卜X20</string>
|
||||
<string name="new_user_task_receive_award">领取奖励</string>
|
||||
<string name="new_user_task_hint">萝卜可用于送礼物、购买头饰座驾哦~</string>
|
||||
<string name="tip_privacy_agreement_content">欢迎您使用轻寻。我们将通过《隐私政策》和《用户协议》帮助您了解我们收集、使用、存储和共享个人信息的情况,特别是我们所采集的个人信息类型与用途的对应关系。\n\n为了保障产品的正常运行,我们会收集您的部分必要信息。我们可能会收集联络方式、地理位置等个人敏感信息,您有权拒绝向我们提供这些信息。我们不会向第三方共享、提供、转让或者从第三方获取您的个人信息,除非经过您的同意。</string>
|
||||
<string name="tip_privacy_agreement_content">欢迎您使用66陪玩。我们将通过《隐私政策》和《用户协议》帮助您了解我们收集、使用、存储和共享个人信息的情况,特别是我们所采集的个人信息类型与用途的对应关系。\n\n为了保障产品的正常运行,我们会收集您的部分必要信息。我们可能会收集联络方式、地理位置等个人敏感信息,您有权拒绝向我们提供这些信息。我们不会向第三方共享、提供、转让或者从第三方获取您的个人信息,除非经过您的同意。</string>
|
||||
<string name="tip_privacy_agreement_desc">您可以查看完整的%s和%s,如果您同意,请点击下方同意按钮开始接受我们的服务。</string>
|
||||
<string name="tip_privacy_agreement">《隐私政策》</string>
|
||||
<string name="tip_user_agreement">《用户协议》</string>
|
||||
@@ -802,7 +805,7 @@
|
||||
|
||||
<string name="label_charge_gold">金币充值</string>
|
||||
|
||||
<string name="old_app_name">轻寻</string>
|
||||
<string name="old_app_name">66陪玩</string>
|
||||
<string name="tip_login_how_login">如何登录?</string>
|
||||
<string name="tip_login_old_account">%s也可登录%s哦 %s</string>
|
||||
<string name="me_mentoring_relationship_title">收个徒弟赢金币</string>
|
||||
@@ -811,7 +814,7 @@
|
||||
<string name="tip_login_other_login">其他方式登录</string>
|
||||
<string name="tip_login_account_login">账号登录</string>
|
||||
|
||||
<string name="text_dialog_pm_notice">为呵护青少年健康成长,轻寻推出“青少年模式”,该模式下针对青少年推送精选优化的内容。</string>
|
||||
<string name="text_dialog_pm_notice">为呵护青少年健康成长,66陪玩推出“青少年模式”,该模式下针对青少年推送精选优化的内容。</string>
|
||||
<string name="to_set_pm">设置青少年模式</string>
|
||||
<string name="text_pm_set_pwd_tips">设置青少年模式的开启和关闭的数字密码</string>
|
||||
<string name="text_pm_close_pwd">青少年模式关闭密码</string>
|
||||
@@ -819,7 +822,7 @@
|
||||
<string name="qq_login">QQ登录</string>
|
||||
<string name="hint_input_nick">请输入昵称</string>
|
||||
<string name="text_bind_phone">绑定手机号</string>
|
||||
<string name="slogan">上轻寻,轻松寻觅对的TA</string>
|
||||
<string name="slogan">上66陪玩,轻松寻觅对的TA</string>
|
||||
|
||||
<string name="text_agree">同意</string>
|
||||
<string name="text_disagree">不同意</string>
|
||||
@@ -840,12 +843,12 @@
|
||||
|
||||
<string name="gold_give">金币转赠</string>
|
||||
<string name="donee">受赠人</string>
|
||||
<string name="done_hint_input_phone_or_id">请输入手机号/轻寻号</string>
|
||||
<string name="done_hint_input_phone_or_id">请输入手机号/66陪玩号</string>
|
||||
<string name="give_value">转赠金额</string>
|
||||
<string name="custom_input">自定义输入</string>
|
||||
<string name="give_immediately">立即转赠</string>
|
||||
<string name="my_give_record">我的转赠记录</string>
|
||||
<string name="send_gold_confirm_info">%1$s (轻寻号: %2$s)</string>
|
||||
<string name="send_gold_confirm_info">%1$s (66陪玩号: %2$s)</string>
|
||||
|
||||
<string name="back_login_page">返回登录页</string>
|
||||
<string name="privacy_setting">隐私设置</string>
|
||||
@@ -856,5 +859,7 @@
|
||||
<string name="label_search_history">搜索记录</string>
|
||||
<string name="label_room_history">进房记录</string>
|
||||
<string name="label_clear">清空</string>
|
||||
<string name="my_room">我的房间</string>
|
||||
<string name="collect_room">收藏房间</string>
|
||||
|
||||
</resources>
|
||||
|
@@ -105,7 +105,7 @@ public class CustomerServerModel extends BaseModel implements ICustomerServerMod
|
||||
.setIndex(1));
|
||||
|
||||
userData.add(new CustomerItemInfo("erbanNo")
|
||||
.setLabel("轻寻号:")
|
||||
.setLabel("66陪玩号:")
|
||||
.setValue(UserModel.get().getCacheLoginUserInfo().getErbanNo() + "")
|
||||
.setIndex(2));
|
||||
|
||||
|
@@ -11,7 +11,7 @@
|
||||
<string name="toast_unbind_bank_card_success">解除绑定银行卡成功</string>
|
||||
<string name="title_add_bank_card_agreement">用户服务协议及隐私政策</string>
|
||||
<string name="text_add_bank_card_agreement">
|
||||
尊敬的轻寻用户:\n\u3000\u3000为了更好地保障你的合法权益,
|
||||
尊敬的66陪玩用户:\n\u3000\u3000为了更好地保障你的合法权益,
|
||||
让你正常使用%s服务,%s公司依照国家法律法规,对支付账户进行实名制管理、
|
||||
履行反洗钱职责并采取风险防控措施。你需要向%s公司以及合作公司(汇聚支付)提交身份信息、
|
||||
联系方式、交易信息。\n\u3000\u3000%s公司将严格依据国家法律法规收集、存储、使用你的个人信息,确保信息安全。
|
||||
|
@@ -193,7 +193,7 @@ public class PublishActivity extends BaseMvpActivity<IPublishView, PublishPresen
|
||||
PublishItem item = imageShowList.get(position);
|
||||
if (item.isAddItem()) {
|
||||
LogUtil.print("跳转到图库");
|
||||
CaptureStrategy captureStrategy = new CaptureStrategy(true, "com.wudoo.qingxun.fileprovider",
|
||||
CaptureStrategy captureStrategy = new CaptureStrategy(true, "com.xuanyi.accompany.fileprovider",
|
||||
BasicConfig.INSTANCE.getImageDir().getAbsolutePath());
|
||||
int maxCanSelect = 9 - uploadList.size();
|
||||
Matisse.from(PublishActivity.this)
|
||||
|
@@ -32,7 +32,7 @@ public class HallSearchActivity extends SearchActivity{
|
||||
@Override
|
||||
protected void onCreate(Bundle savedInstanceState) {
|
||||
super.onCreate(savedInstanceState);
|
||||
searchEdit.setHint("搜索昵称/轻寻ID");
|
||||
searchEdit.setHint("搜索昵称/66陪玩ID");
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@@ -268,7 +268,7 @@ public class PwdCodeMgr {
|
||||
@Override
|
||||
public void onClickTutu() {
|
||||
StatisticManager.Instance().onEvent(
|
||||
StatisticsProtocol.Event.EVENT_HALL_ADDMEMBERS_USERID_CLICK, "添加成员-轻寻ID");
|
||||
StatisticsProtocol.Event.EVENT_HALL_ADDMEMBERS_USERID_CLICK, "添加成员-66陪玩ID");
|
||||
dialog.dismiss();
|
||||
HallSearchActivity.start(context, AbstractSelectFriendAction.TYPE_MODULE_HALL);
|
||||
}
|
||||
|
@@ -33,7 +33,7 @@
|
||||
|
||||
<EditText
|
||||
android:id="@+id/et_search"
|
||||
android:hint="搜索成员昵称/轻寻ID"
|
||||
android:hint="搜索成员昵称/66陪玩ID"
|
||||
android:textSize="@dimen/sp_13"
|
||||
android:textColor="@color/color_333333"
|
||||
android:textColorHint="@color/color_999999"
|
||||
|
@@ -44,7 +44,7 @@
|
||||
android:drawableTop="@drawable/lu_ic_share_tutu"
|
||||
android:drawablePadding="9dp"
|
||||
android:gravity="center"
|
||||
android:text="轻寻ID添加"
|
||||
android:text="66陪玩ID添加"
|
||||
android:textColor="@color/color_333333"
|
||||
android:textSize="@dimen/sp_12" />
|
||||
<TextView
|
||||
|
@@ -29,7 +29,7 @@
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:textColor="@color/color_333333"
|
||||
tools:text="轻寻女神厅"
|
||||
tools:text="66陪玩女神厅"
|
||||
android:layout_centerVertical="true" />
|
||||
|
||||
<com.coorchice.library.SuperTextView
|
||||
|
@@ -25,7 +25,7 @@
|
||||
app:layout_constraintStart_toEndOf="@id/riv_group_image"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
android:text="轻寻女神"
|
||||
android:text="66陪玩女神"
|
||||
android:textSize="15dp" />
|
||||
|
||||
<TextView
|
||||
|
@@ -20,7 +20,7 @@
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_tips"
|
||||
android:text="轻寻:您收到一条收徒消息哦!"
|
||||
android:text="66陪玩:您收到一条收徒消息哦!"
|
||||
android:textSize="@dimen/dp_13"
|
||||
android:textColor="@color/color_333333"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
|
@@ -99,7 +99,7 @@
|
||||
android:layout_marginStart="@dimen/dp_10"
|
||||
android:layout_marginTop="@dimen/dp_20"
|
||||
android:layout_marginEnd="@dimen/dp_10"
|
||||
android:text="小哥哥你就从了我吧,做我徒弟,以后我们一起浪迹轻寻,你是风儿我是沙!"
|
||||
android:text="小哥哥你就从了我吧,做我徒弟,以后我们一起浪迹66陪玩,你是风儿我是沙!"
|
||||
android:textColor="@color/color_1A1A1A"
|
||||
android:textSize="@dimen/dp_14"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
|
@@ -101,7 +101,7 @@
|
||||
app:layout_constraintStart_toStartOf="@+id/ll_mission_steps"
|
||||
app:layout_constraintTop_toBottomOf="@+id/ll_mission_steps"
|
||||
tools:ignore="SpUsage"
|
||||
tools:text="轻寻所有问题都可以问Ta哦~" />
|
||||
tools:text="66陪玩所有问题都可以问Ta哦~" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/btn_action"
|
||||
|
@@ -262,8 +262,8 @@ public class PublicChatHallMessageFragment extends TFragment implements ModulePr
|
||||
|
||||
@Subscribe(threadMode = ThreadMode.MAIN)
|
||||
public void onAntiSpamEvent(AntiSpamEvent event) {
|
||||
// Toast.makeText(getContext(), "发送失败,轻寻提醒您文明用语~", Toast.LENGTH_SHORT).show();
|
||||
SingleToastUtil.showToastShort("发送失败,轻寻提醒您文明用语~");
|
||||
// Toast.makeText(getContext(), "发送失败,66陪玩提醒您文明用语~", Toast.LENGTH_SHORT).show();
|
||||
SingleToastUtil.showToastShort("发送失败,66陪玩提醒您文明用语~");
|
||||
}
|
||||
|
||||
@Subscribe(threadMode = ThreadMode.MAIN)
|
||||
@@ -542,7 +542,7 @@ public class PublicChatHallMessageFragment extends TFragment implements ModulePr
|
||||
ImGameMode.get().setImGameInfo(imGameInfo1.setUuId(imMessage.getUuid()));
|
||||
} else {
|
||||
if (throwable.getMessage().contains("13004")) {
|
||||
SingleToastUtil.showToast("你已被禁言,剩余" + PublicChatHallDataManager.get().mOwnerMember.getTempMuteDuration() / 60 + "分钟。轻寻提醒您文明用语");
|
||||
SingleToastUtil.showToast("你已被禁言,剩余" + PublicChatHallDataManager.get().mOwnerMember.getTempMuteDuration() / 60 + "分钟。66陪玩提醒您文明用语");
|
||||
}
|
||||
throwable.printStackTrace();
|
||||
}
|
||||
@@ -611,7 +611,7 @@ public class PublicChatHallMessageFragment extends TFragment implements ModulePr
|
||||
if (throwable != null) {
|
||||
String throwableMessage = throwable.getMessage();
|
||||
if (throwable.getMessage().contains("13004")) {
|
||||
SingleToastUtil.showToast("你已被禁言,剩余" + PublicChatHallDataManager.get().mOwnerMember.getTempMuteDuration() / 60 + "分钟。轻寻提醒您文明用语");
|
||||
SingleToastUtil.showToast("你已被禁言,剩余" + PublicChatHallDataManager.get().mOwnerMember.getTempMuteDuration() / 60 + "分钟。66陪玩提醒您文明用语");
|
||||
} else {
|
||||
// Toast.makeText(NimUIKit.getContext(), throwableMessage, Toast.LENGTH_SHORT).show();
|
||||
SingleToastUtil.showToastShort(throwableMessage);
|
||||
|
@@ -27,7 +27,7 @@ android {
|
||||
}
|
||||
|
||||
sourceSets {
|
||||
qingxun {
|
||||
accompany {
|
||||
java.srcDirs = [
|
||||
'src/main/java',
|
||||
'src/diff_src_erban/java',
|
||||
@@ -72,7 +72,7 @@ android {
|
||||
}
|
||||
|
||||
productFlavors{
|
||||
qingxun {
|
||||
accompany {
|
||||
dimension 'default'
|
||||
}
|
||||
mengsheng{
|
||||
|
@@ -11,12 +11,12 @@ public class XChatConstants {
|
||||
/**
|
||||
* 包名(各种缓存目录的根目录)
|
||||
*/
|
||||
public static final String XCHAT_DIR_NAME = "com.wudoo.qingxun";
|
||||
public static final String XCHAT_DIR_NAME = "com.xuanyi.accompany";
|
||||
|
||||
/**
|
||||
* sp名字
|
||||
*/
|
||||
public static final String XCHAT_SHARE_PREFERENCE_NAME = "qx_share_data";
|
||||
public static final String XCHAT_SHARE_PREFERENCE_NAME = "accompany_share_data";
|
||||
|
||||
/**
|
||||
* 加密接口参数
|
||||
@@ -31,7 +31,7 @@ public class XChatConstants {
|
||||
/**
|
||||
* 本地数据库的名字(目前是用 realm 数据库)
|
||||
*/
|
||||
public static final String XCHAT_DATABASE_NAME = "qx.db";
|
||||
public static final String XCHAT_DATABASE_NAME = "accompany.db";
|
||||
|
||||
/**
|
||||
* 微信支付 APP ID
|
||||
@@ -41,12 +41,12 @@ public class XChatConstants {
|
||||
/**
|
||||
* bugly key (DEBUG)
|
||||
*/
|
||||
public static final String BUGLY_KEY_DEBUG = "0a1c8049b9";
|
||||
public static final String BUGLY_KEY_DEBUG = "f251d1616b";//已更改
|
||||
|
||||
/**
|
||||
* bugly key (RELEASE)
|
||||
*/
|
||||
public static final String BUGLY_KEY_RELEASE = "3ffe6f95c2";
|
||||
public static final String BUGLY_KEY_RELEASE = "d2dec194c0";//已更改
|
||||
|
||||
/**
|
||||
* 云信 key (DEBUG)
|
||||
@@ -105,21 +105,21 @@ public class XChatConstants {
|
||||
/**
|
||||
* 阿里云日志空间名字
|
||||
*/
|
||||
public static final String ALIYUN_LOG_NAME = "qingxunlog";
|
||||
public static final String ALIYUN_LOG_NAME = "66accompanylog";
|
||||
/**
|
||||
* 阿里云日志空间名字
|
||||
*/
|
||||
public static final String ALIYUN_LOG_STORE = "qingxunlog";
|
||||
public static final String ALIYUN_LOG_STORE = "66accompanylog";
|
||||
|
||||
/**
|
||||
* 百度统计 key
|
||||
*/
|
||||
public static final String BAIDU_APP_KEY = "a9d2302aef";
|
||||
public static final String BAIDU_APP_KEY = "b8a4cb4bd1";//已更改
|
||||
|
||||
/**
|
||||
* 友盟统计 key
|
||||
*/
|
||||
public static final String UMENG_APP_KEY = "5d3ac7853fc19591d2000384";
|
||||
public static final String UMENG_APP_KEY = "5e86d850978eea071c37bf48";//已更改
|
||||
|
||||
/**
|
||||
* linkedMe key
|
||||
@@ -149,7 +149,7 @@ public class XChatConstants {
|
||||
/**
|
||||
* 分享房间标题
|
||||
*/
|
||||
public static final String SHARE_ROOM_TITLE = "上轻寻,轻松寻觅对的TA";
|
||||
public static final String SHARE_ROOM_TITLE = "上66陪玩,轻松寻觅对的TA";
|
||||
|
||||
/**
|
||||
* 分享房间 URL
|
||||
@@ -164,7 +164,7 @@ public class XChatConstants {
|
||||
/**
|
||||
* 分享家族标题
|
||||
*/
|
||||
public static final String SHARE_FAMILY_TITLE = "hi,我想邀请您加入我的轻寻家族:";
|
||||
public static final String SHARE_FAMILY_TITLE = "hi,我想邀请您加入我的66陪玩家族:";
|
||||
|
||||
/**
|
||||
* 分享家族 URL
|
||||
@@ -179,7 +179,7 @@ public class XChatConstants {
|
||||
/**
|
||||
* 分享群组标题
|
||||
*/
|
||||
public static final String SHARE_TEAM_TITLE = "hi,我想邀请您加入我的轻寻群聊:";
|
||||
public static final String SHARE_TEAM_TITLE = "hi,我想邀请您加入我的66陪玩群聊:";
|
||||
|
||||
/**
|
||||
* 分享群组 URL
|
||||
|
@@ -209,7 +209,7 @@ public class UriProvider {
|
||||
}
|
||||
|
||||
/**
|
||||
* 轻寻专属,实名认证页面
|
||||
* 66陪玩专属,实名认证页面
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
@@ -218,7 +218,7 @@ public class UriProvider {
|
||||
}
|
||||
|
||||
/**
|
||||
* 轻寻专属,101技能认证页面
|
||||
* 66陪玩专属,101技能认证页面
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
|
@@ -11,7 +11,7 @@ public class RoomTabInfo implements Serializable {
|
||||
* uid : 2
|
||||
* officeUser : 1
|
||||
* roomId : 58892673
|
||||
* title : 轻寻张展伟的房间
|
||||
* title : 66陪玩张展伟的房间
|
||||
* type : 5
|
||||
* meetingName : edc36c59bc9b449bb5bb58ac17b9c0b4
|
||||
* valid : true
|
||||
|
@@ -5,7 +5,7 @@ import java.util.List;
|
||||
public class Test {
|
||||
|
||||
/**
|
||||
* data : [{"uid":2,"officeUser":1,"roomId":58892673,"title":"轻寻张展伟的房间","type":5,"meetingName":"edc36c59bc9b449bb5bb58ac17b9c0b4","valid":true,"operatorStatus":1,"avatar":"https://img.erbanyy.com/FikxU2u59uOjPVS1Sv_zfu4icqMS?imageslim","roomDesc":"","backPic":"","openTime":1545018501000,"onlineNum":1,"abChannelType":1,"roomPwd":"","roomTag":"聊天","calcSumDataIndex":0,"tagId":8,"tagPict":"https://img.erbanyy.com/new_tag_%E8%81%8A%E5%A4%A9@3x.png","badge":"","isPermitRoom":2,"isRecom":0,"count":0,"hasAnimationEffect":true,"audioQuality":1,"isCloseScreen":false,"hasDragonGame":true,"hasKTVPriv":true,"isOpenKTV":false,"isOpenGame":true,"roomModeType":0,"roomGame":{"roomId":58892673,"uid":2,"startUid":2,"gameId":"doushouqi1","gameName":"doushouqi1","status":5,"createTime":1548856711000,"updateTime":1548856711000},"isExceptionClose":false,"exceptionClose":false}]
|
||||
* data : [{"uid":2,"officeUser":1,"roomId":58892673,"title":"66陪玩张展伟的房间","type":5,"meetingName":"edc36c59bc9b449bb5bb58ac17b9c0b4","valid":true,"operatorStatus":1,"avatar":"https://img.erbanyy.com/FikxU2u59uOjPVS1Sv_zfu4icqMS?imageslim","roomDesc":"","backPic":"","openTime":1545018501000,"onlineNum":1,"abChannelType":1,"roomPwd":"","roomTag":"聊天","calcSumDataIndex":0,"tagId":8,"tagPict":"https://img.erbanyy.com/new_tag_%E8%81%8A%E5%A4%A9@3x.png","badge":"","isPermitRoom":2,"isRecom":0,"count":0,"hasAnimationEffect":true,"audioQuality":1,"isCloseScreen":false,"hasDragonGame":true,"hasKTVPriv":true,"isOpenKTV":false,"isOpenGame":true,"roomModeType":0,"roomGame":{"roomId":58892673,"uid":2,"startUid":2,"gameId":"doushouqi1","gameName":"doushouqi1","status":5,"createTime":1548856711000,"updateTime":1548856711000},"isExceptionClose":false,"exceptionClose":false}]
|
||||
* title : 墙裂推荐
|
||||
* type : 1
|
||||
* maxNum : 3
|
||||
@@ -53,7 +53,7 @@ public class Test {
|
||||
* uid : 2
|
||||
* officeUser : 1
|
||||
* roomId : 58892673
|
||||
* title : 轻寻张展伟的房间
|
||||
* title : 66陪玩张展伟的房间
|
||||
* type : 5
|
||||
* meetingName : edc36c59bc9b449bb5bb58ac17b9c0b4
|
||||
* valid : true
|
||||
|
@@ -754,7 +754,7 @@ public class HomeModel extends BaseModel implements IHomeModel {
|
||||
/**
|
||||
* 新版首页获取导航栏列表和下拉选择列表
|
||||
*
|
||||
* @param type 1-导航栏 2-首页下方的banner 3 轻寻的banner
|
||||
* @param type 1-导航栏 2-首页下方的banner 3 66陪玩的banner
|
||||
* @return
|
||||
*/
|
||||
@GET("home/v5/getFirstPageBanner")
|
||||
|
@@ -181,7 +181,7 @@ public interface IHomeModel extends IModel {
|
||||
Single<ArrayList<BannerInfo>> getTabBanner(String tabId);
|
||||
|
||||
/**
|
||||
* 轻寻顶部 banner信息
|
||||
* 66陪玩顶部 banner信息
|
||||
* 包含3部分,顶部banner,测一测那个列表,标签页
|
||||
*/
|
||||
Single<HomeBannerInfo> getQxBannerInfo();
|
||||
|
@@ -585,7 +585,7 @@ public class AuthModel extends BaseModel implements IAuthModel {
|
||||
}
|
||||
|
||||
/**
|
||||
* 账号密码登录(耳伴老用户绑定 QQ 号登录轻寻)
|
||||
* 账号密码登录(耳伴老用户绑定 QQ 号登录66陪玩)
|
||||
*
|
||||
* @param account
|
||||
* @param password
|
||||
@@ -1397,7 +1397,7 @@ public class AuthModel extends BaseModel implements IAuthModel {
|
||||
@Query("shuMeiDeviceId") String shuMeiDeviceId);
|
||||
|
||||
/**
|
||||
* 轻寻上耳伴老用户用 QQ 登录时,判断 QQ 的 open id 是否存在
|
||||
* 66陪玩上耳伴老用户用 QQ 登录时,判断 QQ 的 open id 是否存在
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
|
@@ -257,7 +257,7 @@ public class RoomSettingModel extends BaseMvpModel {
|
||||
|
||||
/**
|
||||
* 更新房间设置信息
|
||||
* 轻寻项目-打开关闭房间纯净模式-房主修改
|
||||
* 66陪玩项目-打开关闭房间纯净模式-房主修改
|
||||
*
|
||||
* @param title
|
||||
* @param desc
|
||||
@@ -281,7 +281,7 @@ public class RoomSettingModel extends BaseMvpModel {
|
||||
|
||||
/**
|
||||
* 更新房间设置信息
|
||||
* 轻寻项目-打开关闭房间纯净模式
|
||||
* 66陪玩项目-打开关闭房间纯净模式
|
||||
*
|
||||
* @param title
|
||||
* @param desc
|
||||
|
@@ -10,7 +10,7 @@ import lombok.Data;
|
||||
@Data
|
||||
public class PKTeamMember {
|
||||
private String uid;//用户uid
|
||||
private String erbanNo;//轻寻号
|
||||
private String erbanNo;//66陪玩号
|
||||
private String nick;//昵称
|
||||
private int gender;//性别
|
||||
private String avatar;//头像
|
||||
|
@@ -182,7 +182,7 @@ public class StatisticsProtocol {
|
||||
|
||||
|
||||
//模厅暗号
|
||||
EVENT_HALL_ADDMEMBERS_USERID_CLICK("hall_addMembers_userid_click"),//添加成员-轻寻ID
|
||||
EVENT_HALL_ADDMEMBERS_USERID_CLICK("hall_addMembers_userid_click"),//添加成员-66陪玩ID
|
||||
EVENT_HALL_ADDMEMBERS_WX_CLICK("hall_addMembers_wx_click"),//添加成员-微信导入
|
||||
EVENT_HALL_ADDMEMBERS_QQ_CLICK("hall_addMembers_qq_click"),//添加成员-QQ导入
|
||||
EVENT_HALL_PASSWORD_SHARE_WX("hall_password_share_wx"),//分享暗号到微信
|
||||
|
@@ -882,7 +882,7 @@ public final class UserModel extends BaseModel implements IUserModel {
|
||||
|
||||
/**
|
||||
*
|
||||
* @param erbanNo 轻寻号或手机号码
|
||||
* @param erbanNo 66陪玩号或手机号码
|
||||
* @return -
|
||||
*/
|
||||
@GET("user/getSimpleUser")
|
||||
|
@@ -32,7 +32,7 @@ public class RecommendationUserInfo implements Serializable {
|
||||
* recommendRoom : false
|
||||
* liveTag : false
|
||||
* status : 0
|
||||
* description : 她在轻寻魅力四射...
|
||||
* description : 她在66陪玩魅力四射...
|
||||
*/
|
||||
|
||||
private int uid;
|
||||
|
@@ -10,7 +10,7 @@ public class GrabApprenticesInfo {
|
||||
private Long uid;
|
||||
|
||||
/**
|
||||
* 轻寻号
|
||||
* 66陪玩号
|
||||
*/
|
||||
private Long erbanNo;
|
||||
|
||||
|
@@ -14,7 +14,7 @@ public class SimpleUserVo implements Serializable {
|
||||
*/
|
||||
private Long uid;
|
||||
/**
|
||||
* 轻寻号
|
||||
* 66陪玩号
|
||||
*/
|
||||
private Long erbanNo;
|
||||
/**
|
||||
|
@@ -1,4 +1,4 @@
|
||||
package com.wudoo.qingxun.wxapi;
|
||||
package com.xuanyi.accompany.wxapi;
|
||||
|
||||
import android.app.Activity;
|
||||
import android.content.Intent;
|
@@ -26,7 +26,7 @@ public class AppMetaDataUtil {
|
||||
*/
|
||||
public static String getChannelID() {
|
||||
String channelID = BasicConfig.INSTANCE.getChannel();
|
||||
channelID = TextUtils.isEmpty(channelID) ? "qingxun_official" : channelID;
|
||||
channelID = TextUtils.isEmpty(channelID) ? "official" : channelID;
|
||||
return channelID;
|
||||
}
|
||||
|
||||
|
@@ -451,8 +451,8 @@ public class MessageFragment extends TFragment implements ModuleProxy, MessageLi
|
||||
|
||||
@Subscribe(threadMode = ThreadMode.MAIN)
|
||||
public void onAntiSpamEvent(AntiSpamEvent event) {
|
||||
// Toast.makeText(getContext(), "发送失败,轻寻提醒您文明用语~", Toast.LENGTH_SHORT).show();
|
||||
SingleToastUtil.showToastShort("发送失败,轻寻提醒您文明用语~");
|
||||
// Toast.makeText(getContext(), "发送失败,66陪玩提醒您文明用语~", Toast.LENGTH_SHORT).show();
|
||||
SingleToastUtil.showToastShort("发送失败,66陪玩提醒您文明用语~");
|
||||
}
|
||||
|
||||
private int moreCustomDrawable;
|
||||
|