View - ImageButton, ImageView
웹 & 안드로이드/Android2013. 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" /> |
'웹 & 안드로이드 > Android' 카테고리의 다른 글
안드로이드 - 진동 제어하기 (0) | 2013.10.07 |
---|---|
안드로이드 - 사운드 재생하기. (0) | 2013.10.07 |
View - Switch, RadioGroup(RadioButton) (0) | 2013.10.07 |
View - TextView, Button,ToggleButton (0) | 2013.10.04 |
android.widget.TextView xml 속성 목록 (1) | 2013.10.02 |
댓글()