기본적으로 ImageView사용하여 xml작성하였을경우
<ImageView android:id="@+id/imageView1" android:layout_width="fill_parent" android:layout_height="fill_parent" android:src="@drawable/img_jasontody" />
타이틀 말고 이미지 꽉 채우기
<ImageView android:id="@+id/imageView1" android:layout_width="fill_parent" android:layout_height="fill_parent" android:src="@drawable/img_jasontody" android:scaleType="fitXY" />
타이틀까지 채우기
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE); setContentView(R.layout.main_imagexml);
'공부 > Android' 카테고리의 다른 글
안드로이드와 php, mysql 연동하기 1 (0) | 2013.01.20 |
---|---|
안드로이드 웹뷰를 통해 외부어플로 공유하기 (카카오톡 공유, 내보내기) (1) | 2012.11.17 |
Gridview 썸네일 이미지 클릭시 확대하기 (0) | 2012.08.23 |
그리드뷰 GridView Xml (0) | 2012.08.23 |
일정시간 후 액티비티 자동으로 넘겨주기 (0) | 2012.08.22 |