飞溅屏幕在Nexus 4中伸展

时间:2013-12-10 11:18:34

标签: android screen splash nexus-4

我粘贴了下面的代码:问题是图像正在拉伸......

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".SplashScreen"
    android:background="@color/black" >

    <ImageView
        android:layout_width="fill_parent"
        android:layout_height="match_parent"
        android:src="@drawable/splashscreen"/>

</RelativeLayout>

2 个答案:

答案 0 :(得分:0)

使用wrap_content而不是match_parent:

<ImageView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/splashscreen"/>

答案 1 :(得分:0)

你应该使用9页图像。您可以从9-path generator.生成9补丁图片。

之后修改你的imageView就像

一样
<ImageView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:scaleType="fitCenter"
        android:src="@drawable/splashscreen"/>