Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
android_highgold
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
android
android_highgold
Commits
e01ee605
Commit
e01ee605
authored
May 19, 2020
by
mengcuiguang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加钻石提现功能
parent
198a1d0f
Changes
24
Show whitespace changes
Inline
Side-by-side
Showing
24 changed files
with
616 additions
and
390 deletions
+616
-390
build.gradle
highgold/app/build.gradle
+11
-2
MintsApplication.java
...pp/src/main/java/com/mints/highgold/MintsApplication.java
+25
-26
DrawcashBean.java
.../main/java/com/mints/highgold/mvp/model/DrawcashBean.java
+48
-3
GameBean.java
.../src/main/java/com/mints/highgold/mvp/model/GameBean.java
+9
-0
GoldRecordBean.java
...ain/java/com/mints/highgold/mvp/model/GoldRecordBean.java
+9
-0
LoanPresenter.java
...java/com/mints/highgold/mvp/presenters/LoanPresenter.java
+1
-6
MyPresenter.java
...n/java/com/mints/highgold/mvp/presenters/MyPresenter.java
+1
-1
LoanService.java
...app/src/main/java/com/mints/highgold/net/LoanService.java
+1
-1
AwardActivity.java
...n/java/com/mints/highgold/ui/activitys/AwardActivity.java
+8
-3
DrawcashActivity.java
...ava/com/mints/highgold/ui/activitys/DrawcashActivity.java
+193
-91
GoldTryActivity.java
...java/com/mints/highgold/ui/activitys/GoldTryActivity.java
+0
-2
LoginActivity.java
...n/java/com/mints/highgold/ui/activitys/LoginActivity.java
+5
-5
WxLoginActivity.java
...java/com/mints/highgold/ui/activitys/WxLoginActivity.java
+5
-5
GoldRecordAdapter.java
...java/com/mints/highgold/ui/adapter/GoldRecordAdapter.java
+18
-1
MainGameAdapter.java
...n/java/com/mints/highgold/ui/adapter/MainGameAdapter.java
+7
-11
MainFragment.java
...ain/java/com/mints/highgold/ui/fragment/MainFragment.java
+42
-0
VersusFragment.java
...n/java/com/mints/highgold/ui/fragment/VersusFragment.java
+11
-37
GlideUtils.java
...app/src/main/java/com/mints/library/utils/GlideUtils.java
+5
-0
bg_banner.gif
highgold/app/src/main/res/drawable/bg_banner.gif
+0
-0
activity_drawcash.xml
highgold/app/src/main/res/layout/activity_drawcash.xml
+214
-194
item_fragment_versus_taskday.xml
.../app/src/main/res/layout/item_fragment_versus_taskday.xml
+2
-2
item_list_goldrecord.xml
highgold/app/src/main/res/layout/item_list_goldrecord.xml
+1
-0
ic_diamond.png
highgold/app/src/main/res/mipmap-xhdpi/ic_diamond.png
+0
-0
ic_drawcash_lock.png
highgold/app/src/main/res/mipmap-xhdpi/ic_drawcash_lock.png
+0
-0
No files found.
highgold/app/build.gradle
View file @
e01ee605
...
@@ -10,8 +10,8 @@ android {
...
@@ -10,8 +10,8 @@ android {
applicationId
"com.mints.highgold"
applicationId
"com.mints.highgold"
minSdkVersion
rootProject
.
ext
.
androidMinSdkVersion
minSdkVersion
rootProject
.
ext
.
androidMinSdkVersion
targetSdkVersion
rootProject
.
ext
.
androidTargetSdkVersion
targetSdkVersion
rootProject
.
ext
.
androidTargetSdkVersion
versionCode
7
versionCode
8
versionName
"1.0.
6
"
versionName
"1.0.
7
"
flavorDimensions
"default"
flavorDimensions
"default"
// dex突破65535的限制
// dex突破65535的限制
...
@@ -309,6 +309,15 @@ dependencies {
...
@@ -309,6 +309,15 @@ dependencies {
exclude
group:
'com.google.code.gson'
exclude
group:
'com.google.code.gson'
}
}
// 珊瑚广告
// implementation(name:'adapt-1.3.3', ext:'aar')
// implementation(name:'commonbase-1.0.2', ext:'aar')
// implementation(name:'discovery-2.0.12', ext:'aar')
// implementation(name:'shanhuAD-1.0.14', ext:'aar')
testImplementation
'junit:junit:4.12'
testImplementation
'junit:junit:4.12'
androidTestImplementation
'com.android.support.test:runner:1.0.1'
androidTestImplementation
'com.android.support.test:runner:1.0.1'
androidTestImplementation
'com.android.support.test.espresso:espresso-core:3.0.1'
androidTestImplementation
'com.android.support.test.espresso:espresso-core:3.0.1'
...
...
highgold/app/src/main/java/com/mints/highgold/MintsApplication.java
View file @
e01ee605
...
@@ -6,7 +6,6 @@ import android.content.Context;
...
@@ -6,7 +6,6 @@ import android.content.Context;
import
android.content.Intent
;
import
android.content.Intent
;
import
android.os.Build
;
import
android.os.Build
;
import
android.support.annotation.NonNull
;
import
android.support.annotation.NonNull
;
import
android.support.annotation.RequiresApi
;
import
android.support.multidex.MultiDex
;
import
android.support.multidex.MultiDex
;
import
android.support.multidex.MultiDexApplication
;
import
android.support.multidex.MultiDexApplication
;
import
android.support.v4.content.LocalBroadcastManager
;
import
android.support.v4.content.LocalBroadcastManager
;
...
@@ -178,31 +177,31 @@ public class MintsApplication extends MultiDexApplication {
...
@@ -178,31 +177,31 @@ public class MintsApplication extends MultiDexApplication {
// 一览视频
// 一览视频
initYL
();
initYL
();
//
// 鱼丸盒子
// 鱼丸盒子
//
if (UserManager.getInstance().userIsLogin()) {
if
(
UserManager
.
getInstance
().
userIsLogin
())
{
//
if (Build.VERSION.SDK_INT > 28) {
if
(
Build
.
VERSION
.
SDK_INT
>
28
)
{
//
//
// android10 延迟加载 因为获取不到oaid
// android10 延迟加载 因为获取不到oaid
//
RxjavaUtil.executeRxTask(new CommonRxTask<String>("") {
RxjavaUtil
.
executeRxTask
(
new
CommonRxTask
<
String
>(
""
)
{
//
@Override
@Override
//
public void doInIOThread() {
public
void
doInIOThread
()
{
//
try {
try
{
//
Thread.sleep(1500);
Thread
.
sleep
(
1500
);
//
} catch (InterruptedException e) {
}
catch
(
InterruptedException
e
)
{
//
e.printStackTrace();
e
.
printStackTrace
();
//
}
}
//
}
}
//
//
@Override
@Override
//
public void doInUIThread() {
public
void
doInUIThread
()
{
//
initYwSdk();
initYwSdk
();
//
}
}
//
});
});
//
//
} else {
}
else
{
//
initYwSdk();
initYwSdk
();
//
}
}
//
}
}
// 推啊广告
// 推啊广告
initTuia
();
initTuia
();
...
...
highgold/app/src/main/java/com/mints/highgold/mvp/model/DrawcashBean.java
View file @
e01ee605
...
@@ -27,7 +27,20 @@ public class DrawcashBean implements Serializable {
...
@@ -27,7 +27,20 @@ public class DrawcashBean implements Serializable {
private
int
coinRate
;
private
int
coinRate
;
private
String
alipayAccount
;
private
String
alipayAccount
;
private
int
coin
;
private
int
coin
;
private
int
diamonds
;
private
int
vedioCompleteSum
;
private
int
vedioNeedSum
;
private
double
firstValue
;
private
List
<
CashOutMoneyArrBean
>
cashOutMoneyArr
;
private
List
<
CashOutMoneyArrBean
>
cashOutMoneyArr
;
private
List
<
CashOutMoneyArrBean
>
cashOutDiamondsArr
;
public
int
getDiamonds
()
{
return
diamonds
;
}
public
void
setDiamonds
(
int
diamonds
)
{
this
.
diamonds
=
diamonds
;
}
public
String
getMsg
()
{
public
String
getMsg
()
{
return
msg
;
return
msg
;
...
@@ -109,6 +122,38 @@ public class DrawcashBean implements Serializable {
...
@@ -109,6 +122,38 @@ public class DrawcashBean implements Serializable {
this
.
cashOutMoneyArr
=
cashOutMoneyArr
;
this
.
cashOutMoneyArr
=
cashOutMoneyArr
;
}
}
public
int
getVedioCompleteSum
()
{
return
vedioCompleteSum
;
}
public
void
setVedioCompleteSum
(
int
vedioCompleteSum
)
{
this
.
vedioCompleteSum
=
vedioCompleteSum
;
}
public
int
getVedioNeedSum
()
{
return
vedioNeedSum
;
}
public
void
setVedioNeedSum
(
int
vedioNeedSum
)
{
this
.
vedioNeedSum
=
vedioNeedSum
;
}
public
double
getFirstValue
()
{
return
firstValue
;
}
public
void
setFirstValue
(
double
firstValue
)
{
this
.
firstValue
=
firstValue
;
}
public
List
<
CashOutMoneyArrBean
>
getCashOutDiamondsArr
()
{
return
cashOutDiamondsArr
;
}
public
void
setCashOutDiamondsArr
(
List
<
CashOutMoneyArrBean
>
cashOutDiamondsArr
)
{
this
.
cashOutDiamondsArr
=
cashOutDiamondsArr
;
}
public
class
CashOutMoneyArrBean
implements
Serializable
{
public
class
CashOutMoneyArrBean
implements
Serializable
{
/**
/**
* money : 1
* money : 1
...
@@ -120,7 +165,7 @@ public class DrawcashBean implements Serializable {
...
@@ -120,7 +165,7 @@ public class DrawcashBean implements Serializable {
* canCashOut : false
* canCashOut : false
*/
*/
private
double
money
;
private
int
money
;
private
boolean
canUseOnce
;
//还有没有新人专享的机会
private
boolean
canUseOnce
;
//还有没有新人专享的机会
private
int
needFs
;
//需要多少朋友才能提现
private
int
needFs
;
//需要多少朋友才能提现
private
int
nowFriends
;
//现在有多少了
private
int
nowFriends
;
//现在有多少了
...
@@ -128,11 +173,11 @@ public class DrawcashBean implements Serializable {
...
@@ -128,11 +173,11 @@ public class DrawcashBean implements Serializable {
private
boolean
once
;
//是否是新人专享
private
boolean
once
;
//是否是新人专享
private
boolean
canCashOut
;
//最终能不能提现
private
boolean
canCashOut
;
//最终能不能提现
public
double
getMoney
()
{
public
int
getMoney
()
{
return
money
;
return
money
;
}
}
public
void
setMoney
(
double
money
)
{
public
void
setMoney
(
int
money
)
{
this
.
money
=
money
;
this
.
money
=
money
;
}
}
...
...
highgold/app/src/main/java/com/mints/highgold/mvp/model/GameBean.java
View file @
e01ee605
...
@@ -33,6 +33,7 @@ public class GameBean implements Serializable {
...
@@ -33,6 +33,7 @@ public class GameBean implements Serializable {
private
int
status
;
// 0-未完成挑战,不可点击领取 1-已完成挑战可以领取 2-已领取不可再领取
private
int
status
;
// 0-未完成挑战,不可点击领取 1-已完成挑战可以领取 2-已领取不可再领取
private
int
coin
;
private
int
coin
;
private
int
time
;
private
int
time
;
private
int
rewardType
;
//0-金币
private
int
hotType
;
// 0-不显示 1-显示hot 2-显示new;
private
int
hotType
;
// 0-不显示 1-显示hot 2-显示new;
private
String
buttonText
;
private
String
buttonText
;
...
@@ -107,5 +108,13 @@ public class GameBean implements Serializable {
...
@@ -107,5 +108,13 @@ public class GameBean implements Serializable {
public
void
setTime
(
int
time
)
{
public
void
setTime
(
int
time
)
{
this
.
time
=
time
;
this
.
time
=
time
;
}
}
public
int
getRewardType
()
{
return
rewardType
;
}
public
void
setRewardType
(
int
rewardType
)
{
this
.
rewardType
=
rewardType
;
}
}
}
}
}
highgold/app/src/main/java/com/mints/highgold/mvp/model/GoldRecordBean.java
View file @
e01ee605
...
@@ -55,6 +55,7 @@ public class GoldRecordBean implements Serializable {
...
@@ -55,6 +55,7 @@ public class GoldRecordBean implements Serializable {
private
String
day
;
private
String
day
;
private
boolean
showDay
;
private
boolean
showDay
;
private
int
oldCoin
;
private
int
oldCoin
;
private
int
rewardType
;
private
int
unitCoin
;
private
int
unitCoin
;
private
int
newCoin
;
private
int
newCoin
;
private
int
detailType
;
private
int
detailType
;
...
@@ -132,5 +133,13 @@ public class GoldRecordBean implements Serializable {
...
@@ -132,5 +133,13 @@ public class GoldRecordBean implements Serializable {
public
void
setShowDay
(
boolean
showDay
)
{
public
void
setShowDay
(
boolean
showDay
)
{
this
.
showDay
=
showDay
;
this
.
showDay
=
showDay
;
}
}
public
int
getRewardType
()
{
return
rewardType
;
}
public
void
setRewardType
(
int
rewardType
)
{
this
.
rewardType
=
rewardType
;
}
}
}
}
}
highgold/app/src/main/java/com/mints/highgold/mvp/presenters/LoanPresenter.java
View file @
e01ee605
...
@@ -229,12 +229,7 @@ public class LoanPresenter extends BasePresenter<LoanView> {
...
@@ -229,12 +229,7 @@ public class LoanPresenter extends BasePresenter<LoanView> {
private
void
getGameList
()
{
private
void
getGameList
()
{
HashMap
<
String
,
Object
>
vo
=
new
HashMap
<>();
HashMap
<
String
,
Object
>
vo
=
new
HashMap
<>();
// if (Build.VERSION.SDK_INT <= 28) {
vo
.
put
(
"isShowYwhzGame"
,
true
);
// vo.put("isShowYwhzGame", true);
// } else {
// vo.put("isShowYwhzGame", false);
// }
vo
.
put
(
"isShowYwhzGame"
,
false
);
AppHttpManager
.
getInstance
(
loanApplication
)
AppHttpManager
.
getInstance
(
loanApplication
)
.
call
(
loanService
.
getGameList
(
vo
),
.
call
(
loanService
.
getGameList
(
vo
),
...
...
highgold/app/src/main/java/com/mints/highgold/mvp/presenters/MyPresenter.java
View file @
e01ee605
...
@@ -120,7 +120,7 @@ public class MyPresenter extends BasePresenter<MyView> {
...
@@ -120,7 +120,7 @@ public class MyPresenter extends BasePresenter<MyView> {
// } else {
// } else {
// vo.put("isShowYwhzGame", false);
// vo.put("isShowYwhzGame", false);
// }
// }
vo
.
put
(
"isShowYwhzGame"
,
fals
e
);
vo
.
put
(
"isShowYwhzGame"
,
tru
e
);
AppHttpManager
.
getInstance
(
loanApplication
)
AppHttpManager
.
getInstance
(
loanApplication
)
.
call
(
loanService
.
myHotActivity
(
vo
),
.
call
(
loanService
.
myHotActivity
(
vo
),
new
BaseSubscriber
<
BaseResponse
<
BannerBean
>>()
{
new
BaseSubscriber
<
BaseResponse
<
BannerBean
>>()
{
...
...
highgold/app/src/main/java/com/mints/highgold/net/LoanService.java
View file @
e01ee605
...
@@ -488,7 +488,7 @@ public interface LoanService {
...
@@ -488,7 +488,7 @@ public interface LoanService {
// if (BuildConfig.DEBUG) {
// if (BuildConfig.DEBUG) {
// SPUtil spUtil = SPUtil.getInstance(context);
// SPUtil spUtil = SPUtil.getInstance(context);
// if (TextUtils.isEmpty(spUtil.getString(Constant.LOCAL_IP))) {
// if (TextUtils.isEmpty(spUtil.getString(Constant.LOCAL_IP))) {
// spUtil.putString(Constant.LOCAL_IP, "http://39.
106.5.102
:9082/api-p1/");
// spUtil.putString(Constant.LOCAL_IP, "http://39.
97.65.143
:9082/api-p1/");
// }
// }
// retrofit = new Retrofit.Builder()
// retrofit = new Retrofit.Builder()
// .client(builder.build())
// .client(builder.build())
...
...
highgold/app/src/main/java/com/mints/highgold/ui/activitys/AwardActivity.java
View file @
e01ee605
...
@@ -45,6 +45,7 @@ import com.mints.highgold.utils.SpanUtils;
...
@@ -45,6 +45,7 @@ import com.mints.highgold.utils.SpanUtils;
import
com.mints.highgold.utils.Utils
;
import
com.mints.highgold.utils.Utils
;
import
com.mints.highgold.utils.rxutil.CommonRxTask
;
import
com.mints.highgold.utils.rxutil.CommonRxTask
;
import
com.mints.highgold.utils.rxutil.RxjavaUtil
;
import
com.mints.highgold.utils.rxutil.RxjavaUtil
;
import
com.mints.library.utils.GlideUtils
;
import
com.mints.library.utils.json.JsonUtil
;
import
com.mints.library.utils.json.JsonUtil
;
import
com.mints.library.utils.nodoubleclick.AntiShake
;
import
com.mints.library.utils.nodoubleclick.AntiShake
;
import
com.qq.e.ads.rewardvideo.RewardVideoAD
;
import
com.qq.e.ads.rewardvideo.RewardVideoAD
;
...
@@ -156,7 +157,8 @@ public class AwardActivity extends BaseActivity implements AwardView {
...
@@ -156,7 +157,8 @@ public class AwardActivity extends BaseActivity implements AwardView {
}
else
{
}
else
{
ivBanner
.
setVisibility
(
View
.
VISIBLE
);
ivBanner
.
setVisibility
(
View
.
VISIBLE
);
fsvAward
.
setVisibility
(
View
.
GONE
);
fsvAward
.
setVisibility
(
View
.
GONE
);
ivBanner
.
setImageResource
(
R
.
mipmap
.
ic_award_banner
);
GlideUtils
.
loadImageViewGif
(
getContext
(),
R
.
drawable
.
bg_banner
,
ivBanner
);
AppConfig
.
bannerAdType
=
0
;
AppConfig
.
bannerAdType
=
0
;
}
}
}
}
...
@@ -668,13 +670,16 @@ public class AwardActivity extends BaseActivity implements AwardView {
...
@@ -668,13 +670,16 @@ public class AwardActivity extends BaseActivity implements AwardView {
tvAwardContent
.
setText
(
"提交申请成功"
);
tvAwardContent
.
setText
(
"提交申请成功"
);
tvAwardNext
.
setText
(
"需要更多现金"
);
tvAwardNext
.
setText
(
"需要更多现金"
);
break
;
break
;
case
Constant
.
CARRIER_VERSUS_HEALTH
:
// 任务赚健康
case
Constant
.
CARRIER_HOMEPAGE_YWHZ
:
// 首页高额游戏挑战奖励
case
Constant
.
CARRIER_HOMEPAGE_YWHZ
:
// 首页高额游戏挑战奖励
case
Constant
.
CARRIER_MOBILE_COIN_EXCHANGE_REWARD
:
// 任务赚健康
case
Constant
.
CARRIER_MOBILE_COIN_EXCHANGE_REWARD
:
// 任务赚健康
tvAwardContent
.
setText
(
"恭喜获取"
+
curCoin
+
"钻石"
);
tvAwardNext
.
setVisibility
(
View
.
GONE
);
llAwardBg
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
bg_award_gold
));
break
;
case
Constant
.
CARRIER_VERSUS_HEALTH
:
// 任务赚健康
tvAwardContent
.
setText
(
"恭喜获取"
+
curCoin
+
"金币"
);
tvAwardContent
.
setText
(
"恭喜获取"
+
curCoin
+
"金币"
);
tvAwardNext
.
setVisibility
(
View
.
GONE
);
tvAwardNext
.
setVisibility
(
View
.
GONE
);
llAwardBg
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
bg_award_gold
));
llAwardBg
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
bg_award_gold
));
// tvAwardNext.setText("我知道了");
break
;
break
;
default
:
default
:
tvAwardContent
.
setText
(
"恭喜获取"
+
curCoin
+
"金币"
);
tvAwardContent
.
setText
(
"恭喜获取"
+
curCoin
+
"金币"
);
...
...
highgold/app/src/main/java/com/mints/highgold/ui/activitys/DrawcashActivity.java
View file @
e01ee605
...
@@ -36,6 +36,7 @@ import java.util.HashMap;
...
@@ -36,6 +36,7 @@ import java.util.HashMap;
import
java.util.List
;
import
java.util.List
;
import
butterknife.Bind
;
import
butterknife.Bind
;
import
butterknife.ButterKnife
;
import
butterknife.OnClick
;
import
butterknife.OnClick
;
import
cn.sharesdk.framework.Platform
;
import
cn.sharesdk.framework.Platform
;
import
cn.sharesdk.framework.ShareSDK
;
import
cn.sharesdk.framework.ShareSDK
;
...
@@ -95,14 +96,18 @@ public class DrawcashActivity extends BaseActivity implements DrawcashView, OnLo
...
@@ -95,14 +96,18 @@ public class DrawcashActivity extends BaseActivity implements DrawcashView, OnLo
TextView
tvDrawcashFriendsnextTop
;
TextView
tvDrawcashFriendsnextTop
;
@Bind
(
R
.
id
.
ll_drawcash_top
)
@Bind
(
R
.
id
.
ll_drawcash_top
)
LinearLayout
llDrawcashTop
;
LinearLayout
llDrawcashTop
;
@Bind
(
R
.
id
.
tv_drawcash_hint_bottom
)
@Bind
(
R
.
id
.
tv_activity_right
)
TextView
tvDrawcashHintBottom
;
TextView
tvActivityRight
;
@Bind
(
R
.
id
.
tv_drawcash_friends_bottom
)
@Bind
(
R
.
id
.
tv_drawcash_diamond
)
TextView
tvDrawcashFriendsBottom
;
TextView
tvDrawcashDiamond
;
@Bind
(
R
.
id
.
tv_drawcash_friendsnext_bottom
)
@Bind
(
R
.
id
.
tv_drawcash_aboutcash_diamond
)
TextView
tvDrawcashFriendsnextBottom
;
TextView
tvDrawcashAboutcashDiamond
;
@Bind
(
R
.
id
.
ll_drawcash_bottom
)
@Bind
(
R
.
id
.
btn_drawcash_six
)
LinearLayout
llDrawcashBottom
;
Button
btnDrawcashSix
;
@Bind
(
R
.
id
.
tv_drawcash_diamond_hint
)
TextView
tvDrawcashDiamondHint
;
@Bind
(
R
.
id
.
ll_drawcash_diamond
)
LinearLayout
llDrawcashDiamond
;
private
DrawcashPresenter
drawcashPresenter
;
private
DrawcashPresenter
drawcashPresenter
;
...
@@ -112,18 +117,28 @@ public class DrawcashActivity extends BaseActivity implements DrawcashView, OnLo
...
@@ -112,18 +117,28 @@ public class DrawcashActivity extends BaseActivity implements DrawcashView, OnLo
private
TTBannerManager
ttUtil
;
private
TTBannerManager
ttUtil
;
DrawcashBean
userConfig
=
null
;
DrawcashBean
userConfig
=
null
;
private
boolean
cashOut1yuan
=
false
;
//true-提现过1元
private
boolean
cashOut1yuan
=
false
;
//true-提现过0.1元
private
boolean
cashOut2yuan
=
false
;
//true-提现过2元
private
boolean
cashOut2yuan
=
false
;
//true-提现过100元
private
boolean
cashOut4yuan
=
false
;
//true-提现过1元
private
String
paymentType
=
"weixin"
;
private
String
paymentType
=
"weixin"
;
private
WXInfo
wxInfo
=
null
;
private
WXInfo
wxInfo
=
null
;
private
LoginApi
loginApi
=
null
;
private
LoginApi
loginApi
=
null
;
private
String
cashStr
;
private
String
cashStr
;
private
double
drawcash
;
private
String
diamondCashStr
;
private
double
drawcash1
;
private
int
drawcash2
;
private
int
drawcash3
;
private
int
drawcash4
;
private
int
drawcash5
;
private
int
drawcash6
;
private
UserManager
userManager
;
private
UserManager
userManager
;
private
InsertScreenAdManager
insertScreenAd
;
private
InsertScreenAdManager
insertScreenAd
;
private
SPUtil
spUtil
;
private
SPUtil
spUtil
;
private
int
curBtnNum
=
1
;
@Override
@Override
protected
int
getContentViewLayoutID
()
{
protected
int
getContentViewLayoutID
()
{
...
@@ -135,6 +150,8 @@ public class DrawcashActivity extends BaseActivity implements DrawcashView, OnLo
...
@@ -135,6 +150,8 @@ public class DrawcashActivity extends BaseActivity implements DrawcashView, OnLo
drawcashPresenter
=
new
DrawcashPresenter
();
drawcashPresenter
=
new
DrawcashPresenter
();
drawcashPresenter
.
attachView
(
this
);
drawcashPresenter
.
attachView
(
this
);
tvActivityRight
.
setVisibility
(
View
.
VISIBLE
);
tvActivityRight
.
setText
(
"提现记录"
);
tvActivityTitle
.
setText
(
"提现"
);
tvActivityTitle
.
setText
(
"提现"
);
userManager
=
UserManager
.
getInstance
();
userManager
=
UserManager
.
getInstance
();
...
@@ -157,7 +174,7 @@ public class DrawcashActivity extends BaseActivity implements DrawcashView, OnLo
...
@@ -157,7 +174,7 @@ public class DrawcashActivity extends BaseActivity implements DrawcashView, OnLo
*/
*/
private
void
initTTBanner
()
{
private
void
initTTBanner
()
{
ttUtil
=
new
TTBannerManager
();
ttUtil
=
new
TTBannerManager
();
ttUtil
.
initTTAd
(
getContext
(),
tru
e
);
ttUtil
.
initTTAd
(
getContext
(),
fals
e
);
ttUtil
.
getBannerInit
(
getContext
(),
TTAdManagerHolder
.
TT_AD_BANNER_ID_DRAWCASH
,
flDrawcashTtbanner
,
370
,
80
);
ttUtil
.
getBannerInit
(
getContext
(),
TTAdManagerHolder
.
TT_AD_BANNER_ID_DRAWCASH
,
flDrawcashTtbanner
,
370
,
80
);
}
}
...
@@ -170,11 +187,10 @@ public class DrawcashActivity extends BaseActivity implements DrawcashView, OnLo
...
@@ -170,11 +187,10 @@ public class DrawcashActivity extends BaseActivity implements DrawcashView, OnLo
protected
void
onResume
()
{
protected
void
onResume
()
{
super
.
onResume
();
super
.
onResume
();
if
(
llDrawcash
Bottom
!=
null
)
{
if
(
llDrawcash
Top
!=
null
)
{
if
(
AntiShake
.
check
(
llDrawcash
Bottom
.
getId
()))
return
;
if
(
AntiShake
.
check
(
llDrawcash
Top
.
getId
()))
return
;
}
}
// System.out.println("mcg __ drawcash onresume");
insertScreenAd
.
showInsertScreenAd
(
Constant
.
CARRIER_DRAWCASH
);
insertScreenAd
.
showInsertScreenAd
(
Constant
.
CARRIER_DRAWCASH
);
drawcashPresenter
.
getUserTaskMsg
();
drawcashPresenter
.
getUserTaskMsg
();
}
}
...
@@ -215,22 +231,49 @@ public class DrawcashActivity extends BaseActivity implements DrawcashView, OnLo
...
@@ -215,22 +231,49 @@ public class DrawcashActivity extends BaseActivity implements DrawcashView, OnLo
}
}
userConfig
=
data
;
userConfig
=
data
;
// 获取面值
drawcash1
=
data
.
getFirstValue
();
List
<
DrawcashBean
.
CashOutMoneyArrBean
>
cashOutMoneyArr
=
userConfig
.
getCashOutMoneyArr
();
List
<
DrawcashBean
.
CashOutMoneyArrBean
>
cashOutMoneyArr
=
userConfig
.
getCashOutMoneyArr
();
if
(
cashOutMoneyArr
!=
null
&&
cashOutMoneyArr
.
size
()
>
1
)
{
if
(
cashOutMoneyArr
!=
null
&&
cashOutMoneyArr
.
size
()
>
1
)
{
DrawcashBean
.
CashOutMoneyArrBean
moneyArrBean
=
cashOutMoneyArr
.
get
(
0
);
DrawcashBean
.
CashOutMoneyArrBean
moneyArrBean1
=
cashOutMoneyArr
.
get
(
0
);
DrawcashBean
.
CashOutMoneyArrBean
moneyArrBean1
=
cashOutMoneyArr
.
get
(
1
);
DrawcashBean
.
CashOutMoneyArrBean
moneyArrBean2
=
cashOutMoneyArr
.
get
(
1
);
cashOut1yuan
=
moneyArrBean
.
isCanUseOnce
();
DrawcashBean
.
CashOutMoneyArrBean
moneyArrBean3
=
cashOutMoneyArr
.
get
(
2
);
cashOut2yuan
=
moneyArrBean1
.
isCanUseOnce
();
cashOut1yuan
=
moneyArrBean1
.
isCanUseOnce
();
cashOut2yuan
=
moneyArrBean2
.
isCanUseOnce
();
drawcash
=
moneyArrBean
.
getMoney
();
drawcash2
=
moneyArrBean2
.
getMoney
();
drawcash3
=
moneyArrBean3
.
getMoney
();
}
}
List
<
DrawcashBean
.
CashOutMoneyArrBean
>
cashOutDiamondsArr
=
userConfig
.
getCashOutDiamondsArr
();
if
(
cashOutDiamondsArr
!=
null
&&
cashOutDiamondsArr
.
size
()
>
1
)
{
DrawcashBean
.
CashOutMoneyArrBean
moneyArrBean1
=
cashOutDiamondsArr
.
get
(
0
);
DrawcashBean
.
CashOutMoneyArrBean
moneyArrBean2
=
cashOutDiamondsArr
.
get
(
1
);
DrawcashBean
.
CashOutMoneyArrBean
moneyArrBean3
=
cashOutDiamondsArr
.
get
(
2
);
cashOut4yuan
=
moneyArrBean1
.
isCanUseOnce
();
drawcash4
=
moneyArrBean1
.
getMoney
();
drawcash5
=
moneyArrBean2
.
getMoney
();
drawcash6
=
moneyArrBean3
.
getMoney
();
}
// 初始面值样式
initBtnStyle
();
initBtnStyle
();
// 钻石是否可用
int
vedioCompleteSum
=
data
.
getVedioCompleteSum
();
//当前完成
int
vedioNeedSum
=
data
.
getVedioNeedSum
();
//总数
if
(
vedioCompleteSum
<
vedioNeedSum
)
{
llDrawcashDiamond
.
setVisibility
(
View
.
VISIBLE
);
tvDrawcashDiamondHint
.
setText
(
"观看任意"
+
vedioNeedSum
+
"个广告视频即可激活("
+
vedioCompleteSum
+
"/"
+
vedioNeedSum
+
")"
);
}
else
{
llDrawcashDiamond
.
setVisibility
(
View
.
GONE
);
}
// 判断新人专享
if
(
cashOut1yuan
||
cashOut2yuan
)
{
if
(
cashOut1yuan
||
cashOut2yuan
)
{
if
(
cashOut2yuan
)
{
if
(
cashOut2yuan
)
{
curCash
=
100
;
curCash
=
drawcash2
;
clickTwo
(
curCash
);
clickTwo
(
curCash
);
}
else
{
}
else
{
btnDrawcashTwo
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_new_dont
));
btnDrawcashTwo
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_new_dont
));
...
@@ -238,7 +281,7 @@ public class DrawcashActivity extends BaseActivity implements DrawcashView, OnLo
...
@@ -238,7 +281,7 @@ public class DrawcashActivity extends BaseActivity implements DrawcashView, OnLo
}
}
if
(
cashOut1yuan
)
{
if
(
cashOut1yuan
)
{
curCash
=
drawcash
;
curCash
=
drawcash
1
;
clickOne
(
curCash
);
clickOne
(
curCash
);
}
else
{
}
else
{
btnDrawcashOne
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_new_dont
));
btnDrawcashOne
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_new_dont
));
...
@@ -248,10 +291,15 @@ public class DrawcashActivity extends BaseActivity implements DrawcashView, OnLo
...
@@ -248,10 +291,15 @@ public class DrawcashActivity extends BaseActivity implements DrawcashView, OnLo
btnDrawcashTwo
.
setEnabled
(
false
);
btnDrawcashTwo
.
setEnabled
(
false
);
btnDrawcashOne
.
setEnabled
(
false
);
btnDrawcashOne
.
setEnabled
(
false
);
curCash
=
150
;
curCash
=
drawcash3
;
clickThree
(
curCash
);
clickThree
(
curCash
);
}
}
// 钻石新人专享
if
(!
cashOut4yuan
)
{
btnDrawcashFour
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_new_dont
));
btnDrawcashFour
.
setEnabled
(
false
);
}
// 微信为默认支付方式
// 微信为默认支付方式
if
(
TextUtils
.
equals
(
paymentType
,
"weixin"
))
{
if
(
TextUtils
.
equals
(
paymentType
,
"weixin"
))
{
...
@@ -261,7 +309,6 @@ public class DrawcashActivity extends BaseActivity implements DrawcashView, OnLo
...
@@ -261,7 +309,6 @@ public class DrawcashActivity extends BaseActivity implements DrawcashView, OnLo
tvDrawcashSet
.
setText
(
"已授权"
);
tvDrawcashSet
.
setText
(
"已授权"
);
}
}
}
}
if
(
TextUtils
.
equals
(
paymentType
,
"alipay"
))
{
if
(
TextUtils
.
equals
(
paymentType
,
"alipay"
))
{
if
(
TextUtils
.
isEmpty
(
data
.
getAlipayAccount
()))
{
if
(
TextUtils
.
isEmpty
(
data
.
getAlipayAccount
()))
{
tvDrawcashSet
.
setText
(
"去授权"
);
tvDrawcashSet
.
setText
(
"去授权"
);
...
@@ -270,12 +317,18 @@ public class DrawcashActivity extends BaseActivity implements DrawcashView, OnLo
...
@@ -270,12 +317,18 @@ public class DrawcashActivity extends BaseActivity implements DrawcashView, OnLo
}
}
}
}
// 当前余额
tvDrawcashGold
.
setText
(
data
.
getCoin
()
+
""
);
tvDrawcashGold
.
setText
(
data
.
getCoin
()
+
""
);
BigDecimal
allcoinBig
=
new
BigDecimal
(
String
.
valueOf
(
data
.
getCoin
()));
BigDecimal
allcoinBig
=
new
BigDecimal
(
String
.
valueOf
(
data
.
getCoin
()));
BigDecimal
rateBig
=
new
BigDecimal
(
"10000"
);
BigDecimal
rateBig
=
new
BigDecimal
(
"10000"
);
cashStr
=
allcoinBig
.
divide
(
rateBig
).
setScale
(
2
,
BigDecimal
.
ROUND_DOWN
).
toString
();
cashStr
=
allcoinBig
.
divide
(
rateBig
).
setScale
(
2
,
BigDecimal
.
ROUND_DOWN
).
toString
();
tvDrawcashAboutcash
.
setText
(
"约"
+
cashStr
+
"元"
);
tvDrawcashAboutcash
.
setText
(
"约"
+
cashStr
+
"元"
);
BigDecimal
diamondBig
=
new
BigDecimal
(
String
.
valueOf
(
data
.
getDiamonds
()));
tvDrawcashDiamond
.
setText
(
data
.
getDiamonds
()
+
""
);
diamondCashStr
=
diamondBig
.
divide
(
rateBig
).
setScale
(
2
,
BigDecimal
.
ROUND_DOWN
).
toString
();
tvDrawcashAboutcashDiamond
.
setText
(
"约"
+
diamondCashStr
+
"元"
);
tvDrawcashHint
.
setText
(
"* 如您或好友通过刷机等违规操作获取非法收益,平台将视情况扣除违规所得或冻结账号。"
+
tvDrawcashHint
.
setText
(
"* 如您或好友通过刷机等违规操作获取非法收益,平台将视情况扣除违规所得或冻结账号。"
+
"\n* 因广告收益价值变化,会同步调整金币发放数量,但不影响提现功能,达标即可随时提现,请放心使用。"
+
"\n* 因广告收益价值变化,会同步调整金币发放数量,但不影响提现功能,达标即可随时提现,请放心使用。"
+
"\n* 最终解释权归本公司所有。"
);
"\n* 最终解释权归本公司所有。"
);
...
@@ -283,9 +336,6 @@ public class DrawcashActivity extends BaseActivity implements DrawcashView, OnLo
...
@@ -283,9 +336,6 @@ public class DrawcashActivity extends BaseActivity implements DrawcashView, OnLo
@Override
@Override
public
void
getDrawcashSuc
()
{
public
void
getDrawcashSuc
()
{
// showToast("提交申请成功");
// drawcashPresenter.getUserTaskMsg();
Bundle
bundle
=
new
Bundle
();
Bundle
bundle
=
new
Bundle
();
bundle
.
putInt
(
Constant
.
MAIN_CUR_FLAG
,
Constant
.
MAIN_CUR_ONE
);
bundle
.
putInt
(
Constant
.
MAIN_CUR_FLAG
,
Constant
.
MAIN_CUR_ONE
);
bundle
.
putString
(
Constant
.
MAIN_CARRIET_TURN
,
Constant
.
CARRIER_DRAWCASH
);
bundle
.
putString
(
Constant
.
MAIN_CARRIET_TURN
,
Constant
.
CARRIER_DRAWCASH
);
...
@@ -307,19 +357,21 @@ public class DrawcashActivity extends BaseActivity implements DrawcashView, OnLo
...
@@ -307,19 +357,21 @@ public class DrawcashActivity extends BaseActivity implements DrawcashView, OnLo
@OnClick
({
R
.
id
.
tv_activity_back
,
R
.
id
.
btn_drawcash_one
,
R
.
id
.
btn_drawcash_two
,
@OnClick
({
R
.
id
.
tv_activity_back
,
R
.
id
.
btn_drawcash_one
,
R
.
id
.
btn_drawcash_two
,
R
.
id
.
btn_drawcash_five
,
R
.
id
.
iv_drawcash_weixin
,
R
.
id
.
iv_drawcash_alipay
,
R
.
id
.
btn_drawcash_five
,
R
.
id
.
iv_drawcash_weixin
,
R
.
id
.
iv_drawcash_alipay
,
R
.
id
.
btn_drawcash_three
,
R
.
id
.
btn_drawcash_four
,
R
.
id
.
tv_drawcash_set
,
R
.
id
.
btn_drawcash_three
,
R
.
id
.
btn_drawcash_four
,
R
.
id
.
tv_drawcash_set
,
R
.
id
.
btn_drawcash_next
,
R
.
id
.
tv_
drawcash_record
,
R
.
id
.
rl_drawcash_alipay
,
R
.
id
.
btn_drawcash_next
,
R
.
id
.
tv_
activity_right
,
R
.
id
.
rl_drawcash_alipay
,
R
.
id
.
ll_drawcash_diamond
,
R
.
id
.
tv_drawcash_explain
,
R
.
id
.
tv_drawcash_friendsnext_top
,
R
.
id
.
tv_drawcash_friendsnext_bottom
})
R
.
id
.
tv_drawcash_explain
,
R
.
id
.
tv_drawcash_friendsnext_top
,
R
.
id
.
btn_drawcash_six
})
public
void
onClick
(
View
view
)
{
public
void
onClick
(
View
view
)
{
switch
(
view
.
getId
())
{
switch
(
view
.
getId
())
{
case
R
.
id
.
tv_activity_back
:
case
R
.
id
.
tv_activity_back
:
finish
();
finish
();
break
;
break
;
case
R
.
id
.
tv_
drawcash_record
:
case
R
.
id
.
tv_
activity_right
:
readyGo
(
DrawcashRecordActivity
.
class
);
readyGo
(
DrawcashRecordActivity
.
class
);
break
;
break
;
case
R
.
id
.
tv_drawcash_explain
:
case
R
.
id
.
tv_drawcash_explain
:
readyGo
(
AccountActivity
.
class
);
readyGo
(
AccountActivity
.
class
);
break
;
break
;
case
R
.
id
.
ll_drawcash_diamond
:
break
;
case
R
.
id
.
iv_drawcash_weixin
:
case
R
.
id
.
iv_drawcash_weixin
:
if
(
userConfig
==
null
)
{
if
(
userConfig
==
null
)
{
showToast
(
"网络异常,请检测网络"
);
showToast
(
"网络异常,请检测网络"
);
...
@@ -397,7 +449,7 @@ public class DrawcashActivity extends BaseActivity implements DrawcashView, OnLo
...
@@ -397,7 +449,7 @@ public class DrawcashActivity extends BaseActivity implements DrawcashView, OnLo
drawcashPresenter
.
getUserTaskMsg
();
drawcashPresenter
.
getUserTaskMsg
();
return
;
return
;
}
}
curCash
=
drawcash
;
curCash
=
drawcash
1
;
clickOne
(
curCash
);
clickOne
(
curCash
);
break
;
break
;
case
R
.
id
.
btn_drawcash_two
:
case
R
.
id
.
btn_drawcash_two
:
...
@@ -406,7 +458,7 @@ public class DrawcashActivity extends BaseActivity implements DrawcashView, OnLo
...
@@ -406,7 +458,7 @@ public class DrawcashActivity extends BaseActivity implements DrawcashView, OnLo
drawcashPresenter
.
getUserTaskMsg
();
drawcashPresenter
.
getUserTaskMsg
();
return
;
return
;
}
}
curCash
=
100
;
curCash
=
drawcash2
;
clickTwo
(
curCash
);
clickTwo
(
curCash
);
break
;
break
;
case
R
.
id
.
btn_drawcash_three
:
case
R
.
id
.
btn_drawcash_three
:
...
@@ -415,7 +467,7 @@ public class DrawcashActivity extends BaseActivity implements DrawcashView, OnLo
...
@@ -415,7 +467,7 @@ public class DrawcashActivity extends BaseActivity implements DrawcashView, OnLo
drawcashPresenter
.
getUserTaskMsg
();
drawcashPresenter
.
getUserTaskMsg
();
return
;
return
;
}
}
curCash
=
150
;
curCash
=
drawcash3
;
clickThree
(
curCash
);
clickThree
(
curCash
);
break
;
break
;
case
R
.
id
.
btn_drawcash_four
:
case
R
.
id
.
btn_drawcash_four
:
...
@@ -424,11 +476,10 @@ public class DrawcashActivity extends BaseActivity implements DrawcashView, OnLo
...
@@ -424,11 +476,10 @@ public class DrawcashActivity extends BaseActivity implements DrawcashView, OnLo
drawcashPresenter
.
getUserTaskMsg
();
drawcashPresenter
.
getUserTaskMsg
();
return
;
return
;
}
}
curCash
=
200
;
curCash
=
drawcash4
;
clickFour
(
curCash
);
clickFour
(
curCash
);
break
;
break
;
case
R
.
id
.
tv_drawcash_friendsnext_top
:
case
R
.
id
.
tv_drawcash_friendsnext_top
:
case
R
.
id
.
tv_drawcash_friendsnext_bottom
:
readyGo
(
FriendsNewActivity
.
class
);
readyGo
(
FriendsNewActivity
.
class
);
break
;
break
;
case
R
.
id
.
btn_drawcash_five
:
case
R
.
id
.
btn_drawcash_five
:
...
@@ -437,9 +488,18 @@ public class DrawcashActivity extends BaseActivity implements DrawcashView, OnLo
...
@@ -437,9 +488,18 @@ public class DrawcashActivity extends BaseActivity implements DrawcashView, OnLo
drawcashPresenter
.
getUserTaskMsg
();
drawcashPresenter
.
getUserTaskMsg
();
return
;
return
;
}
}
curCash
=
500
;
curCash
=
drawcash5
;
clickFive
(
curCash
);
clickFive
(
curCash
);
break
;
break
;
case
R
.
id
.
btn_drawcash_six
:
if
(
userConfig
==
null
)
{
showToast
(
"网络异常,请检测网络"
);
drawcashPresenter
.
getUserTaskMsg
();
return
;
}
curCash
=
drawcash6
;
clickSix
(
curCash
);
break
;
case
R
.
id
.
btn_drawcash_next
:
case
R
.
id
.
btn_drawcash_next
:
if
(
userConfig
==
null
)
{
if
(
userConfig
==
null
)
{
showToast
(
"网络异常,请检测网络"
);
showToast
(
"网络异常,请检测网络"
);
...
@@ -447,16 +507,26 @@ public class DrawcashActivity extends BaseActivity implements DrawcashView, OnLo
...
@@ -447,16 +507,26 @@ public class DrawcashActivity extends BaseActivity implements DrawcashView, OnLo
return
;
return
;
}
}
// 用户余额是否满足
if
(
curBtnNum
<=
3
)
{
if
(!
TextUtils
.
isEmpty
(
cashStr
)
&&
Double
.
valueOf
(
cashStr
)
<
curCash
)
{
if
(!
TextUtils
.
isEmpty
(
cashStr
)
&&
Double
.
valueOf
(
cashStr
)
<
curCash
)
{
showToast
(
"余额不足,快去做任务吧"
);
showToast
(
"金币不足,快去做任务吧"
);
return
;
}
}
else
{
if
(!
TextUtils
.
isEmpty
(
diamondCashStr
)
&&
Double
.
valueOf
(
diamondCashStr
)
<
curCash
)
{
showToast
(
"钻石不足,快去做任务吧"
);
return
;
return
;
}
}
}
// 是否登录
if
(!
userManager
.
userIsLogin
())
{
if
(!
userManager
.
userIsLogin
())
{
readyGo
(
WxLoginActivity
.
class
);
readyGo
(
WxLoginActivity
.
class
);
return
;
return
;
}
}
// 是否绑定手机号
if
(
TextUtils
.
isEmpty
(
userManager
.
getMobile
()))
{
if
(
TextUtils
.
isEmpty
(
userManager
.
getMobile
()))
{
Bundle
bundle
=
new
Bundle
();
Bundle
bundle
=
new
Bundle
();
bundle
.
putBoolean
(
Constant
.
LOGIN_FLAG
,
true
);
bundle
.
putBoolean
(
Constant
.
LOGIN_FLAG
,
true
);
...
@@ -495,6 +565,7 @@ public class DrawcashActivity extends BaseActivity implements DrawcashView, OnLo
...
@@ -495,6 +565,7 @@ public class DrawcashActivity extends BaseActivity implements DrawcashView, OnLo
}
}
}
}
// 本地是否保存地理位置
new
RxPermissions
(
DrawcashActivity
.
this
)
new
RxPermissions
(
DrawcashActivity
.
this
)
.
request
(
Manifest
.
permission
.
READ_PHONE_STATE
,
Manifest
.
permission
.
ACCESS_COARSE_LOCATION
,
.
request
(
Manifest
.
permission
.
READ_PHONE_STATE
,
Manifest
.
permission
.
ACCESS_COARSE_LOCATION
,
Manifest
.
permission
.
ACCESS_FINE_LOCATION
)
Manifest
.
permission
.
ACCESS_FINE_LOCATION
)
...
@@ -522,51 +593,29 @@ public class DrawcashActivity extends BaseActivity implements DrawcashView, OnLo
...
@@ -522,51 +593,29 @@ public class DrawcashActivity extends BaseActivity implements DrawcashView, OnLo
if
(
userConfig
!=
null
)
{
if
(
userConfig
!=
null
)
{
int
coin
=
userConfig
.
getCoin
();
int
coin
=
userConfig
.
getCoin
();
List
<
DrawcashBean
.
CashOutMoneyArrBean
>
outMoneyArr
=
userConfig
.
getCashOutMoneyArr
();
List
<
DrawcashBean
.
CashOutMoneyArrBean
>
outMoneyArr
=
userConfig
.
getCashOutMoneyArr
();
if
(
cash
==
100
&&
coin
>=
1000000
)
{
if
(
cash
==
drawcash2
&&
coin
>=
(
drawcash2
*
10000
)
)
{
if
(
outMoneyArr
!=
null
&&
outMoneyArr
.
size
()
>=
1
)
{
if
(
outMoneyArr
!=
null
&&
outMoneyArr
.
size
()
>=
1
)
{
DrawcashBean
.
CashOutMoneyArrBean
moneyArrBean
=
outMoneyArr
.
get
(
1
);
DrawcashBean
.
CashOutMoneyArrBean
moneyArrBean
=
outMoneyArr
.
get
(
1
);
llDrawcashTop
.
setVisibility
(
View
.
VISIBLE
);
llDrawcashTop
.
setVisibility
(
View
.
VISIBLE
);
llDrawcashBottom
.
setVisibility
(
View
.
GONE
);
tvDrawcashHintTop
.
setText
(
"邀请"
+
moneyArrBean
.
getNeedFs
()
+
"位好友且每位好友获得"
+
moneyArrBean
.
getFsGiveCoin
()
+
"金币即可提现"
);
tvDrawcashHintTop
.
setText
(
"邀请"
+
moneyArrBean
.
getNeedFs
()
+
"位好友且每位好友获得"
+
moneyArrBean
.
getFsGiveCoin
()
+
"金币即可提现"
);
tvDrawcashFriendsTop
.
setText
(
"可用有效好友数: "
+
moneyArrBean
.
getNowFriends
()
+
" / "
+
moneyArrBean
.
getNeedFs
());
tvDrawcashFriendsTop
.
setText
(
"可用有效好友数: "
+
moneyArrBean
.
getNowFriends
()
+
" / "
+
moneyArrBean
.
getNeedFs
());
}
}
}
else
if
(
cash
==
150
&&
coin
>=
1500000
)
{
}
else
if
(
cash
==
drawcash3
&&
coin
>=
(
drawcash3
*
10000
)
)
{
if
(
outMoneyArr
!=
null
&&
outMoneyArr
.
size
()
>=
2
)
{
if
(
outMoneyArr
!=
null
&&
outMoneyArr
.
size
()
>=
2
)
{
DrawcashBean
.
CashOutMoneyArrBean
moneyArrBean
=
outMoneyArr
.
get
(
2
);
DrawcashBean
.
CashOutMoneyArrBean
moneyArrBean
=
outMoneyArr
.
get
(
2
);
llDrawcashTop
.
setVisibility
(
View
.
VISIBLE
);
llDrawcashTop
.
setVisibility
(
View
.
VISIBLE
);
llDrawcashBottom
.
setVisibility
(
View
.
GONE
);
tvDrawcashHintTop
.
setText
(
"邀请"
+
moneyArrBean
.
getNeedFs
()
+
"位好友且每位好友获得"
+
moneyArrBean
.
getFsGiveCoin
()
+
"金币即可提现"
);
tvDrawcashHintTop
.
setText
(
"邀请"
+
moneyArrBean
.
getNeedFs
()
+
"位好友且每位好友获得"
+
moneyArrBean
.
getFsGiveCoin
()
+
"金币即可提现"
);
tvDrawcashFriendsTop
.
setText
(
"可用有效好友数: "
+
moneyArrBean
.
getNowFriends
()
+
" / "
+
moneyArrBean
.
getNeedFs
());
tvDrawcashFriendsTop
.
setText
(
"可用有效好友数: "
+
moneyArrBean
.
getNowFriends
()
+
" / "
+
moneyArrBean
.
getNeedFs
());
}
}
}
else
if
(
cash
==
200
&&
coin
>=
2000000
)
{
if
(
outMoneyArr
!=
null
&&
outMoneyArr
.
size
()
>=
3
)
{
DrawcashBean
.
CashOutMoneyArrBean
moneyArrBean
=
outMoneyArr
.
get
(
3
);
llDrawcashTop
.
setVisibility
(
View
.
GONE
);
llDrawcashBottom
.
setVisibility
(
View
.
VISIBLE
);
tvDrawcashHintBottom
.
setText
(
"邀请"
+
moneyArrBean
.
getNeedFs
()
+
"位好友且每位好友获得"
+
moneyArrBean
.
getFsGiveCoin
()
+
"金币即可提现"
);
tvDrawcashFriendsBottom
.
setText
(
"可用有效好友数: "
+
moneyArrBean
.
getNowFriends
()
+
" / "
+
moneyArrBean
.
getNeedFs
());
}
}
else
if
(
cash
==
500
&&
coin
>=
5000000
)
{
if
(
outMoneyArr
!=
null
&&
outMoneyArr
.
size
()
>=
4
)
{
DrawcashBean
.
CashOutMoneyArrBean
moneyArrBean
=
outMoneyArr
.
get
(
4
);
llDrawcashTop
.
setVisibility
(
View
.
GONE
);
llDrawcashBottom
.
setVisibility
(
View
.
VISIBLE
);
tvDrawcashHintBottom
.
setText
(
"邀请"
+
moneyArrBean
.
getNeedFs
()
+
"位好友且每位好友获得"
+
moneyArrBean
.
getFsGiveCoin
()
+
"金币即可提现"
);
tvDrawcashFriendsBottom
.
setText
(
"可用有效好友数: "
+
moneyArrBean
.
getNowFriends
()
+
" / "
+
moneyArrBean
.
getNeedFs
());
}
}
else
{
}
else
{
llDrawcashTop
.
setVisibility
(
View
.
GONE
);
llDrawcashTop
.
setVisibility
(
View
.
GONE
);
llDrawcashBottom
.
setVisibility
(
View
.
GONE
);
}
}
}
else
{
}
else
{
llDrawcashTop
.
setVisibility
(
View
.
GONE
);
llDrawcashTop
.
setVisibility
(
View
.
GONE
);
llDrawcashBottom
.
setVisibility
(
View
.
GONE
);
}
}
}
}
...
@@ -578,11 +627,18 @@ public class DrawcashActivity extends BaseActivity implements DrawcashView, OnLo
...
@@ -578,11 +627,18 @@ public class DrawcashActivity extends BaseActivity implements DrawcashView, OnLo
btnDrawcashTwo
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_new_dont
));
btnDrawcashTwo
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_new_dont
));
}
}
btnDrawcashThree
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_none
));
btnDrawcashThree
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_none
));
btnDrawcashFour
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_none
));
if
(
cashOut4yuan
)
{
btnDrawcashFour
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_new_none
));
}
else
{
btnDrawcashFour
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_new_dont
));
}
btnDrawcashFive
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_none
));
btnDrawcashFive
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_none
));
btnDrawcashHint
.
setText
(
"所需金币:"
+
(
drawcash
*
10000
));
btnDrawcashSix
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_none
));
btnDrawcashHint
.
setText
(
"所需金币:"
+
(
int
)
(
drawcash1
*
10000
));
setDrawLayout
(
cash
);
setDrawLayout
(
cash
);
curBtnNum
=
1
;
}
}
private
void
clickTwo
(
double
cash
)
{
private
void
clickTwo
(
double
cash
)
{
...
@@ -593,11 +649,18 @@ public class DrawcashActivity extends BaseActivity implements DrawcashView, OnLo
...
@@ -593,11 +649,18 @@ public class DrawcashActivity extends BaseActivity implements DrawcashView, OnLo
}
}
btnDrawcashTwo
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_new_enable
));
btnDrawcashTwo
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_new_enable
));
btnDrawcashThree
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_none
));
btnDrawcashThree
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_none
));
btnDrawcashFour
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_none
));
if
(
cashOut4yuan
)
{
btnDrawcashFour
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_new_none
));
}
else
{
btnDrawcashFour
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_new_dont
));
}
btnDrawcashFive
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_none
));
btnDrawcashFive
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_none
));
btnDrawcashHint
.
setText
(
"所需金币:1000000"
);
btnDrawcashSix
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_none
));
btnDrawcashHint
.
setText
(
"所需金币:"
+
(
drawcash2
*
10000
));
setDrawLayout
(
cash
);
setDrawLayout
(
cash
);
curBtnNum
=
2
;
}
}
private
void
clickThree
(
double
cash
)
{
private
void
clickThree
(
double
cash
)
{
...
@@ -612,10 +675,17 @@ public class DrawcashActivity extends BaseActivity implements DrawcashView, OnLo
...
@@ -612,10 +675,17 @@ public class DrawcashActivity extends BaseActivity implements DrawcashView, OnLo
btnDrawcashTwo
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_new_dont
));
btnDrawcashTwo
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_new_dont
));
}
}
btnDrawcashThree
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_enable
));
btnDrawcashThree
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_enable
));
btnDrawcashFour
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_none
));
if
(
cashOut4yuan
)
{
btnDrawcashFour
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_new_none
));
}
else
{
btnDrawcashFour
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_new_dont
));
}
btnDrawcashFive
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_none
));
btnDrawcashFive
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_none
));
btnDrawcashHint
.
setText
(
"所需金币:1500000"
);
btnDrawcashSix
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_none
));
btnDrawcashHint
.
setText
(
"所需金币:"
+
(
drawcash3
*
10000
));
setDrawLayout
(
cash
);
setDrawLayout
(
cash
);
curBtnNum
=
3
;
}
}
private
void
clickFour
(
double
cash
)
{
private
void
clickFour
(
double
cash
)
{
...
@@ -630,11 +700,12 @@ public class DrawcashActivity extends BaseActivity implements DrawcashView, OnLo
...
@@ -630,11 +700,12 @@ public class DrawcashActivity extends BaseActivity implements DrawcashView, OnLo
btnDrawcashTwo
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_new_dont
));
btnDrawcashTwo
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_new_dont
));
}
}
btnDrawcashThree
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_none
));
btnDrawcashThree
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_none
));
btnDrawcashFour
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_enable
));
btnDrawcashFour
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_
new_
enable
));
btnDrawcashFive
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_none
));
btnDrawcashFive
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_none
));
btnDrawcashHint
.
setText
(
"所需金币:2000000"
);
btnDrawcashSix
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_none
));
btnDrawcashHint
.
setText
(
"所需钻石:"
+
(
drawcash4
*
10000
));
setDrawLayout
(
cash
);
setDrawLayout
(
cash
);
curBtnNum
=
4
;
}
}
private
void
clickFive
(
double
cash
)
{
private
void
clickFive
(
double
cash
)
{
...
@@ -649,43 +720,74 @@ public class DrawcashActivity extends BaseActivity implements DrawcashView, OnLo
...
@@ -649,43 +720,74 @@ public class DrawcashActivity extends BaseActivity implements DrawcashView, OnLo
btnDrawcashTwo
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_new_dont
));
btnDrawcashTwo
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_new_dont
));
}
}
btnDrawcashThree
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_none
));
btnDrawcashThree
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_none
));
btnDrawcashFour
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_none
));
if
(
cashOut4yuan
)
{
btnDrawcashFour
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_new_none
));
}
else
{
btnDrawcashFour
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_new_dont
));
}
btnDrawcashFive
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_enable
));
btnDrawcashFive
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_enable
));
btnDrawcashHint
.
setText
(
"所需金币:5000000"
);
btnDrawcashSix
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_none
));
btnDrawcashHint
.
setText
(
"所需钻石:"
+
(
drawcash5
*
10000
));
setDrawLayout
(
cash
);
curBtnNum
=
5
;
}
private
void
clickSix
(
double
cash
)
{
if
(
cashOut1yuan
)
{
btnDrawcashOne
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_new_none
));
}
else
{
btnDrawcashOne
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_new_dont
));
}
if
(
cashOut2yuan
)
{
btnDrawcashTwo
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_new_none
));
}
else
{
btnDrawcashTwo
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_new_dont
));
}
btnDrawcashThree
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_none
));
if
(
cashOut4yuan
)
{
btnDrawcashFour
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_new_none
));
}
else
{
btnDrawcashFour
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_new_dont
));
}
btnDrawcashFive
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_none
));
btnDrawcashSix
.
setBackground
(
getResources
().
getDrawable
(
R
.
mipmap
.
ic_drawcash_enable
));
btnDrawcashHint
.
setText
(
"所需钻石:"
+
(
drawcash6
*
10000
));
setDrawLayout
(
cash
);
setDrawLayout
(
cash
);
curBtnNum
=
6
;
}
}
private
void
initBtnStyle
()
{
private
void
initBtnStyle
()
{
btnDrawcashOne
.
setText
(
new
SpanUtils
()
btnDrawcashOne
.
setText
(
new
SpanUtils
()
.
append
(
drawcash
+
"元"
).
setForegroundColor
(
getResources
().
getColor
(
R
.
color
.
product_text
))
.
append
(
drawcash
1
+
"元"
).
setForegroundColor
(
getResources
().
getColor
(
R
.
color
.
product_text
))
.
append
(
"\n"
)
.
append
(
"\n"
)
.
append
(
"约"
+
(
drawcash
*
10000
)
+
"金币"
).
setFontSize
(
26
).
setForegroundColor
(
getResources
().
getColor
(
R
.
color
.
authentic_none
))
.
append
(
"约"
+
(
drawcash
1
*
10000
)
+
"金币"
).
setFontSize
(
26
).
setForegroundColor
(
getResources
().
getColor
(
R
.
color
.
authentic_none
))
.
create
());
.
create
());
btnDrawcashTwo
.
setText
(
new
SpanUtils
()
btnDrawcashTwo
.
setText
(
new
SpanUtils
()
.
append
(
"100
元"
).
setForegroundColor
(
getResources
().
getColor
(
R
.
color
.
product_text
))
.
append
(
drawcash2
+
"
元"
).
setForegroundColor
(
getResources
().
getColor
(
R
.
color
.
product_text
))
.
append
(
"\n"
)
.
append
(
"\n"
)
.
append
(
"约
1000000
金币"
).
setFontSize
(
26
).
setForegroundColor
(
getResources
().
getColor
(
R
.
color
.
authentic_none
))
.
append
(
"约
"
+
(
drawcash2
*
10000
)
+
"
金币"
).
setFontSize
(
26
).
setForegroundColor
(
getResources
().
getColor
(
R
.
color
.
authentic_none
))
.
create
());
.
create
());
btnDrawcashThree
.
setText
(
new
SpanUtils
()
btnDrawcashThree
.
setText
(
new
SpanUtils
()
.
append
(
"150
元"
).
setForegroundColor
(
getResources
().
getColor
(
R
.
color
.
product_text
))
.
append
(
drawcash3
+
"
元"
).
setForegroundColor
(
getResources
().
getColor
(
R
.
color
.
product_text
))
.
append
(
"\n"
)
.
append
(
"\n"
)
.
append
(
"约
1500000
金币"
).
setFontSize
(
26
).
setForegroundColor
(
getResources
().
getColor
(
R
.
color
.
authentic_none
))
.
append
(
"约
"
+
(
drawcash3
*
10000
)
+
"
金币"
).
setFontSize
(
26
).
setForegroundColor
(
getResources
().
getColor
(
R
.
color
.
authentic_none
))
.
create
());
.
create
());
btnDrawcashFour
.
setText
(
new
SpanUtils
()
btnDrawcashFour
.
setText
(
new
SpanUtils
()
.
append
(
"200
元"
).
setForegroundColor
(
getResources
().
getColor
(
R
.
color
.
product_text
))
.
append
(
drawcash4
+
"
元"
).
setForegroundColor
(
getResources
().
getColor
(
R
.
color
.
product_text
))
.
append
(
"\n"
)
.
append
(
"\n"
)
.
append
(
"约
2000000金币
"
).
setFontSize
(
26
).
setForegroundColor
(
getResources
().
getColor
(
R
.
color
.
authentic_none
))
.
append
(
"约
"
+
(
drawcash4
*
10000
)
+
"钻石
"
).
setFontSize
(
26
).
setForegroundColor
(
getResources
().
getColor
(
R
.
color
.
authentic_none
))
.
create
());
.
create
());
btnDrawcashFive
.
setText
(
new
SpanUtils
()
btnDrawcashFive
.
setText
(
new
SpanUtils
()
.
append
(
"500
元"
).
setForegroundColor
(
getResources
().
getColor
(
R
.
color
.
product_text
))
.
append
(
drawcash5
+
"
元"
).
setForegroundColor
(
getResources
().
getColor
(
R
.
color
.
product_text
))
.
append
(
"\n"
)
.
append
(
"\n"
)
.
append
(
"约
5000000金币
"
).
setFontSize
(
26
).
setForegroundColor
(
getResources
().
getColor
(
R
.
color
.
authentic_none
))
.
append
(
"约
"
+
(
drawcash5
*
10000
)
+
"钻石
"
).
setFontSize
(
26
).
setForegroundColor
(
getResources
().
getColor
(
R
.
color
.
authentic_none
))
.
create
());
.
create
());
btnDrawcashSix
.
setText
(
new
SpanUtils
()
tvDrawcashExplain
.
setText
(
new
SpanUtils
()
.
append
(
drawcash6
+
"元"
).
setForegroundColor
(
getResources
().
getColor
(
R
.
color
.
product_text
))
.
append
(
"100元"
).
setForegroundColor
(
getResources
().
getColor
(
R
.
color
.
product_text
))
.
append
(
"\n"
)
.
append
(
"\n"
)
.
append
(
"约
1000000金币
"
).
setFontSize
(
26
).
setForegroundColor
(
getResources
().
getColor
(
R
.
color
.
authentic_none
))
.
append
(
"约
"
+
(
drawcash6
*
10000
)
+
"钻石
"
).
setFontSize
(
26
).
setForegroundColor
(
getResources
().
getColor
(
R
.
color
.
authentic_none
))
.
create
());
.
create
());
tvDrawcashExplain
.
setText
(
tvDrawcashExplain
.
setText
(
...
@@ -696,13 +798,13 @@ public class DrawcashActivity extends BaseActivity implements DrawcashView, OnLo
...
@@ -696,13 +798,13 @@ public class DrawcashActivity extends BaseActivity implements DrawcashView, OnLo
.
append
(
"\n"
)
.
append
(
"\n"
)
.
append
(
"2、由于提现需要实名制,非实名用户账号无法支持提现,请务必使用实名认证过的账号提现!"
)
.
append
(
"2、由于提现需要实名制,非实名用户账号无法支持提现,请务必使用实名认证过的账号提现!"
)
.
append
(
"\n"
)
.
append
(
"\n"
)
.
append
(
"3、单笔提现金额最低"
+
drawcash
+
"元,最高500
元。"
)
.
append
(
"3、单笔提现金额最低"
+
drawcash
1
+
"元,最高"
+
drawcash3
+
"
元。"
)
.
append
(
"\n"
)
.
append
(
"\n"
)
.
append
(
"4、提现申请将在1-3个工作日审核到账,请耐心等待。"
)
.
append
(
"4、提现申请将在1-3个工作日审核到账,请耐心等待。"
)
.
append
(
"\n"
)
.
append
(
"\n"
)
.
append
(
"5、每日可申请提现一次,若当日限额已满,请次日申请。"
)
.
append
(
"5、每日可申请提现一次,若当日限额已满,请次日申请。"
)
.
append
(
"\n"
)
.
append
(
"\n"
)
.
append
(
"6、"
+
drawcash
+
"元,100元提现
是新人专享福利,每个账号仅可享受一次。"
)
.
append
(
"6、"
+
drawcash
1
+
"元,"
+
drawcash2
+
"元,
是新人专享福利,每个账号仅可享受一次。"
)
.
create
());
.
create
());
}
}
...
...
highgold/app/src/main/java/com/mints/highgold/ui/activitys/GoldTryActivity.java
View file @
e01ee605
...
@@ -55,7 +55,6 @@ public class GoldTryActivity extends BaseActivity implements GoldTryView,
...
@@ -55,7 +55,6 @@ public class GoldTryActivity extends BaseActivity implements GoldTryView,
protected
void
initViewsAndEvents
()
{
protected
void
initViewsAndEvents
()
{
tvActivityTitle
.
setText
(
"金币兑换"
);
tvActivityTitle
.
setText
(
"金币兑换"
);
goldTryPresenter
=
new
GoldTryPresenter
();
goldTryPresenter
=
new
GoldTryPresenter
();
goldTryPresenter
.
attachView
(
this
);
goldTryPresenter
.
attachView
(
this
);
...
@@ -74,7 +73,6 @@ public class GoldTryActivity extends BaseActivity implements GoldTryView,
...
@@ -74,7 +73,6 @@ public class GoldTryActivity extends BaseActivity implements GoldTryView,
public
void
onDestroy
()
{
public
void
onDestroy
()
{
super
.
onDestroy
();
super
.
onDestroy
();
goldTryPresenter
.
detachView
();
goldTryPresenter
.
detachView
();
}
}
...
...
highgold/app/src/main/java/com/mints/highgold/ui/activitys/LoginActivity.java
View file @
e01ee605
...
@@ -346,11 +346,11 @@ public class LoginActivity extends BaseActivity implements LoginView {
...
@@ -346,11 +346,11 @@ public class LoginActivity extends BaseActivity implements LoginView {
@Override
@Override
public
void
loginSuc
()
{
public
void
loginSuc
()
{
//
try {
try
{
//
// 登录成功初始化鱼玩盒子userid
// 登录成功初始化鱼玩盒子userid
//
getBaseApplication().initYwSdk();
getBaseApplication
().
initYwSdk
();
//
} catch (Exception e) {
}
catch
(
Exception
e
)
{
//
}
}
// try {
// try {
// 登录成功初始化愉悦推
// 登录成功初始化愉悦推
...
...
highgold/app/src/main/java/com/mints/highgold/ui/activitys/WxLoginActivity.java
View file @
e01ee605
...
@@ -230,11 +230,11 @@ public class WxLoginActivity extends BaseActivity implements WxLoginView, OnLogi
...
@@ -230,11 +230,11 @@ public class WxLoginActivity extends BaseActivity implements WxLoginView, OnLogi
public
void
loginSuc
()
{
public
void
loginSuc
()
{
// UserManager.getInstance().userLogout();
// UserManager.getInstance().userLogout();
//
try {
try
{
//
// 登录成功初始化鱼玩盒子userid
// 登录成功初始化鱼玩盒子userid
//
getBaseApplication().initYwSdk();
getBaseApplication
().
initYwSdk
();
//
} catch (Exception e) {
}
catch
(
Exception
e
)
{
//
}
}
// try {
// try {
// 登录成功初始化愉悦推
// 登录成功初始化愉悦推
...
...
highgold/app/src/main/java/com/mints/highgold/ui/adapter/GoldRecordAdapter.java
View file @
e01ee605
...
@@ -59,6 +59,7 @@ public class GoldRecordAdapter extends BaseAdapter {
...
@@ -59,6 +59,7 @@ public class GoldRecordAdapter extends BaseAdapter {
viewHolder
.
tv_goldrecord_time
=
(
TextView
)
convertView
.
findViewById
(
R
.
id
.
tv_goldrecord_time
);
viewHolder
.
tv_goldrecord_time
=
(
TextView
)
convertView
.
findViewById
(
R
.
id
.
tv_goldrecord_time
);
viewHolder
.
tv_goldrecord_content
=
(
TextView
)
convertView
.
findViewById
(
R
.
id
.
tv_goldrecord_content
);
viewHolder
.
tv_goldrecord_content
=
(
TextView
)
convertView
.
findViewById
(
R
.
id
.
tv_goldrecord_content
);
viewHolder
.
tv_goldrecord_cash
=
(
TextView
)
convertView
.
findViewById
(
R
.
id
.
tv_goldrecord_cash
);
viewHolder
.
tv_goldrecord_cash
=
(
TextView
)
convertView
.
findViewById
(
R
.
id
.
tv_goldrecord_cash
);
viewHolder
.
tv_goldrecord_cash_type
=
(
TextView
)
convertView
.
findViewById
(
R
.
id
.
tv_goldrecord_cash_type
);
convertView
.
setTag
(
viewHolder
);
convertView
.
setTag
(
viewHolder
);
}
else
{
}
else
{
...
@@ -84,10 +85,25 @@ public class GoldRecordAdapter extends BaseAdapter {
...
@@ -84,10 +85,25 @@ public class GoldRecordAdapter extends BaseAdapter {
switch
(
data
.
getType
())
{
//2-积分兑换入账 3-朋友推荐入账
switch
(
data
.
getType
())
{
//2-积分兑换入账 3-朋友推荐入账
case
0
:
//增加
case
0
:
//增加
viewHolder
.
tv_goldrecord_cash
.
setText
(
"+"
+
data
.
getUnitCoin
());
if
(
data
.
getRewardType
()==
0
){
// 0-金币
viewHolder
.
tv_goldrecord_cash
.
setText
(
"金币"
);
viewHolder
.
tv_goldrecord_cash
.
setTextColor
(
ContextCompat
.
getColor
(
context
,
R
.
color
.
main_mints
));
viewHolder
.
tv_goldrecord_cash
.
setTextColor
(
ContextCompat
.
getColor
(
context
,
R
.
color
.
main_mints
));
}
else
{
viewHolder
.
tv_goldrecord_cash
.
setText
(
"钻石"
);
viewHolder
.
tv_goldrecord_cash
.
setTextColor
(
ContextCompat
.
getColor
(
context
,
R
.
color
.
versus_task_play_text
));
}
viewHolder
.
tv_goldrecord_cash
.
setText
(
"+"
+
data
.
getUnitCoin
());
break
;
break
;
default
:
//减少
default
:
//减少
if
(
data
.
getRewardType
()==
0
){
// 0-金币
viewHolder
.
tv_goldrecord_cash
.
setText
(
"金币"
);
}
else
{
viewHolder
.
tv_goldrecord_cash
.
setText
(
"钻石"
);
}
viewHolder
.
tv_goldrecord_cash
.
setText
(
"-"
+
data
.
getUnitCoin
());
viewHolder
.
tv_goldrecord_cash
.
setText
(
"-"
+
data
.
getUnitCoin
());
viewHolder
.
tv_goldrecord_cash
.
setTextColor
(
ContextCompat
.
getColor
(
context
,
R
.
color
.
loan_green
));
viewHolder
.
tv_goldrecord_cash
.
setTextColor
(
ContextCompat
.
getColor
(
context
,
R
.
color
.
loan_green
));
break
;
break
;
...
@@ -101,6 +117,7 @@ public class GoldRecordAdapter extends BaseAdapter {
...
@@ -101,6 +117,7 @@ public class GoldRecordAdapter extends BaseAdapter {
public
TextView
tv_goldrecord_time
;
public
TextView
tv_goldrecord_time
;
public
TextView
tv_goldrecord_content
;
public
TextView
tv_goldrecord_content
;
public
TextView
tv_goldrecord_cash
;
public
TextView
tv_goldrecord_cash
;
public
TextView
tv_goldrecord_cash_type
;
}
}
}
}
highgold/app/src/main/java/com/mints/highgold/ui/adapter/MainGameAdapter.java
View file @
e01ee605
...
@@ -79,17 +79,8 @@ public class MainGameAdapter extends BaseAdapter {
...
@@ -79,17 +79,8 @@ public class MainGameAdapter extends BaseAdapter {
viewHolder
.
iv_main_item_gametype
.
setBackground
(
context
.
getResources
().
getDrawable
(
R
.
mipmap
.
ic_game_hot
));
viewHolder
.
iv_main_item_gametype
.
setBackground
(
context
.
getResources
().
getDrawable
(
R
.
mipmap
.
ic_game_hot
));
}
else
if
(
hotType
==
2
)
{
}
else
if
(
hotType
==
2
)
{
viewHolder
.
iv_main_item_gametype
.
setBackground
(
context
.
getResources
().
getDrawable
(
R
.
mipmap
.
ic_game_new
));
viewHolder
.
iv_main_item_gametype
.
setBackground
(
context
.
getResources
().
getDrawable
(
R
.
mipmap
.
ic_game_new
));
}
}
// if (hotType == 2) {
// destoryTimerList();
// startTime(viewHolder.tv_main_item_next, 60, gameList.getButtonText());
// } else {
// viewHolder.tv_main_item_next.setText(gameList.getButtonText());
// viewHolder.tv_main_item_next.setBackground(context.getResources().getDrawable(R.drawable.shape_main_water));
// }
GlideUtils
.
loadImageViewLoding
(
context
,
gameList
.
getImgUrl
(),
viewHolder
.
ic_main_item_game
,
R
.
mipmap
.
ic_launcher
,
R
.
mipmap
.
ic_launcher
);
GlideUtils
.
loadImageViewLoding
(
context
,
gameList
.
getImgUrl
(),
viewHolder
.
ic_main_item_game
,
R
.
mipmap
.
ic_launcher
,
R
.
mipmap
.
ic_launcher
);
viewHolder
.
tv_main_item_title
.
setText
(
gameList
.
getTitle
());
viewHolder
.
tv_main_item_title
.
setText
(
gameList
.
getTitle
());
viewHolder
.
tv_main_item_gold
.
setText
(
"+"
+
gameList
.
getCoin
());
viewHolder
.
tv_main_item_gold
.
setText
(
"+"
+
gameList
.
getCoin
());
...
@@ -99,12 +90,17 @@ public class MainGameAdapter extends BaseAdapter {
...
@@ -99,12 +90,17 @@ public class MainGameAdapter extends BaseAdapter {
if
(
gameList
.
getStatus
()
==
0
)
{
if
(
gameList
.
getStatus
()
==
0
)
{
//0-未完成不可点击领取 1-已完成挑战可以领取 2-已领取不可再领取
//0-未完成不可点击领取 1-已完成挑战可以领取 2-已领取不可再领取
viewHolder
.
tv_main_item_next
.
setBackground
(
context
.
getResources
().
getDrawable
(
R
.
drawable
.
shape_main_water
));
viewHolder
.
tv_main_item_next
.
setBackground
(
context
.
getResources
().
getDrawable
(
R
.
drawable
.
shape_main_water
));
}
else
if
(
gameList
.
getStatus
()
==
1
)
{
}
else
if
(
gameList
.
getStatus
()
==
1
)
{
viewHolder
.
tv_main_item_next
.
setBackground
(
context
.
getResources
().
getDrawable
(
R
.
drawable
.
shape_tv_gold
));
viewHolder
.
tv_main_item_next
.
setBackground
(
context
.
getResources
().
getDrawable
(
R
.
drawable
.
shape_tv_gold
));
}
else
{
}
else
{
viewHolder
.
tv_main_item_next
.
setBackground
(
context
.
getResources
().
getDrawable
(
R
.
drawable
.
shape_tv_gold_gury
));
viewHolder
.
tv_main_item_next
.
setBackground
(
context
.
getResources
().
getDrawable
(
R
.
drawable
.
shape_tv_gold_gury
));
}
}
if
(
gameList
.
getRewardType
()
==
0
)
{
viewHolder
.
tv_main_item_gold
.
setCompoundDrawablesWithIntrinsicBounds
(
context
.
getResources
().
getDrawable
(
R
.
mipmap
.
ic_gold
),
null
,
null
,
null
);
}
else
{
viewHolder
.
tv_main_item_gold
.
setCompoundDrawablesWithIntrinsicBounds
(
context
.
getResources
().
getDrawable
(
R
.
mipmap
.
ic_diamond
),
null
,
null
,
null
);
}
}
}
return
convertView
;
return
convertView
;
...
...
highgold/app/src/main/java/com/mints/highgold/ui/fragment/MainFragment.java
View file @
e01ee605
...
@@ -969,6 +969,48 @@ public class MainFragment extends BaseFragment
...
@@ -969,6 +969,48 @@ public class MainFragment extends BaseFragment
getRandomVedioAd
(
Constant
.
CARRIER_DAILY_VIDEO
,
userConfig
.
getVideoCoin
(),
""
,
userConfig
.
getConfigH5DownloadCoin
());
getRandomVedioAd
(
Constant
.
CARRIER_DAILY_VIDEO
,
userConfig
.
getVideoCoin
(),
""
,
userConfig
.
getConfigH5DownloadCoin
());
}
}
}
else
if
(
TextUtils
.
equals
(
gameId
,
"homeywhz"
))
{
// 鱼玩盒子
//0-未完成挑战,不可点击领取 1-已完成挑战可以领取 2-已领取不可再领取
int
status
=
gameList
.
get
(
position
).
getStatus
();
switch
(
status
)
{
case
0
:
case
2
:
if
(!
userManager
.
userIsLogin
())
{
readyGo
(
WxLoginActivity
.
class
);
return
;
}
new
RxPermissions
(
getActivity
())
.
request
(
Manifest
.
permission
.
READ_PHONE_STATE
,
Manifest
.
permission
.
READ_EXTERNAL_STORAGE
)
.
subscribe
(
granted
->
{
if
(
granted
)
{
try
{
YwSDK_WebActivity
.
Companion
.
open
(
getActivity
());
// toggleIsBack2Left();
}
catch
(
Exception
e
)
{
e
.
printStackTrace
();
showToast
(
"暂不支持该版本"
);
}
}
else
{
showMissingPermissionDialog
(
"设备、储存"
);
}
});
break
;
case
1
:
HashMap
<
String
,
Object
>
vo
=
new
HashMap
<>();
vo
.
put
(
"gameId"
,
gameId
);
vo
.
put
(
"carrierType"
,
Constant
.
CARRIER_HOMEPAGE_YWHZ
);
loanPresenter
.
reportAddCoinMsg
(
vo
,
""
);
Bundle
bundle
=
new
Bundle
();
bundle
.
putString
(
Constant
.
MAIN_CARRIET_TURN
,
Constant
.
CARRIER_HOMEPAGE_YWHZ
);
bundle
.
putInt
(
Constant
.
MAIN_CUR_FLAG
,
Constant
.
MAIN_CUR_ONE
);
bundle
.
putInt
(
Constant
.
MAIN_CUR_COIN
,
gameList
.
get
(
position
).
getCoin
());
// bundle.putInt(Constant.MAIN_ALL_COIN, userConfig.getCoin());
readyGo
(
AwardActivity
.
class
,
bundle
);
break
;
}
}
else
if
(
TextUtils
.
equals
(
gameId
,
"homemobile"
))
{
}
else
if
(
TextUtils
.
equals
(
gameId
,
"homemobile"
))
{
// 移动积分
// 移动积分
//0-未完成挑战,不可点击领取 1-已完成挑战可以领取 2-已领取不可再领取
//0-未完成挑战,不可点击领取 1-已完成挑战可以领取 2-已领取不可再领取
...
...
highgold/app/src/main/java/com/mints/highgold/ui/fragment/VersusFragment.java
View file @
e01ee605
...
@@ -560,22 +560,6 @@ public class VersusFragment extends BaseFragment
...
@@ -560,22 +560,6 @@ public class VersusFragment extends BaseFragment
showToast
(
"挑战看视频任务已完成,请明日再来"
);
showToast
(
"挑战看视频任务已完成,请明日再来"
);
return
;
return
;
}
}
// if (!isFirstVedioTimeFlag) {
// int sysTaskTimeInterval = userConfig.getSys_task_time_interval();
// if (sysTaskTimeInterval > 0) {
// startTime(sysTaskTimeInterval * 60 * 1000);
// }
// loadAd(Constant.CARRIER_VERSUS_VIDEO, TTAdManagerHolder.TT_AD_VEDIO_MAIN_2);
// }
// if (!isFirstVedioTimeFlag) {
// int sysTaskTimeInterval = userConfig.getSys_task_time_interval();
// if (sysTaskTimeInterval > 0) {
// startTime(sysTaskTimeInterval * 60 * 1000);
// }
// getRandomVedioAd(Constant.CARRIER_VERSUS_VIDEO, userConfig.getChallenge_vedio1_vedio_coin(), "", userConfig.getChallenge_vedio1_download_coin());
// }
getRandomVedioAd
(
Constant
.
CARRIER_VERSUS_VIDEO
,
userConfig
.
getChallenge_vedio1_vedio_coin
(),
""
,
userConfig
.
getChallenge_vedio1_download_coin
());
getRandomVedioAd
(
Constant
.
CARRIER_VERSUS_VIDEO
,
userConfig
.
getChallenge_vedio1_vedio_coin
(),
""
,
userConfig
.
getChallenge_vedio1_download_coin
());
break
;
break
;
case
R
.
id
.
ll_versus_tryplay
:
case
R
.
id
.
ll_versus_tryplay
:
...
@@ -584,14 +568,6 @@ public class VersusFragment extends BaseFragment
...
@@ -584,14 +568,6 @@ public class VersusFragment extends BaseFragment
showToast
(
"挑战玩应用任务已完成,请明日再来"
);
showToast
(
"挑战玩应用任务已完成,请明日再来"
);
return
;
return
;
}
}
// loadAd(Constant.CARRIER_VERSUS_DOWNLOAD, TTAdManagerHolder.TT_AD_VEDIO_MAIN_2);
// tryVedio();
// getRandomVedioAd(Constant.CARRIER_VERSUS_VIDEO, userConfig.getChallenge_download1_vedio_coin(), "", userConfig.getChallenge_download1_download_coin());
break
;
break
;
case
R
.
id
.
ll_versus_drinktea
:
case
R
.
id
.
ll_versus_drinktea
:
case
R
.
id
.
tv_versus_drinktea
:
case
R
.
id
.
tv_versus_drinktea
:
...
@@ -923,19 +899,16 @@ public class VersusFragment extends BaseFragment
...
@@ -923,19 +899,16 @@ public class VersusFragment extends BaseFragment
}
}
// 鱼玩盒子
// 鱼玩盒子
// if (userManager.getAdShowFlag()) {
if
(
userManager
.
getAdShowFlag
())
{
//// if (Build.VERSION.SDK_INT <= 28) {
tvVersusYwhzgold
.
setText
(
"+"
+
data
.
getYwhzCoin
());
// // 目前只支持anrdoid 10以下
if
(
data
.
isYwhzShow
())
{
// tvVersusYwhzgold.setText("+" + data.getYwhzCoin());
llVersusYwhz
.
setVisibility
(
View
.
VISIBLE
);
// if (data.isYwhzShow()) {
viewVersusYwhz
.
setVisibility
(
View
.
VISIBLE
);
// llVersusYwhz.setVisibility(View.VISIBLE);
}
else
{
// viewVersusYwhz.setVisibility(View.VISIBLE);
llVersusYwhz
.
setVisibility
(
View
.
GONE
);
// } else {
viewVersusYwhz
.
setVisibility
(
View
.
GONE
);
// llVersusYwhz.setVisibility(View.GONE);
}
// viewVersusYwhz.setVisibility(View.GONE);
}
// }
//// }
// }
// ----------------------------
// ----------------------------
//第一次喝水 Complete 0-未完成 1-完成 2-领取
//第一次喝水 Complete 0-未完成 1-完成 2-领取
...
@@ -2261,6 +2234,7 @@ public class VersusFragment extends BaseFragment
...
@@ -2261,6 +2234,7 @@ public class VersusFragment extends BaseFragment
});
});
vedioAdingManager
.
loadAding
(
bean
);
vedioAdingManager
.
loadAding
(
bean
);
}
}
/**
/**
* 广告返回结果
* 广告返回结果
*
*
...
...
highgold/app/src/main/java/com/mints/library/utils/GlideUtils.java
View file @
e01ee605
...
@@ -113,6 +113,11 @@ public class GlideUtils {
...
@@ -113,6 +113,11 @@ public class GlideUtils {
Glide
.
with
(
mContext
).
load
(
path
).
asGif
().
into
(
mImageView
);
Glide
.
with
(
mContext
).
load
(
path
).
asGif
().
into
(
mImageView
);
}
}
//设置动态GIF Drawable
public
static
void
loadImageViewGif
(
Context
mContext
,
int
drawPath
,
ImageView
mImageView
)
{
Glide
.
with
(
mContext
).
load
(
drawPath
).
asGif
().
into
(
mImageView
);
}
//设置静态GIF加载方式
//设置静态GIF加载方式
public
static
void
loadImageViewStaticGif
(
Context
mContext
,
String
path
,
ImageView
mImageView
)
{
public
static
void
loadImageViewStaticGif
(
Context
mContext
,
String
path
,
ImageView
mImageView
)
{
Glide
.
with
(
mContext
).
load
(
path
).
asBitmap
().
into
(
mImageView
);
Glide
.
with
(
mContext
).
load
(
path
).
asBitmap
().
into
(
mImageView
);
...
...
highgold/app/src/main/res/drawable/bg_banner.gif
0 → 100644
View file @
e01ee605
18.5 KB
highgold/app/src/main/res/layout/activity_drawcash.xml
View file @
e01ee605
...
@@ -13,7 +13,6 @@
...
@@ -13,7 +13,6 @@
android:layout_weight=
"1"
android:layout_weight=
"1"
android:orientation=
"vertical"
>
android:orientation=
"vertical"
>
<ScrollView
<ScrollView
android:layout_width=
"match_parent"
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
android:layout_height=
"match_parent"
...
@@ -24,46 +23,27 @@
...
@@ -24,46 +23,27 @@
android:layout_height=
"match_parent"
android:layout_height=
"match_parent"
android:orientation=
"vertical"
>
android:orientation=
"vertical"
>
<
Relative
Layout
<
Linear
Layout
android:layout_width=
"match_parent"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
>
android:layout_height=
"wrap_content"
android:layout_marginLeft=
"50pt"
android:layout_marginTop=
"10pt"
android:orientation=
"horizontal"
>
<TextView
<TextView
android:layout_width=
"wrap_content"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_centerHorizontal=
"true"
android:layout_centerHorizontal=
"true"
android:layout_marginTop=
"60pt"
android:text=
"当前金币"
android:text=
"当前金币"
android:textColor=
"@color/graya"
android:textColor=
"@color/graya"
android:textSize=
"12sp"
/>
android:textSize=
"12sp"
/>
<TextView
android:id=
"@+id/tv_drawcash_record"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_alignParentRight=
"true"
android:layout_marginTop=
"30pt"
android:background=
"@mipmap/ic_drawcash_record"
android:drawableLeft=
"@mipmap/ic_drawcash_recordleft"
android:drawablePadding=
"10pt"
android:gravity=
"center_vertical"
android:paddingLeft=
"16pt"
android:paddingTop=
"6pt"
android:paddingRight=
"10pt"
android:paddingBottom=
"6pt"
android:text=
"提现记录"
android:textColor=
"@color/white"
android:textSize=
"12sp"
/>
</RelativeLayout>
<TextView
<TextView
android:id=
"@+id/tv_drawcash_gold"
android:id=
"@+id/tv_drawcash_gold"
android:layout_width=
"wrap_content"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_gravity=
"center_horizontal
"
android:layout_marginLeft=
"10pt
"
android:layout_marginTop
=
"10pt"
android:layout_marginRight
=
"10pt"
android:text=
"0"
android:text=
"0"
android:textColor=
"@color/main_mints"
android:textColor=
"@color/main_mints"
android:textSize=
"26sp"
/>
android:textSize=
"26sp"
/>
...
@@ -72,97 +52,17 @@
...
@@ -72,97 +52,17 @@
android:id=
"@+id/tv_drawcash_aboutcash"
android:id=
"@+id/tv_drawcash_aboutcash"
android:layout_width=
"wrap_content"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_gravity=
"center_horizontal"
android:layout_marginTop=
"-16pt"
android:layout_marginTop=
"10pt"
android:background=
"@mipmap/ic_goldtry_about"
android:text=
"0.00"
android:paddingLeft=
"10pt"
android:textColor=
"@color/red"
android:paddingTop=
"6pt"
android:textSize=
"16sp"
/>
android:paddingRight=
"10pt"
android:paddingBottom=
"6pt"
<View
android:text=
"约0.00元"
android:layout_width=
"match_parent"
android:textColor=
"@color/white"
android:layout_height=
"10pt"
android:textSize=
"10sp"
/>
android:layout_marginTop=
"40pt"
android:layout_marginBottom=
"20pt"
android:background=
"@color/order_hint_color"
/>
<TextView
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_marginLeft=
"50pt"
android:text=
"提现方式"
android:textColor=
"@color/black"
android:textSize=
"14sp"
/>
<LinearLayout
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:layout_marginLeft=
"40pt"
android:layout_marginTop=
"20pt"
android:layout_marginRight=
"40pt"
android:orientation=
"horizontal"
>
<ImageView
android:id=
"@+id/iv_drawcash_weixin"
android:layout_width=
"0dp"
android:layout_height=
"136pt"
android:layout_weight=
"1"
android:scaleType=
"fitXY"
android:src=
"@mipmap/ic_drawcash_wx_enable"
/>
<ImageView
android:id=
"@+id/iv_drawcash_alipay"
android:layout_width=
"0dp"
android:layout_height=
"136pt"
android:layout_marginLeft=
"26pt"
android:layout_weight=
"1"
android:scaleType=
"fitXY"
android:src=
"@mipmap/ic_drawcash_alipay_none"
/>
</LinearLayout>
</LinearLayout>
<RelativeLayout
android:id=
"@+id/rl_drawcash_alipay"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:layout_marginLeft=
"22pt"
android:layout_marginTop=
"40pt"
>
<TextView
android:id=
"@+id/tv_drawcash_paytype"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_centerVertical=
"true"
android:drawableLeft=
"@mipmap/ic_weixin"
android:drawablePadding=
"10pt"
android:gravity=
"center_vertical"
android:paddingLeft=
"28pt"
android:paddingTop=
"10pt"
android:paddingBottom=
"10pt"
android:text=
"微信"
android:textColor=
"@color/graya"
android:textSize=
"14sp"
/>
<TextView
android:id=
"@+id/tv_drawcash_set"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_alignParentRight=
"true"
android:layout_centerVertical=
"true"
android:layout_marginRight=
"50pt"
android:drawableRight=
"@mipmap/ic_right_arrow"
android:drawablePadding=
"10pt"
android:gravity=
"center_vertical"
android:text=
"去授权"
android:textColor=
"@color/main_mints"
android:textSize=
"14sp"
/>
</RelativeLayout>
<View
android:layout_width=
"match_parent"
android:layout_height=
"10pt"
android:layout_marginTop=
"10pt"
android:layout_marginBottom=
"20pt"
android:background=
"@color/order_hint_color"
/>
<LinearLayout
<LinearLayout
android:layout_width=
"match_parent"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:layout_height=
"wrap_content"
...
@@ -208,14 +108,14 @@
...
@@ -208,14 +108,14 @@
</LinearLayout>
</LinearLayout>
<LinearLayout
<LinearLayout
android:visibility=
"gone"
android:id=
"@+id/ll_drawcash_top"
android:id=
"@+id/ll_drawcash_top"
android:layout_width=
"match_parent"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_marginLeft=
"60pt"
android:layout_marginLeft=
"60pt"
android:layout_marginTop=
"10pt"
android:layout_marginTop=
"10pt"
android:layout_marginRight=
"60pt"
android:layout_marginRight=
"60pt"
android:orientation=
"vertical"
>
android:orientation=
"vertical"
android:visibility=
"gone"
>
<TextView
<TextView
android:layout_width=
"wrap_content"
android:layout_width=
"wrap_content"
...
@@ -263,11 +163,67 @@
...
@@ -263,11 +163,67 @@
</LinearLayout>
</LinearLayout>
<View
android:layout_width=
"match_parent"
android:layout_height=
"10pt"
android:layout_marginTop=
"30pt"
android:background=
"@color/order_hint_color"
/>
<FrameLayout
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
>
<LinearLayout
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:orientation=
"vertical"
android:paddingTop=
"10pt"
android:paddingBottom=
"30pt"
>
<LinearLayout
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:layout_marginLeft=
"50pt"
android:layout_marginTop=
"10pt"
android:orientation=
"horizontal"
>
<TextView
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_centerHorizontal=
"true"
android:text=
"当前钻石"
android:textColor=
"@color/graya"
android:textSize=
"12sp"
/>
<TextView
android:id=
"@+id/tv_drawcash_diamond"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_marginLeft=
"10pt"
android:layout_marginRight=
"10pt"
android:text=
"0"
android:textColor=
"@color/main_mints"
android:textSize=
"26sp"
/>
<TextView
android:id=
"@+id/tv_drawcash_aboutcash_diamond"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_marginTop=
"-16pt"
android:background=
"@mipmap/ic_goldtry_about"
android:paddingLeft=
"10pt"
android:paddingTop=
"6pt"
android:paddingRight=
"10pt"
android:paddingBottom=
"6pt"
android:text=
"约0.00元"
android:textColor=
"@color/white"
android:textSize=
"10sp"
/>
</LinearLayout>
<LinearLayout
<LinearLayout
android:layout_width=
"match_parent"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_marginLeft=
"50pt"
android:layout_marginLeft=
"50pt"
android:layout_marginTop=
"20pt"
android:layout_marginRight=
"50pt"
android:layout_marginRight=
"50pt"
android:gravity=
"center_vertical"
android:gravity=
"center_vertical"
android:orientation=
"horizontal"
>
android:orientation=
"horizontal"
>
...
@@ -279,7 +235,7 @@
...
@@ -279,7 +235,7 @@
android:layout_weight=
"1"
android:layout_weight=
"1"
android:background=
"@drawable/rb_index_checked"
android:background=
"@drawable/rb_index_checked"
android:gravity=
"center"
android:gravity=
"center"
android:text=
"提现200
元"
android:text=
"提现1
元"
android:textColor=
"@drawable/rb_index_text_color"
android:textColor=
"@drawable/rb_index_text_color"
android:textSize=
"16sp"
/>
android:textSize=
"16sp"
/>
...
@@ -291,74 +247,138 @@
...
@@ -291,74 +247,138 @@
android:layout_weight=
"1"
android:layout_weight=
"1"
android:background=
"@drawable/rb_index_checked"
android:background=
"@drawable/rb_index_checked"
android:gravity=
"center"
android:gravity=
"center"
android:text=
"提现500
元"
android:text=
"提现2
元"
android:textColor=
"@drawable/rb_index_text_color"
android:textColor=
"@drawable/rb_index_text_color"
android:textSize=
"16sp"
/>
android:textSize=
"16sp"
/>
<Button
<Button
android:id=
"@+id/btn_drawcash_six"
android:layout_width=
"0dp"
android:layout_width=
"0dp"
android:layout_height=
"160pt"
android:layout_height=
"160pt"
android:layout_marginLeft=
"16pt"
android:layout_marginLeft=
"16pt"
android:layout_weight=
"1"
android:layout_weight=
"1"
android:visibility=
"invisible"
/>
android:background=
"@drawable/rb_index_checked"
android:gravity=
"center"
android:text=
"提现3元"
android:textColor=
"@drawable/rb_index_text_color"
android:textSize=
"16sp"
/>
</LinearLayout>
</LinearLayout>
</LinearLayout>
<LinearLayout
<LinearLayout
android:visibility=
"gone"
android:id=
"@+id/ll_drawcash_diamond"
android:id=
"@+id/ll_drawcash_bottom"
android:layout_width=
"match_parent"
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
android:background=
"#90000000"
android:gravity=
"center"
android:orientation=
"vertical"
android:visibility=
"gone"
>
<TextView
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_marginLeft=
"60pt"
android:drawableLeft=
"@mipmap/ic_drawcash_lock"
android:layout_marginTop=
"10pt"
android:drawablePadding=
"10pt"
android:layout_marginRight=
"60pt"
android:gravity=
"center_vertical"
android:orientation=
"vertical"
>
android:text=
"未激活"
android:textColor=
"@color/white"
android:textSize=
"20sp"
/>
<TextView
<TextView
android:id=
"@+id/tv_drawcash_diamond_hint"
android:layout_width=
"wrap_content"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_height=
"wrap_content"
android:text=
"提现说明"
android:layout_marginTop=
"16pt"
android:textColor=
"@color/black"
android:text=
"观看任意5个广告视频即可激活(0/5)"
android:textSize=
"14sp"
/>
android:textColor=
"@color/white"
android:textSize=
"12sp"
/>
</LinearLayout>
</FrameLayout>
<View
android:layout_width=
"match_parent"
android:layout_height=
"10pt"
android:layout_marginBottom=
"20pt"
android:background=
"@color/order_hint_color"
/>
<TextView
<TextView
android:id=
"@+id/tv_drawcash_hint_bottom"
android:layout_width=
"wrap_content"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_marginLeft=
"50pt"
android:text=
"提现方式"
android:textColor=
"@color/black"
android:textSize=
"14sp"
/>
<LinearLayout
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:layout_marginLeft=
"40pt"
android:layout_marginTop=
"20pt"
android:layout_marginTop=
"20pt"
android:text=
"每新邀请X位有效好友即可提现,提现成功立返8x金币"
android:layout_marginRight=
"40pt"
android:textColor=
"@color/graya"
android:orientation=
"horizontal"
>
android:textSize=
"12sp"
/>
<ImageView
android:id=
"@+id/iv_drawcash_weixin"
android:layout_width=
"0dp"
android:layout_height=
"136pt"
android:layout_weight=
"1"
android:scaleType=
"fitXY"
android:src=
"@mipmap/ic_drawcash_wx_enable"
/>
<ImageView
android:id=
"@+id/iv_drawcash_alipay"
android:layout_width=
"0dp"
android:layout_height=
"136pt"
android:layout_marginLeft=
"26pt"
android:layout_weight=
"1"
android:scaleType=
"fitXY"
android:src=
"@mipmap/ic_drawcash_alipay_none"
/>
</LinearLayout>
<RelativeLayout
<RelativeLayout
android:id=
"@+id/rl_drawcash_alipay"
android:layout_width=
"match_parent"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_marginTop=
"20pt"
>
android:layout_marginLeft=
"22pt"
android:layout_marginTop=
"30pt"
>
<TextView
<TextView
android:id=
"@+id/tv_drawcash_friends_bottom
"
android:id=
"@+id/tv_drawcash_paytype
"
android:layout_width=
"wrap_content"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_centerVertical=
"true"
android:layout_centerVertical=
"true"
android:text=
"可用有效好友数"
android:drawableLeft=
"@mipmap/ic_weixin"
android:textColor=
"@color/main_mints"
android:drawablePadding=
"10pt"
android:gravity=
"center_vertical"
android:paddingLeft=
"28pt"
android:paddingTop=
"10pt"
android:paddingBottom=
"10pt"
android:text=
"微信"
android:textColor=
"@color/graya"
android:textSize=
"14sp"
/>
android:textSize=
"14sp"
/>
<TextView
<TextView
android:id=
"@+id/tv_drawcash_friendsnext_bottom
"
android:id=
"@+id/tv_drawcash_set
"
android:layout_width=
"150p
t"
android:layout_width=
"wrap_conten
t"
android:layout_height=
"60p
t"
android:layout_height=
"wrap_conten
t"
android:layout_alignParentRight=
"true"
android:layout_alignParentRight=
"true"
android:layout_centerVertical=
"true"
android:layout_centerVertical=
"true"
android:background=
"@drawable/shape_tv_gold"
android:layout_marginRight=
"50pt"
android:gravity=
"center"
android:drawableRight=
"@mipmap/ic_right_arrow"
android:text=
"邀请好友"
android:drawablePadding=
"10pt"
android:textColor=
"@color/white"
android:gravity=
"center_vertical"
android:textSize=
"10sp"
/>
android:text=
"去授权"
android:textColor=
"@color/main_mints"
android:textSize=
"14sp"
/>
</RelativeLayout>
</RelativeLayout>
</LinearLayout>
<View
android:layout_width=
"match_parent"
android:layout_height=
"10pt"
android:layout_marginTop=
"10pt"
android:layout_marginBottom=
"20pt"
android:background=
"@color/order_hint_color"
/>
<TextView
<TextView
...
...
highgold/app/src/main/res/layout/item_fragment_versus_taskday.xml
View file @
e01ee605
...
@@ -817,7 +817,7 @@
...
@@ -817,7 +817,7 @@
android:layout_centerVertical=
"true"
android:layout_centerVertical=
"true"
android:layout_marginLeft=
"10pt"
android:layout_marginLeft=
"10pt"
android:layout_toRightOf=
"@+id/tv_versus_exchange_title"
android:layout_toRightOf=
"@+id/tv_versus_exchange_title"
android:drawableLeft=
"@mipmap/ic_
gol
d"
android:drawableLeft=
"@mipmap/ic_
diamon
d"
android:drawablePadding=
"2pt"
android:drawablePadding=
"2pt"
android:gravity=
"center_vertical"
android:gravity=
"center_vertical"
android:textColor=
"@color/main_mints"
android:textColor=
"@color/main_mints"
...
@@ -898,7 +898,7 @@
...
@@ -898,7 +898,7 @@
android:layout_centerVertical=
"true"
android:layout_centerVertical=
"true"
android:layout_marginLeft=
"10pt"
android:layout_marginLeft=
"10pt"
android:layout_toRightOf=
"@+id/tv_versus_ywhz_title"
android:layout_toRightOf=
"@+id/tv_versus_ywhz_title"
android:drawableLeft=
"@mipmap/ic_
gol
d"
android:drawableLeft=
"@mipmap/ic_
diamon
d"
android:drawablePadding=
"2pt"
android:drawablePadding=
"2pt"
android:gravity=
"center_vertical"
android:gravity=
"center_vertical"
android:text=
"+10w"
android:text=
"+10w"
...
...
highgold/app/src/main/res/layout/item_list_goldrecord.xml
View file @
e01ee605
...
@@ -58,6 +58,7 @@
...
@@ -58,6 +58,7 @@
android:textSize=
"14sp"
/>
android:textSize=
"14sp"
/>
<TextView
<TextView
android:id=
"@+id/tv_goldrecord_cash_type"
android:layout_width=
"wrap_content"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_height=
"wrap_content"
android:text=
"金币"
android:text=
"金币"
...
...
highgold/app/src/main/res/mipmap-xhdpi/ic_diamond.png
0 → 100644
View file @
e01ee605
1.6 KB
highgold/app/src/main/res/mipmap-xhdpi/ic_drawcash_lock.png
0 → 100644
View file @
e01ee605
1.21 KB
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment