图像未显示在Android Studio模拟器上

时间:2018-07-07 00:49:46

标签: android-studio

我正在运行Android Studio 3.0.2。运行我的应用程序时,我无法让模拟器显示任何图像或按钮。

我在activity_main.xml中的代码:

 <?xml version="1.0" encoding="utf-8"?>
 <android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:android="http://schemas.android.com/apk/res/android"

xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="bottom"
android:layout_weight="10"
android:orientation="horizontal" >

<ImageView
    android:id="@+id/where_to"
    android:layout_width="700dp"
    android:layout_height="400dp"
    android:src="@drawable/whereto"
    android:visibility="invisible"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintHorizontal_bias="0.467"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent" />

<ImageView
    android:id="@+id/my_image"
    android:layout_width="700dp"
    android:layout_height="400dp"
    android:src="@drawable/myimage"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent" />

<Button
    android:id="@+id/clickheretocontinuebutton"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_marginBottom="8dp"
    android:layout_marginEnd="8dp"
    android:layout_marginLeft="8dp"
    android:layout_marginRight="8dp"
    android:layout_marginStart="8dp"
    android:layout_marginTop="8dp"
    android:background="@color/colorPrimaryDark"
    android:onClick="onClick"
    android:text=" CLICK HERE TO CONTINUE "
    android:textColor="#FFFFFF"
    android:visibility="visible"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintHorizontal_bias="0.0"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent"
    app:layout_constraintVertical_bias="0.987" />

    </android.support.constraint.ConstraintLayout>

运行我的应用程序时未显示“ my_image”。

我是否需要通过@mipmap而不是通过@drawable?如果是,如何将各种“ __dpi”图像放入其各自的文件夹中?如果没有,我很茫然。

感谢您的帮助。

-A

0 个答案:

没有答案