2017-02-08 75 views
0

此活動根本不打開我的圖像,但文字仍然打開。我嘗試了.png和.jpg。我也試過@撤消仍然沒有結果。當我運行Android Studios時,沒有任何圖像顯示。

Java代碼

@Override 
public void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.activity_images); 
} 

XML腳本

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
xmlns:app="http://schemas.android.com/apk/res-auto" 
android:layout_width="match_parent" android:layout_height="match_parent"> 


<TextView 
    android:text="JUST WORK!!!" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:id="@+id/textView" 
    android:textAppearance="@style/TextAppearance.AppCompat.Display2" 
    android:layout_alignParentBottom="true" 
    android:layout_alignParentEnd="true" 
    android:layout_marginEnd="58dp" 
    android:layout_marginBottom="177dp" /> 

<ImageView 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    app:srcCompat="@mipmap/ic_launcher" 
    android:layout_above="@+id/textView" 
    android:layout_centerHorizontal="true" 
    android:layout_marginBottom="120dp" 
    android:id="@+id/imageView2" /> 
</RelativeLayout> 

預先感謝您

+1

使用可以使用android:src =「@ drawable/yourimage」 –

+1

記住取下你唯一有用的問題嗎? – Chisko

回答

0

你的代碼看起來還好。

嘗試在您的可繪製文件夾中添加您的圖像。

並添加,

機器人:SRC = 「@繪製/ yourimage」

在您的ImageView XML組件

相關問題