Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
android_vedio
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_vedio
Commits
bdec002b
Commit
bdec002b
authored
Jun 07, 2024
by
mengcuiguang2
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
代码优化
parent
84eaacd0
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
9 deletions
+18
-9
build.gradle
video/app/build.gradle
+2
-2
VipAdapter.kt
...ain/java/com/duben/happyplayletd/ui/adapter/VipAdapter.kt
+14
-5
PayYesDialog.kt
...n/java/com/duben/happyplayletd/ui/widgets/PayYesDialog.kt
+2
-2
No files found.
video/app/build.gradle
View file @
bdec002b
...
@@ -10,8 +10,8 @@ android {
...
@@ -10,8 +10,8 @@ android {
applicationId
"com.duben.happyplayletd"
applicationId
"com.duben.happyplayletd"
minSdkVersion
rootProject
.
ext
.
androidMinSdkVersion
minSdkVersion
rootProject
.
ext
.
androidMinSdkVersion
targetSdkVersion
rootProject
.
ext
.
androidTargetSdkVersion
targetSdkVersion
rootProject
.
ext
.
androidTargetSdkVersion
versionCode
7
01
versionCode
7
10
versionName
"7.
0.1
"
versionName
"7.
1.0
"
flavorDimensions
"default"
flavorDimensions
"default"
// dex突破65535的限制
// dex突破65535的限制
...
...
video/app/src/main/java/com/duben/happyplayletd/ui/adapter/VipAdapter.kt
View file @
bdec002b
...
@@ -111,11 +111,20 @@ class VipAdapter(val vipList: MutableList<VipBean.ListBean>) :
...
@@ -111,11 +111,20 @@ class VipAdapter(val vipList: MutableList<VipBean.ListBean>) :
// holder.tvVipItemCurMoney.text = "¥${vipBean.price}"
// holder.tvVipItemCurMoney.text = "¥${vipBean.price}"
//// holder.tvVipItemCurMoney.text = "¥${String.format("%.0f", vipBean.price)}"
//// holder.tvVipItemCurMoney.text = "¥${String.format("%.0f", vipBean.price)}"
// }
// }
holder
.
tvVipItemCurMoney
.
text
=
SpanUtils
()
if
(
vipBean
.
price
==
0.0
){
.
append
(
vipBean
.
price
.
toString
())
holder
.
tvVipItemCurMoney
.
text
=
SpanUtils
()
.
setFontSize
(
BubbleUtils
.
sp2px
(
34
))
.
append
(
"0.01"
)
.
append
(
"元"
)
.
setFontSize
(
BubbleUtils
.
sp2px
(
34
))
.
create
()
.
append
(
"元"
)
.
create
()
}
else
{
holder
.
tvVipItemCurMoney
.
text
=
SpanUtils
()
.
append
(
vipBean
.
price
.
toString
())
.
setFontSize
(
BubbleUtils
.
sp2px
(
34
))
.
append
(
"元"
)
.
create
()
}
// if (vipBean.oldPrice > 0) {
// if (vipBean.oldPrice > 0) {
// holder.tvVipItemMoney.visibility = View.VISIBLE
// holder.tvVipItemMoney.visibility = View.VISIBLE
// holder.tvVipItemMoney.getPaint().setFlags(Paint.STRIKE_THRU_TEXT_FLAG) //中间横线(删除线)
// holder.tvVipItemMoney.getPaint().setFlags(Paint.STRIKE_THRU_TEXT_FLAG) //中间横线(删除线)
...
...
video/app/src/main/java/com/duben/happyplayletd/ui/widgets/PayYesDialog.kt
View file @
bdec002b
...
@@ -55,10 +55,10 @@ class PayYesDialog(
...
@@ -55,10 +55,10 @@ class PayYesDialog(
iv_dialog_vip_quit
.
setOnClickListener
(
listener
)
iv_dialog_vip_quit
.
setOnClickListener
(
listener
)
tv_dialog_vip_next
.
setOnClickListener
(
listener
)
tv_dialog_vip_next
.
setOnClickListener
(
listener
)
if
(
vipBean
.
trial
==
0
)
{
if
(
vipBean
.
price
==
0.
0
)
{
//0-没签约 无0.01
//0-没签约 无0.01
tv_dialog_vip_count
.
text
=
SpanUtils
()
tv_dialog_vip_count
.
text
=
SpanUtils
()
.
append
(
"
"
+
vipBean
.
price
)
.
append
(
"
0.01"
)
.
setFontSize
(
30
,
true
)
.
setFontSize
(
30
,
true
)
.
append
(
" 元"
)
.
append
(
" 元"
)
.
setFontSize
(
16
,
true
)
.
setFontSize
(
16
,
true
)
...
...
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