Android 서랍 레이아웃 DrawerLayout 의 간단 한 사용

본 논문 의 사례 는 안 드 로 이 드 서랍 레이아웃 DrawerLayout 의 기본 적 인 사용 을 공유 하여 여러분 께 참고 하 시기 바 랍 니 다.구체 적 인 내용 은 다음 과 같 습 니 다.
이번 데모 의 디 렉 터 리 구 조 는 다음 과 같 습 니 다.

일반적인 Android 프로젝트 를 만 든 후 activitymain.xml 에 다음 코드 를 넣 습 니 다:

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >
 
    <!--       ,          -->
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>
 
    <!--       -->
    <TextView
        android:id="@+id/left_drawer"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="#ffffff"
        android:layout_gravity="left"
        android:text="        "
        />
 
</android.support.v4.widget.DrawerLayout>

그리고 이벤트 클래스 MainActivity.java 내용 은 다음 과 같 습 니 다.

package com.example.administrator.myapplication;
 
import android.os.Bundle;
import android.support.v4.view.GravityCompat;
import android.support.v4.widget.DrawerLayout;
import android.support.v7.app.ActionBar;
import android.support.v7.app.AppCompatActivity;
import android.view.MenuItem;
 
public class MainActivity extends AppCompatActivity {
    private DrawerLayout drawerLayout;
 
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        //         
        drawerLayout = (DrawerLayout) findViewById(R.id.drawer_layout);
        ActionBar actionBar = getSupportActionBar();
        if (actionBar != null) {
            actionBar.setDisplayHomeAsUpEnabled(true);//       
            actionBar.setHomeAsUpIndicator(R.drawable.index_white);//       
        }
    }
 
    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        switch (item.getItemId()) {
            case android.R.id.home:// HomeAsUp   id   android.R.id.home
                drawerLayout.openDrawer(GravityCompat.START);//       
                break;
            default:
                break;
        }
        return true;
    }
}
그림 은 미리 넣 어서 어떤 그림 이 든 지 다 됩 니 다.
다음 과 같이 실행:


사실 위의 MainActivity.java 에 설 치 된 코드 를 사용 하지 않 아 도 됩 니 다.그러나 이 프로그램 이 서랍 레이아웃 이 있 는 지 아 는 사람 이 없습니다.즉,MainActivity.java 를 다음 과 같이 바 꿉 니 다(즉,일반적인 Activity 클래스 입 니 다).

package com.example.administrator.myapplication;
 
import android.os.Bundle;
import android.support.v4.widget.DrawerLayout;
import android.support.v7.app.AppCompatActivity;
 
public class MainActivity extends AppCompatActivity {
 
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }
}
다음 과 같이 실행 하면 드래그 를 통 해 레이아웃 을 표시 할 수 있 지만 사용 자 는 여기에 서랍 레이아웃 이 있 는 지 알 수 없 을 것 입 니 다.


이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기