如何讓我的背景圖像填滿整個屏幕?我嘗試了幾個不同的建議,似乎沒有任何工作。我的應用背景不會填滿屏幕
下面是我activity_main.xml中的代碼:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout 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"
tools:context="com.andrewvanpeter.upandaway.MainActivity">
<ImageView
android:id="@+id/imageView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:srcCompat="@drawable/background_flat_720x1280" />
</android.support.constraint.ConstraintLayout>
match_parent解決方案無法正常工作;也許我在做別的事情。但是,直接設置背景確實奏效。非常感謝你! – CheetahBongos
沒問題,很高興!也許你在某處有填充或邊距...或者你必須適合ImageView。 –