Compare commits
No commits in common. "615784f8fb0411478d43b83657d1d5f928dc1ff6" and "1424f7225625deddd339330116f734cb786f6aaa" have entirely different histories.
615784f8fb
...
1424f72256
|
|
@ -2,6 +2,8 @@ package com.gamedog.vididin.main.fragments.home.fragment
|
||||||
|
|
||||||
|
|
||||||
import android.os.Bundle
|
import android.os.Bundle
|
||||||
|
import android.text.method.MovementMethod
|
||||||
|
import android.text.method.ScrollingMovementMethod
|
||||||
import android.view.LayoutInflater
|
import android.view.LayoutInflater
|
||||||
import android.view.View
|
import android.view.View
|
||||||
import android.view.ViewGroup
|
import android.view.ViewGroup
|
||||||
|
|
@ -276,7 +278,7 @@ class HomeItemFragment : AppViewsEmptyViewModelFragment<ViewBinding>() {
|
||||||
with (binding?.playIcon!!) {
|
with (binding?.playIcon!!) {
|
||||||
val animationSet = AnimationSet(true)
|
val animationSet = AnimationSet(true)
|
||||||
animationSet.duration = 250
|
animationSet.duration = 250
|
||||||
val alphaAnimation = AlphaAnimation(0.6f, 0.3f)
|
val alphaAnimation = AlphaAnimation(1.0f, 0.5f)
|
||||||
val scaleAnimation = ScaleAnimation(
|
val scaleAnimation = ScaleAnimation(
|
||||||
1.0f, 0.5f,
|
1.0f, 0.5f,
|
||||||
1.0f, 0.5f,
|
1.0f, 0.5f,
|
||||||
|
|
@ -308,7 +310,7 @@ class HomeItemFragment : AppViewsEmptyViewModelFragment<ViewBinding>() {
|
||||||
|
|
||||||
val animationSet = AnimationSet(true)
|
val animationSet = AnimationSet(true)
|
||||||
animationSet.duration = 250
|
animationSet.duration = 250
|
||||||
val alphaAnimation = AlphaAnimation(0.3f, 0.6f)
|
val alphaAnimation = AlphaAnimation(0.5f, 1.0f)
|
||||||
val scaleAnimation = ScaleAnimation(
|
val scaleAnimation = ScaleAnimation(
|
||||||
0.5f, 1.0f,
|
0.5f, 1.0f,
|
||||||
0.5f, 1.0f,
|
0.5f, 1.0f,
|
||||||
|
|
|
||||||
|
|
@ -19,13 +19,6 @@
|
||||||
app:layout_constraintBottom_toTopOf="@id/magic_indicator"
|
app:layout_constraintBottom_toTopOf="@id/magic_indicator"
|
||||||
app:layout_constraintTop_toTopOf="parent" />
|
app:layout_constraintTop_toTopOf="parent" />
|
||||||
|
|
||||||
<androidx.constraintlayout.widget.Barrier
|
|
||||||
android:id="@+id/barrier_bottom"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
app:barrierDirection="top"
|
|
||||||
app:constraint_referenced_ids="magic_indicator" />
|
|
||||||
|
|
||||||
<net.lucode.hackware.magicindicator.MagicIndicator
|
<net.lucode.hackware.magicindicator.MagicIndicator
|
||||||
android:id="@+id/magic_indicator"
|
android:id="@+id/magic_indicator"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
|
|
@ -33,6 +26,4 @@
|
||||||
android:paddingTop="30dp"
|
android:paddingTop="30dp"
|
||||||
app:layout_constraintBottom_toBottomOf="parent" />
|
app:layout_constraintBottom_toBottomOf="parent" />
|
||||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||||
</FrameLayout>
|
</FrameLayout>
|
||||||
|
|
||||||
|
|
||||||
Loading…
Reference in New Issue