자꾸 안드로이드펍 분들께 여쭤보는게 죄송해서 혼자 1주일 내내 고민하고 잡고잇다가...
이렇게 올립니다. ㅠㅠ
좀... 도와주십시오 ㅠ0ㅠ 리니어레이아웃은 하는데(쉬워서) 릴레이티브 레이아웃의 개념도 아직안서고
밑에대로 해도 왜 안되나 모르겠습니다.
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/text"
android:text="@string/hello"
/>
<ImageView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/image"
android:layout_below="@id/text"
android:src="@drawable/icon"
android:scaleType="center"
/>
<TextView
android:id="@+id/entry"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@id/image"
android:layout_marginLeft="10dip"
android:text="Text"
/>
<Button
android:id="@+id/ok"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/image"
android:layout_alignRight="@id/entry"
android:text="Button" />
</RelativeLayout>
도대체 어디가 잘못된거에요 ㅠ0ㅠ
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
이런거도 코딩 안하신거 아니면 안될 이유가 없어보이는데요