我目前正在玩AirBnB的Lottie library for Android,我遇到了LottieAnimationView
Z订购的问题。无论我是否将LottieAnimationView置于RelativeLayout
的顶部,它始终显示在布局ex中的所有其他元素之上:
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="@dimen/spacing_lrg"
tools:context="com.myapp.SplashActivity">
<com.airbnb.lottie.LottieAnimationView
android:id="@+id/animation_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:lottie_fileName="test.json"/>
<! -- Other Elements that should appear on top of the background animation -->
</RelativeLayout>
我也尝试将LottieAnimationView
的高程设置为0,但没有成功解决问题。有没有人知道如何解决这个问题,或者它只是图书馆的限制?此外,如果这是一个限制,是什么导致它?
答案 0 :(得分:1)
我无法以任何布局(包括RelativeLayout)重现您所指的问题。也许升级到最新版本可以解决此问题。最新版本是3.4.1:implementation 'com.airbnb.android:lottie:3.4.1'
。如果您已经在使用最新版本,请分享您的完整代码,以便我们进行进一步调查。
答案 1 :(得分:0)
很奇怪。 我建议将完整的布局包装在框架布局中,并将Lottie作为其第一个孩子,然后将其放置在小部件树的其余部分。我没有尝试过,但是应该可以。
或者,您是否尝试过使用海拔高度?
答案 2 :(得分:0)
我建议您使用约束布局,我只是这样尝试过:
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto">
<com.airbnb.lottie.LottieAnimationView
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
android:id="@+id/animationLoading"
android:layout_width="200dp"
android:layout_height="200dp"
app:lottie_rawRes="@raw/thermosun"
app:lottie_loop="true"
app:lottie_autoPlay="true"/>
<Button
android:layout_width="0dp"
android:layout_height="wrap_content"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
android:layout_margin="@dimen/app_default_margin_16dp"
android:text="My button"/>
</androidx.constraintlayout.widget.ConstraintLayout>
让我知道它是否有效! :)
-----编辑---- CustomTextView类
class CustomTextView : AppCompatTextView {
constructor(context: Context) : super(context) {
init(context)
}
constructor(context: Context, attrs: AttributeSet) : super(context, attrs) {
init(context, attrs)
}
constructor(context: Context, attrs: AttributeSet, defStyle: Int) : super(
context,
attrs,
defStyle
) {
init(context, attrs)
}
private fun init(context: Context, attrs: AttributeSet? = null) {
if (!isInEditMode) {
@Suppress("Recycle")
context.obtainStyledAttributes(attrs, R.styleable.AppCompatTextView).use {
setUpCharacterSpacing(
it.getFloat(R.styleable.CustomTextView_characterSpacing, 0.0f)
)
setUpLineSpacing(
it.getDimension(R.styleable.CustomTextView_lineSpacing, 0f)
)
}
paintFlags = paintFlags or Paint.SUBPIXEL_TEXT_FLAG
}
}
private fun setUpLineSpacing(lineSpacing: Float) {
if (lineSpacing != 0f) {
setLineSpacing(lineSpacing - textSize, 1f)
}
}
}
带有Constraintlayout的XML和项目的CustomTextView
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto">
<ImageView
android:id="@+id/closeIcon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
android:src="@drawable/ic_go_to_location"
android:layout_margin="@dimen/dimen_16dp"/>
<com.airbnb.lottie.LottieAnimationView
app:layout_constraintTop_toBottomOf="@id/closeIcon"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
android:id="@+id/animationLoading"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintDimensionRatio="750:1080"
app:lottie_rawRes="@raw/thermosun"
app:lottie_loop="true"
app:lottie_autoPlay="true"/>
<com.shadows.howhotismycity.utils.CustomTextView
android:id="@+id/tvUserCounter"
android:layout_width="@dimen/dimen_30dp"
android:layout_height="wrap_content"
android:text="10"
android:textColor="@android:color/black"
android:textSize="24sp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toBottomOf="@id/closeIcon"/>
<com.shadows.howhotismycity.utils.CustomTextView
android:id="@+id/tvSampleText"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="Theres some text here"
android:textColor="@android:color/black"
android:textSize="24sp"
android:gravity="center"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvUserCounter"
app:layout_constraintBottom_toBottomOf="parent"
android:layout_margin="@dimen/dimen_16dp"/>
</androidx.constraintlayout.widget.ConstraintLayout>
图书馆依赖性
//lottie
implementation 'com.airbnb.android:lottie:3.4.0'
在Android 10中测试的动画上方的textview结果
答案 3 :(得分:-1)
尝试按代码加载lottie fileName。我用xml
加载文件时遇到了一些问题您可以将一个线性用于其他视图并调用linearlayout.bringToFront()