我的Android应用程序上有一个启动画面,它由png图像填充。但是png图像没有填满整个屏幕,两侧都有空格。
我正在观看和AVD。
这是我看到的:
这是我的XML代码:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ImageView
android:src="@drawable/splash"
android:layout_width="fill_parent"
android:layout_height="fill_parent"></ImageView>
</LinearLayout>
以下是我的Android Manifest代码的摘录:
<uses-sdk
android:minSdkVersion="5"
android:targetSdkVersion="17" />
<supports-screens
android:resizeable="true"
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:anyDensity="true" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.shaadcorp.wazaifapp.MainMenu"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="ButtonMenu"
android:label="@string/app_name" >
<intent-filter>
<action android:name="com.shaadcorp.wazaifapp.CLEARSCREEN" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name="wazeefa"
android:label="@string/app_name" >
<intent-filter>
<action android:name="com.shaadcorp.wazaifapp.WAZEEFA" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name="durood"
android:label="@string/app_name" >
<intent-filter>
<action android:name="com.shaadcorp.wazaifapp.DUROOD" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
</application>
</manifest>
请帮忙吗?我试图增加png本身的角度,但这没有区别。
答案 0 :(得分:2)
您需要将android:scaleType
属性添加到ImageView
。可能centerCrop
就是你想要的。
<ImageView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scaleType="centerCrop"
android:src="@drawable/splash" />