출처: https://3months.tistory.com/307 [Deep Play]

안드로이드/연습

[Android] 슬라이딩드로어

코딩하는 랄뚜기 2021. 8. 18. 15:03
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context=".MainActivity">
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="여기는 서랍 밖입니다."/>
    <SlidingDrawer
        android:content="@+id/content"
        android:handle="@+id/handle"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content">
        <Button
            android:id="@+id/handle"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="서랍손잡이">
        </Button>
        <LinearLayout
            android:id="@+id/content"
            android:background="#00ff00"
            android:gravity="center"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content">
            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="여기는 서랍 안입니다.">
            </TextView>
        </LinearLayout>
    </SlidingDrawer>

</LinearLayout>

 

실행화면

 

 

'안드로이드 > 연습' 카테고리의 다른 글

[Android] ViewFlipper  (0) 2021.08.22
[Android] 스크롤뷰  (0) 2021.08.18
[Android] 자동완성텍스트뷰어  (0) 2021.08.18
[Android] 시간예약  (0) 2021.08.18
[Android] 테이블레이아웃 계산기  (0) 2021.08.18