2017-01-14 93 views
3

我拖動了一個ImageView佈局,我選擇了圖片。但是當我執行應用程序時,它不會出現。我能做些什麼來解決這個問題?ImageView不會出現

enter image description here

ImageView的XML代碼;

<ImageView 
    android:layout_width="250dp" 
    android:layout_height="250dp" 
    app:srcCompat="@mipmap/idlepoor_moneys" 
    android:id="@+id/imageView4" 
    android:layout_alignParentTop="true" 
    android:layout_centerHorizontal="true" /> 
+2

** android:src **將drawable設置爲您的ImageView **應用程序的內容:srcCompat **用於將矢量繪圖集成到您的應用中。Vector drawables允許您用單個矢量替換多個png資源圖形,在XML中定義。如果您使用該功能,則需要將...... ** vectorDrawables.useSupportLibrary = true **添加到您的build.gradle文件中。因此,根據您的要求選擇合適的一個..如果您只需要設置一個可繪製的內容使用** android:src ** –

回答

3

在圖像視圖添加該物業

android:src="@mipmap/idlepoor_moneys" 

從您的代碼

app:srcCompat="@mipmap/idlepoor_moneys" 
1

刪除以下行作爲媒體鏈接上述變更

app:srcCompat="@mipmap/idlepoor_moneys" 

android:src="@mipmap/idlepoor_moneys" 

另外我建議把你的圖片放在@drawable文件夾中。 mipmap是製作應用時應用圖標的存儲位置。

app:src="@drawable/idlepoor_moneys" 

您可以輕鬆地從您的項目地圖中找到繪圖。如果找不到它,您可以隨時右鍵單擊該文件夾以獲取路徑。