图像无法在android中的启动画面上正确显示

时间:2016-12-16 16:36:18

标签: android android-layout splash-screen

我正在为我的应用设计启动画面,而我正在使用的图像无法正常显示。我附上我正在使用的图片以及它如何与启动画面的.xml文件的代码一起显示。

<?xml version="1.0" encoding="utf-8"?>

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#00abd4" >

<ImageView
    android:id="@+id/imgLogo"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerInParent="true"
    android:src="@drawable/logo1" />

Picture I am using

How it's getting displayed

1 个答案:

答案 0 :(得分:0)

<?xml version="1.0" encoding="utf-8"?>

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#00abd4" >

<ImageView
    android:id="@+id/imgLogo"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_centerInParent="true"
    android:src="@drawable/logo1" />