我已经在android studio中制作了我的第一个hello world程序,当我第一次启动时(没有任何图像),它正在工作。但是,当我使用imageview放置照片时,当我创建apk时,它不会说该应用程序已停止工作。 以下是代码:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.himan.helloworld1.MainActivity">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello Himan"
/>
<TextView
android:layout_width="50dp"
android:layout_height="50dp"
android:text="From Rakesh"
/>
<ImageView
android:src="@drawable/happy_birthday"
android:layout_width="500dp"
android:layout_height="500dp" />
</RelativeLayout>