我對Android開發還是比較新的。我爲這款應用程序使用Android Studio,當我開始一個全新的應用程序,並且當我在jog或png中添加圖像時,圖像在編譯和測試時會在設備上顯示爲黑色。是否有一個原因?我認爲我不需要像我說的那樣分享我的代碼,我正在開始一個全新的項目。圖片在設備上顯示爲黑色>圖片查看Android
這是我的XML文件。
main_activity.xml
<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" android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin" tools:context=".MainActivity">
<TextView android:text="@string/hello_world" android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/splash2"/>
</RelativeLayout>
MainActivity.java
import android.app.Activity;
import android.os.Bundle;
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
}
一切是非常正常的...沒有其他的編輯。
你在哪裏的頂部來臨添加該圖像給代碼 –
你可以發佈你的完整的XML代碼? – androholic