안녕하십니까? 이곳에서 맨날 눈팅해서 문제 찾다가 급한사정으로 이렇게 글을 올려봅니다.
제가 지금 레이어 중첩으로 멀티페이지를 만들어 4개의 화면을 전환 할려고 합니다.
그런대 2번째 레이어에서 배경화면이 문제를 이르킵니다.
두번쩨 레이어는 TextView가 2개가 있습니다. 그런대 유독 하나의 TextView가 레이어의 Background배경을 출력하더군요 ㅡㅡ;;
처음엔 엡솔루트레이어 쓰다가 다른레이어까지 써도 마찬가지네요 ㅜㅜ
TextView에서 레이어의 Background 출력 하지 않게 할려면 어떠한 방법으로 해야 될까요?
지금 현재 xml 파일 내용
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width = "fill_parent"
android:layout_height = "fill_parent"
>
<!-- 첫번째 페이지 -->
<AbsoluteLayout android:id="@+id/page1"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:visibility="visible"
android:background="@drawable/logo_i800"
>
<TextView android:id="@+id/p1_logTxt"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_x="40px"
android:layout_y="120px"
android:textColor="#0000FF"
android:textSize="20dip"
>
</TextView>
</AbsoluteLayout>
<!-- 두번째 페이지 --> //문제의 2번째 페이지
<AbsoluteLayout android:id="@+id/page2"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:visibility="invisible"
android:background="@drawable/main_bg"
>
<TextView android:id="@+id/p2_logView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_x= "0px"
android:layout_y= "40px"
android:background="#000000"
android:textColor="#ffffff"
android:textSize="10dip"
>
</TextView>
<TextView android:id="@+id/p2_speed"
android:background="#000000"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_x= "140px"
android:layout_y= "190px"
android:textColor="#ffffff"
android:textSize="28dip"
android:gravity="right"
>
</TextView>
</AbsoluteLayout>
<!-- 세번째 페이지 -->
<LinearLayout android:id="@+id/page3"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:visibility="invisible"
android:background="@drawable/jindan_bg"
>
<TextView android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="3번째 페이지"
android:id="@+id/p3_logView"
>
</TextView>
</LinearLayout>
<!-- 네번째 페이지 -->
<LinearLayout android:id="@+id/page4"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:visibility="invisible"
>
<TextView android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="4번째 페이지"
android:id="@+id/p4_logView"
>
</TextView>
</LinearLayout>
</FrameLayout>
제가 요청한 문제의 화면 입니다.
고수님들의 많은 해결 방법을 요청합니다.