我运行Android Studios时没有显示任何图像。

时间:2017-02-08 14:47:19

标签: java xml android-studio

此活动根本不会打开我的图片,但文字仍会打开。我试过.png和.jpg。我也试过@drawable仍然没有结果。

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 个答案:

答案 0 :(得分:0)

您的代码看起来没问题。

尝试在可绘制文件夹中添加图片。

并添加,

机器人:SRC =&#34; @可绘制/ yourimage&#34;

在您的ImageView XML组件中。