- Today
- Total
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Link
- 재능이의 돈버는 일기
- StresslessLife
- K_JIN2SM
- 소소한 일상
- My Life Style & Memory a Box
- Blog's generation
- 공감 스토리
- 취객의 프로그래밍 연구실
- Love Me
- Dream Archive
- 세상에 발자취를 남기다 by kongmingu
- hanglesoul
- 카마의 IT 초행길
- 느리게.
- 미친듯이 즐겨보자..
- Joo studio
- Gonna be insane
- 악 다 날아갔어!! 갇대밋! 왓더...
- xopowo05
- 맑은공기희망운동
- 엔지니어 독립운동
- 혁준 블로그
- Simple in Complex with Simple
- 무의식이 의식을 지배한다
드럼치는 프로그래머
[안드로이드] 버튼이 오른쪽 정렬이 안됩니다... 본문
01.
GloriousDay
[출처] http://www.androidpub.com/848731
<LinearLayout xmlns:android=
"http://schemas.android.com/apk/res/android"
02.
android:layout_width=
"fill_parent"
03.
android:layout_height=
"fill_parent"
04.
android:orientation=
"vertical"
>
05.
06.
<LinearLayout
07.
android:layout_width=
"fill_parent"
08.
android:layout_height=
"44dip"
09.
android:background=
"#ffffff"
10.
android:orientation=
"horizontal"
>
11.
<ImageButton
12.
android:id=
"@+id/idea_write_button"
13.
android:layout_width=
"wrap_content"
14.
android:layout_height=
"fill_parent"
15.
android:src=
"@drawable/home_button"
16.
android:layout_alignParentRight=
"true"
/>
17.
</LinearLayout>
18.
</LinearLayout>
이런 레이아웃인데요..
이런형태로 주가 됩니다.
layout_alignParentRight="true"하면 저 버튼이 오른쪽으로 올줄 알았는데 그렇지 않네요..
오른쪽으로 배치하는 방법은 없을까요? 레이아웃을 잘못 쓴것일까요? 고견 부탁드립니다.
----------------------
android:layout_gravity="right" 아닌가요?
GloriousDay
layout_alignParentRight 요것은 RelativeLayout에서 사용되는 속성입니다. LinearLayout에서는 eagles335님이 적어주신 것 처럼 layout_gravity를 사용해야 합니다.
[출처] http://www.androidpub.com/848731
'★─Programing > ☆─Android' 카테고리의 다른 글
[안드로이드] 제3강좌 - 안드로이드 리니어 레이아웃 편집 (0) | 2011.05.25 |
---|---|
[안드로이드] 안드로이드 에뮬레이터 모바일 모양 스킨으로 변경하는 법 (0) | 2011.05.24 |
[안드로이드] 색상코드표 _ Color (0) | 2011.05.24 |
[안드로이드] 제2강좌 - 안드로이드 기본 레이아웃 (0) | 2011.05.24 |
[안드로이드] 제1강좌 - 안드로이드 기본 설치 (0) | 2011.05.24 |
Comments