View - ImageButton, ImageView

웹 & 안드로이드/Android|2013. 10. 7. 12:25

-ImageView과 TextView은 거의 비슷하나 다른점은 이미지 대신 텍스트를 넣을 수 있는가 아닌가의 차이이다.
*ImageView는 그림만 들어간다.
*TextView은 텍스트와 그림이 들어갈 수 있다.
- Button도 이와 같다.

1
2
3
4
5
6
7
8
9
10
11
<ImageView
        android:id="@+id/imageView1"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:src="@drawable/image1" />
        
<ImageButton
        android:id="@+id/imageButton1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/b1" />


댓글()