Commit 69243d80 authored by jyx's avatar jyx

代码优化

parent 6b13aeb9
...@@ -372,14 +372,8 @@ class MusicFragment : LazyLoadBaseFragment(), MusicView, View.OnClickListener { ...@@ -372,14 +372,8 @@ class MusicFragment : LazyLoadBaseFragment(), MusicView, View.OnClickListener {
"answer -> " + answer + "nextIsAd -> " + mMusicBean?.nextIsAd "answer -> " + answer + "nextIsAd -> " + mMusicBean?.nextIsAd
) )
finger.setImageDrawable(null) finger.pauseAnimation()
finger.visibility = View.GONE
mainHandler.postDelayed({
if (!isAdded) return@postDelayed
// 点击过后不展示
if (!rlOption0.isClickable || !rlOption1.isClickable) return@postDelayed
val ls = finger.layoutParams as RelativeLayout.LayoutParams val ls = finger.layoutParams as RelativeLayout.LayoutParams
val ls2 = quizLLPop.layoutParams as RelativeLayout.LayoutParams val ls2 = quizLLPop.layoutParams as RelativeLayout.LayoutParams
if (answer == 0) { if (answer == 0) {
...@@ -389,14 +383,16 @@ class MusicFragment : LazyLoadBaseFragment(), MusicView, View.OnClickListener { ...@@ -389,14 +383,16 @@ class MusicFragment : LazyLoadBaseFragment(), MusicView, View.OnClickListener {
ls.addRule(RelativeLayout.ALIGN_TOP, R.id.rl_option1) ls.addRule(RelativeLayout.ALIGN_TOP, R.id.rl_option1)
ls2.addRule(RelativeLayout.ALIGN_TOP, R.id.rl_option1) ls2.addRule(RelativeLayout.ALIGN_TOP, R.id.rl_option1)
} }
mainHandler.postDelayed({
if (!isAdded) return@postDelayed
// 点击过后不展示
if (!rlOption0.isClickable || !rlOption1.isClickable) return@postDelayed
playFingerAnim(finger) playFingerAnim(finger)
}, 5000) }, 5000)
// 重置状态
// finger.visibility = View.GONE
// quizLLPop.visibility = View.GONE
// quizTvPop.visibility = View.GONE
for (i in optionsList.indices) { for (i in optionsList.indices) {
val right = answer == i val right = answer == i
quizIvRedbox0.visibility = View.GONE quizIvRedbox0.visibility = View.GONE
......
...@@ -44,7 +44,10 @@ ...@@ -44,7 +44,10 @@
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_centerInParent="true" android:layout_centerInParent="true"
android:ellipsize="end"
android:maxWidth="180dp"
android:paddingBottom="5dp" android:paddingBottom="5dp"
android:singleLine="true"
android:textColor="@color/color_3F2F8F" android:textColor="@color/color_3F2F8F"
android:textSize="16sp" android:textSize="16sp"
android:textStyle="bold" android:textStyle="bold"
...@@ -88,7 +91,10 @@ ...@@ -88,7 +91,10 @@
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_centerInParent="true" android:layout_centerInParent="true"
android:ellipsize="end"
android:maxWidth="180dp"
android:paddingBottom="5dp" android:paddingBottom="5dp"
android:singleLine="true"
android:textColor="@color/color_3F2F8F" android:textColor="@color/color_3F2F8F"
android:textSize="16sp" android:textSize="16sp"
android:textStyle="bold" android:textStyle="bold"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment