안드로이드 개발 질문/답변
(글 수 45,052)
여기서 지금 맨아래 메뉴 검은색 바가있는데 이거를 화면 맨아래로 내리고싶습니다.
WVGA800 으로 해서 한건데 위젯을 컨테이너 맨아래 배치한다라는 xml 소스를 썻는데도 안되더군요
xml 소스는
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#ffffff"
>
<ImageView
android:layout_alignParentTop="true"
android:padding="0dip"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/maintop"
android:src="@drawable/maintop02"
>
</ImageView>
<TextView
android:layout_below="@id/maintop"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/daebudo"
android:text="▷ 대부도(13)"
android:textSize="10pt"
android:padding="5dip"
>
</TextView>
<ImageView
android:layout_below="@id/daebudo"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/line02"
android:src="@drawable/line"
>
</ImageView>
<TextView
android:layout_below="@id/line02"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/sangtae"
android:text="▷ 생태관광(15)"
android:textSize="10pt"
android:padding="5dip"
>
</TextView>
<ImageView
android:layout_below="@id/sangtae"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/line03"
android:src="@drawable/line"
>
</ImageView>
<TextView
android:layout_below="@id/line03"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/muse"
android:text="▷ 전시관-박물관(10)"
android:textSize="10pt"
android:padding="5dip"
>
</TextView>
<ImageView
android:layout_below="@id/muse"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/line04"
android:src="@drawable/line"
>
</ImageView>
<ImageView
android:layout_below="@id/muse"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/bmenu01"
android:src="@drawable/bmenu"
>
</ImageView>
<!-- 하단메뉴 -->
<ImageView
android:layout_below="@id/bmenu01"
android:layout_alignParentBottom="true"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/backbg"
android:src="@drawable/bar"
>
</ImageView>
<ImageView
android:layout_below="@id/bmenu01"
android:layout_alignParentBottom="true"
android:paddingLeft="34dip"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/btn_home"
android:src="@drawable/btn_home"
>
</ImageView>
<ImageView
android:layout_below="@id/bmenu01"
android:layout_alignParentBottom="true"
android:layout_toRightOf="@id/btn_home"
android:paddingLeft="10dip"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/btn_1"
android:src="@drawable/btn_1"
>
</ImageView>
<ImageView
android:layout_below="@id/bmenu01"
android:layout_alignParentBottom="true"
android:layout_toRightOf="@id/btn_1"
android:paddingLeft="10dip"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/btn_2"
android:src="@drawable/btn_2"
>
</ImageView>
<ImageView
android:layout_below="@id/bmenu01"
android:layout_alignParentBottom="true"
android:layout_toRightOf="@id/btn_2"
android:paddingLeft="10dip"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/btn_3"
android:src="@drawable/btn_3"
>
</ImageView>
</RelativeLayout>
이거입니다. 알려주세요 ㅠㅠ



