我想在启动画面上以完整尺寸显示我的动画gif图像,但它不起作用。我还使用了 <h1 class="text-center"> Heading 1 </h1>
<h1 class="text-left"> Heading 2 </h1>
<h1 class="text-right"> Heading 3 </h1>
。问题出在这里?我的xml文件是:
match parent
这就是它的样子:
Java代码:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_splashscreen"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.foodie.splash.splashscreen">
<com.felipecsl.gifimageview.library.GifImageView
android:id="@+id/gifImageView"
android:scaleType="fitCenter"
android:layout_width="match_parent"
android:layout_marginRight="0dp"
android:layout_marginLeft="0dp"
android:layout_height="match_parent" />
</RelativeLayout>
答案 0 :(得分:1)
您选择了错误的比例类型,将scaleType设置为FitXY而不是适合中心 但当然它会导致改变尺度,找出它是否具有像centerCrop尺度的东西。
<com.felipecsl.gifimageview.library.GifImageView
android:id="@+id/gifImageView"
android:scaleType="fitXY"
android:layout_width="match_parent"
android:layout_height="match_parent" />