-3

Tried to display simple imageon phone. And i get error.

Here is the xml code for imageview

<ImageView
    android:layout_width="400px"
    android:layout_height="400px"
    android:id="@+id/imageView"
    android:layout_alignParentTop="true"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="172dp"
    android:src="@drawable/img1"
    android:background="#ffffff" />

My pic is in drawable folder. I saw few posts about same problem but couldnt solve it. Tried t reduce width and height from wrap contect to 400px and tried to put white background but i still get the same error. When i try to open application with emulator or my phone i get his error message: Unfortunately, DajanaGallery has stopped.

Amit Vaghela
  • 22,772
  • 22
  • 86
  • 142
Miljan Rakita
  • 1,433
  • 4
  • 23
  • 44

1 Answers1

0
<ImageView
    android:layout_width="400dp"
    android:layout_height="400dp"
    android:id="@+id/imageView"
    android:layout_alignParentTop="true"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="172dp"
    android:background="@drawable/img1"/>
W4R10CK
  • 5,502
  • 2
  • 19
  • 30