-1

Android에서 분할 페이지로 두 번째 페이지를 다른 페이지 위로 이동해야합니다.활동에 두 개의 레이아웃을 함께 표시하는 방법은 무엇입니까?

레이아웃 1 왼쪽의 80 %를 차지합니다. 레이아웃 2가 나머지 20 %에 표시됩니다. 오른쪽으로.

그런 다음 레이아웃 1을 레이아웃 2 위로 드래그/슬라이드하고 다시 슬라이드해야합니다.

나는 this을 시도했지만, 내 요구 사항에 맞게 구성하는 방법을 모르겠습니다.

나는 정말

enter image description here

슬라이드 후 스크린 샷

의 OnLoad 아래에 표시됩니다 필요

enter image description here

슬라이드로 돌아 가기

enter image description here

+1

마지막 번호 #로/a/15879886/1939564 –

+0

네이티브'NavigationDrawer'를 사용하여 그것을 얻을 수 있습니다. –

답변

1

나는 당신이 구글 행 아웃 앱과 같은 SlidingPaneLayout을 필요가 있다고 생각합니다. 그것은 당신이 원하는대로 작동합니다. 여기에 문서가 있습니다 http://developer.android.com/reference/android/support/v4/widget/SlidingPaneLayout.html

+0

요구 사항 스크린 샷으로 질문을 업데이트했습니다. 그것을보고 도움을 얻도록 도와주세요. 나는 안드로이드를 처음 접한다. –

+0

새로운 사람이라면 배울 기회가 있습니다. 문서 – SQLiteNoob

+0

@SQLiteNoob 모든 설명서를 읽었으므로보기를 스크롤 할 수 있습니다. 그러나 내가 필요한 것을 얻을 수는 없습니다. 스크린 샷을 확인하십시오. Onload에서 스크롤에 필요한 항목과 스크롤 뒤로 필요한 항목을 알아야합니다. –

1

당신이 좋아하실 수 있습니다. 시도해보십시오.

<FrameLayout 
      android:layout_width="fill_parent" 
      android:layout_height="fill_parent" 
      android:background="#D6FFD6" 
      xmlns:android="http://schemas.android.com/apk/res/android"> 
     <ImageView 
        android:src="@drawable/android" 
        android:scaleType="fitCenter" 
        android:layout_height="fill_parent" 
        android:layout_width="fill_parent"/> 
     <TextView 
         android:text="learnandroideasily.blogspot.com" 
         android:textSize="30sp" 
         android:textStyle="bold" 
         android:textColor="#003399" 
         android:layout_height="fill_parent" 
         android:layout_width="fill_parent" 
         android:gravity="center"/> 
</FrameLayout> 

또한 3 자습서 사이트를 참조하십시오. 안드로이드의 프레임 레이아웃을 쉽게 설명 할 수 있습니다. //stackoverflow.com : 같은

번호 # 1 Frame Layout In Android

번호 # 2 Android User Interface Design: Frame Layouts

하고 전체 응답 carefully.http을 읽을 경우이를 사용자 정의 할 수 있습니다 3 Android Frame Layout

+0

내 요구 사항 스크린 샷으로 질문을 업데이트했습니다. 그것을보고 도움을 얻도록 도와주세요. 나는 안드로이드를 처음 접한다. –

+0

권장 자습서를 읽으려고 했습니까? – SQLiteNoob

+0

@Kablu 이것을 확인해 주시겠습니까? –