我对Android开发还很新。我正在为这个应用程序使用Android Studio,当我开始一个全新的应用程序时,当我添加一个图像时,无论是jog还是png,当我编译和测试它时,图像会在设备上显示为黑色。是否有一个原因?我不认为我需要分享我的代码,就像我说的那样,我正在开始一个全新的项目。
这是我的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);
}
}
其他一切都很正常......没有其他编辑。
答案 0 :(得分:1)
在android studio中有mipmap文件夹,我们通常将图像放在这些文件夹中,在xml中我们将图像src
指定为@mipmap/splash2
,并确保另一个视图不会出现在图像上查看