안드로이드 개발 질문/답변
(글 수 45,052)
레이아웃 구성을 하고 싶은데 잘안되요 ~
xml 화면인데요
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#ffffff"
android:id="@+id/back"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/tv"
/>
</LinearLayout>
</ScrollView
기존화면이에요
http://www.ssju.co.kr/android/src.gif
변경하고 싶은 화면으로 xml레이아웃을 구성하고 싶은데 어떤 방법을 이용해야 할까요?? .ㅠㅠ
http://www.ssju.co.kr/android/src1.gif
전문가님 도움요청합니다.
너무 허접한 질문인것 같아 죄송하지만 한번 봐주세요 ㅠㅠ




<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" > <LinearLayout android:layout_width="wrap_content" android:layout_height="wrap_content"> <!-- View 추가 --> </LinearLayout> <ScrollView android:layout_width="fill_parent" android:layout_height="fill_parent" > <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="String" /> </ScrollView> </LinearLayout>