Android App_php 스킬에서 DrawerLayout 서랍 효과 메뉴 작성 예

WBOY
풀어 주다: 2016-05-16 19:56:10
원래의
1303명이 탐색했습니다.

서랍 효과가 적용된 탐색 메뉴
여러 앱을 살펴보니 이 옆 슬라이딩 서랍 효과 메뉴가 참 좋은 것 같아요.

2016321171423565.png (206×345)

다른 페이지로 전환하거나 메뉴의 하드웨어 버튼을 누를 필요가 없습니다. 인터페이스의 버튼을 클릭하기만 하면 메뉴가 슬라이드되어 나오며, 많은 것을 담을 수 있는 것처럼 느껴집니다.
도서관 참조:
우선 DrawerLayout 클래스가 Support Library에 있고, android-support-v4.jar 패키지를 추가해야 합니다.

그런 다음 android.support.v4.widget.DrawerLayout을 가져옵니다.

이 클래스를 찾을 수 없는 경우 먼저 SDK Manager를 사용하여 Android 지원 라이브러리를 업데이트한 다음 Android SDKextrasandroidsupportv4 경로에서 android-support-v4.jar을 찾아 프로젝트의 libs 경로에 복사한 후 추가하세요. 경로를 구축합니다.

코드 1
레이아웃:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:tools="http://schemas.android.com/tools"
  android:layout_width="match_parent"
  android:layout_height="match_parent" >

  <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" >

    <!-- The main content view -->
    <!-- main content must be the first element of DrawerLayout because it will be drawn first and drawer must be on top of it -->

    <FrameLayout
      android:id="@+id/content_frame"
      android:layout_width="match_parent"
      android:layout_height="match_parent" />

    <!-- The navigation drawer -->

    <ListView
      android:id="@+id/left_drawer"
      android:layout_width="240dp"
      android:layout_height="match_parent"
      android:layout_gravity="left"
      android:background="#111"
      android:choiceMode="singleChoice"
      android:divider="@android:color/transparent"
      android:dividerHeight="0dp" />
  </android.support.v4.widget.DrawerLayout>

</RelativeLayout> 

로그인 후 복사

DrawerLayout의 첫 번째 자식 요소는 메인 콘텐츠, 즉 서랍이 열리지 않을 때 표시되는 레이아웃입니다. 여기에는 아무것도 포함되지 않은 FrameLayout이 사용됩니다.

DrawerLayout의 두 번째 하위 요소는 서랍의 콘텐츠입니다. 즉, 여기에서는 서랍 레이아웃이 사용됩니다.

주요 활동(공식 사례에서 발췌):

package com.example.hellodrawer;

import android.os.Bundle;
import android.app.Activity;
import android.content.res.Configuration;
import android.view.MenuItem;
import android.view.View;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemClickListener;
import android.widget.ArrayAdapter;
import android.widget.ListView;
import android.support.v4.app.ActionBarDrawerToggle;
import android.support.v4.view.GravityCompat;
import android.support.v4.widget.DrawerLayout;

public class HelloDrawerActivity extends Activity
{

  private String[] mPlanetTitles;
  private DrawerLayout mDrawerLayout;
  private ActionBarDrawerToggle mDrawerToggle;
  private ListView mDrawerList;

  @Override
  public void onCreate(Bundle savedInstanceState)
  {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_hello_drawer);

    mDrawerLayout = (DrawerLayout) findViewById(R.id.drawer_layout);

    // init the ListView and Adapter, nothing new
    initListView();

    // set a custom shadow that overlays the main content when the drawer
    // opens
    mDrawerLayout.setDrawerShadow(R.drawable.drawer_shadow,
        GravityCompat.START);

    mDrawerToggle = new ActionBarDrawerToggle(this, mDrawerLayout,
        R.drawable.ic_drawer, R.string.drawer_open,
        R.string.drawer_close)
    {

      /** Called when a drawer has settled in a completely closed state. */
      public void onDrawerClosed(View view)
      {

        invalidateOptionsMenu(); // creates call to
                      // onPrepareOptionsMenu()
      }

      /** Called when a drawer has settled in a completely open state. */
      public void onDrawerOpened(View drawerView)
      {

        invalidateOptionsMenu(); // creates call to
                      // onPrepareOptionsMenu()
      }
    };

    // Set the drawer toggle as the DrawerListener
    mDrawerLayout.setDrawerListener(mDrawerToggle);

    // enable ActionBar app icon to behave as action to toggle nav drawer
    getActionBar().setDisplayHomeAsUpEnabled(true);
    // getActionBar().setHomeButtonEnabled(true);
    // Note: getActionBar() Added in API level 11
  }

  private void initListView()
  {
    mDrawerList = (ListView) findViewById(R.id.left_drawer);

    mPlanetTitles = getResources().getStringArray(R.array.planets_array);

    // Set the adapter for the list view
    mDrawerList.setAdapter(new ArrayAdapter<String>(this,
        R.layout.list_item, mPlanetTitles));
    // Set the list's click listener
    mDrawerList.setOnItemClickListener(new OnItemClickListener()
    {

      @Override
      public void onItemClick(AdapterView<&#63;> parent, View view,
          int position, long id)
      {
        // Highlight the selected item, update the title, and close the
        // drawer
        mDrawerList.setItemChecked(position, true);
        setTitle(mPlanetTitles[position]);
        mDrawerLayout.closeDrawer(mDrawerList);
      }
    });
  }

  @Override
  protected void onPostCreate(Bundle savedInstanceState)
  {
    super.onPostCreate(savedInstanceState);
    // Sync the toggle state after onRestoreInstanceState has occurred.
    mDrawerToggle.syncState();
  }

  @Override
  public void onConfigurationChanged(Configuration newConfig)
  {
    super.onConfigurationChanged(newConfig);
    mDrawerToggle.onConfigurationChanged(newConfig);
  }

  @Override
  public boolean onOptionsItemSelected(MenuItem item)
  {
    // Pass the event to ActionBarDrawerToggle, if it returns
    // true, then it has handled the app icon touch event
    if (mDrawerToggle.onOptionsItemSelected(item))
    {
      return true;
    }
    // Handle your other action bar items...

    return super.onOptionsItemSelected(item);
  }

}

로그인 후 복사

더 혼란스러운 것은 레벨 11의 API를 사용하므로 minSdkVersion이 제한되어 너무 낮을 수 없다는 것입니다.

사진 리소스는 안드로이드 공식 홈페이지 샘플에서 다운로드 가능합니다.

프로그램 실행 후 효과는 다음과 같습니다.
서랍을 열기 전:

2016321171457025.jpg (720×1280)

서랍을 연 후:

2016321171528332.jpg (720×1280)

코드 2
오늘 DrawerLayout 클래스를 다시 살펴보았고 직접 사용할 수 있는 메소드가 많다는 것을 발견했습니다.

사실 위처럼 번거로울 필요는 없습니다. 서랍 열기를 제어하는 ​​버튼만 정의하면 됩니다.

레이아웃:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:tools="http://schemas.android.com/tools"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:paddingBottom="@dimen/activity_vertical_margin"
  android:paddingLeft="@dimen/activity_horizontal_margin"
  android:paddingRight="@dimen/activity_horizontal_margin"
  android:paddingTop="@dimen/activity_vertical_margin"
  tools:context=".DrawerActivity" >

  <android.support.v4.widget.DrawerLayout
    android:id="@+id/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <!-- The main content view -->

    <FrameLayout
      android:id="@+id/content_frame"
      android:layout_width="match_parent"
      android:layout_height="match_parent" >

      <Button
        android:id="@+id/btn"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="open" 
        />
    </FrameLayout>

    <!-- The navigation drawer -->

    <ListView
      android:id="@+id/left_drawer"
      android:layout_width="240dp"
      android:layout_height="match_parent"
      android:layout_gravity="start"
      android:background="#111"
      android:choiceMode="singleChoice"
      android:divider="@android:color/transparent"
      android:dividerHeight="0dp" />
  </android.support.v4.widget.DrawerLayout>

</RelativeLayout>

로그인 후 복사


주요 코드:

package com.example.hellodrawer;

import android.os.Bundle;
import android.app.Activity;
import android.support.v4.widget.DrawerLayout;
import android.view.Gravity;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;

public class DrawerActivity extends Activity
{
  private DrawerLayout mDrawerLayout = null;

  @Override
  protected void onCreate(Bundle savedInstanceState)
  {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_drawer);

    mDrawerLayout = (DrawerLayout) findViewById(R.id.drawer_layout);

    Button button = (Button) findViewById(R.id.btn);
    button.setOnClickListener(new OnClickListener()
    {

      @Override
      public void onClick(View v)
      {
        // 按钮按下,将抽屉打开
        mDrawerLayout.openDrawer(Gravity.LEFT);

      }
    });
  }

}

로그인 후 복사

Toolbar DrawerLayout을 사용하여 고급 메뉴 슬라이딩을 빠르게 구현
최신 머티리얼 디자인 디자인 사양을 따르는 일부 애플리케이션에 주의를 기울이고 있다면(그렇지 않다면 그렇다고 가정하겠습니다!) 매우 편안하고 우아해 보이는 측면 슬라이딩 메뉴 애니메이션 효과를 사용하는 경우가 많습니다. 예는 다음과 같습니다(참조 2를 통해):

2016321171553612.gif (386×694)

오늘은 이러한 유형의 효과를 빠르게 달성하기 위해 공식 지원 라이브러리를 사용해 보겠습니다. 자세한 단계는 다음과 같습니다. (이 두 위젯을 모른다면 먼저 Google에서 검색해 보세요~)
먼저 appcompat-v7 지원을 추가해야 합니다.

Android Studio 1.0 RC4에서 프로젝트를 생성한 경우 appcompat-v7 지원이 기본적으로 추가되어 있습니다. AS 최신 버전이 아닌 경우 build.gradle에 다음 코드를 추가해야 합니다.

dependencies {
  ...//其他代码
  compile 'com.android.support:appcompat-v7:21.0.2'
}
로그인 후 복사

추가 후 Gradle을 동기화해야 합니다

툴바 추가:

Toolbar는 View에서 상속되므로 다른 표준 컨트롤과 마찬가지로 기본 레이아웃 파일에 Toolbar를 직접 추가할 수 있습니다. 그러나 Toolbar의 재사용 효율성을 높이기 위해 다음과 같이 레이아웃에 custom_toolbar.xml 코드를 생성할 수 있습니다.

<&#63;xml version="1.0" encoding="utf-8"&#63;>
  <android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/tl_custom"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="&#63;attr/colorPrimary"
    android:minHeight="&#63;attr/actionBarSize"
    android:popupTheme="@style/ThemeOverlay.AppCompat.Light"
    app:theme="@style/ThemeOverlay.AppCompat.ActionBar">
</android.support.v7.widget.Toolbar>
로그인 후 복사

설명:

android.support.v7.widget.Toolbar - 물론 Lollipop에서만 툴바를 사용한다면 v7 지원을 추가하지 않고도 툴바를 바로 사용할 수 있습니다.
xmlns:app - 사용자 정의된 xml 명명 제어, res-auto는 전체 패키지 이름을 사용하지 않고 AS에서 직접 지정할 수 있습니다.
android:Background 및 android:minHeight는 모두 styles.xml에서 선언할 수 있습니다
DrawerLayout 추가:

툴바와 유사하게 코드 재사용 효율성을 높이기 위해 다음과 같이 레이아웃에 custom_drawerlayout.xml 코드를 생성할 수 있습니다.

<&#63;xml version="1.0" encoding="utf-8"&#63;>
  <android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/dl_left"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
  <!--主布局-->
  <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <ImageView
      android:id="@+id/iv_main"
      android:layout_width="100dp"
      android:layout_height="100dp" />
  </LinearLayout>
  <!--侧滑菜单-->
  <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#fff"
    android:layout_gravity="start">
    <ListView
      android:id="@+id/lv_left_menu"
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:divider="@null"
      android:text="DrawerLayout" />
  </LinearLayout>
</android.support.v4.widget.DrawerLayout>
로그인 후 복사

Drawerlayout 태그에는 두 개의 하위 노드가 있습니다. 하나는 왼쪽 메뉴이고 다른 하나는 기본 레이아웃입니다. 또한 왼쪽 메뉴의 시작 위치는 android:layout_gravity="start"로 설정되어야 합니다.

activity_main.xml 구현:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:tools="http://schemas.android.com/tools"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:orientation="vertical"
  tools:context=".MainActivity">
    <!--Toolbar-->
    <include layout="@layout/custom_toolbar" />
    <!--DrawerLayout-->
    <include layout="@layout/custom_drawerlayout" />
</LinearLayout>
로그인 후 복사

include 태그를 직접적으로 간결하고 명확하게 사용하세요

Java 코드 개선:

public class MainActivity extends ActionBarActivity {
  //声明相关变量
  private Toolbar toolbar;
  private DrawerLayout mDrawerLayout;
  private ActionBarDrawerToggle mDrawerToggle;
  private ListView lvLeftMenu;
  private String[] lvs = {"List Item 01", "List Item 02", "List Item 03", "List Item 04"};
  private ArrayAdapter arrayAdapter;
  private ImageView ivRunningMan;
  private AnimationDrawable mAnimationDrawable;
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    findViews(); //获取控件
    //京东RunningMan动画效果,和本次Toolbar无关
    mAnimationDrawable = (AnimationDrawable) ivRunningMan.getBackground();
    mAnimationDrawable.start();
    toolbar.setTitle("Toolbar");//设置Toolbar标题
    toolbar.setTitleTextColor(Color.parseColor("#ffffff")); //设置标题颜色
    setSupportActionBar(toolbar);
    getSupportActionBar().setHomeButtonEnabled(true); //设置返回键可用
    getSupportActionBar().setDisplayHomeAsUpEnabled(true);
    //创建返回键,并实现打开关/闭监听
    mDrawerToggle = new ActionBarDrawerToggle(this, mDrawerLayout, toolbar, R.string.open, R.string.close) {
      @Override
      public void onDrawerOpened(View drawerView) {
        super.onDrawerOpened(drawerView);
        mAnimationDrawable.stop();
      }
      @Override
      public void onDrawerClosed(View drawerView) {
        super.onDrawerClosed(drawerView);
        mAnimationDrawable.start();
      }
    };
    mDrawerToggle.syncState();
    mDrawerLayout.setDrawerListener(mDrawerToggle);
    //设置菜单列表
    arrayAdapter = new ArrayAdapter(this, android.R.layout.simple_list_item_1, lvs);
    lvLeftMenu.setAdapter(arrayAdapter);
  }
  private void findViews() {
    ivRunningMan = (ImageView) findViewById(R.id.iv_main);
    toolbar = (Toolbar) findViewById(R.id.tl_custom);
    mDrawerLayout = (DrawerLayout) findViewById(R.id.dl_left);
    lvLeftMenu = (ListView) findViewById(R.id.lv_left_menu);
  }
}
로그인 후 복사

물론 더 중요한 것은 styles.xml과 colors.xml이며, 세부 내용은 다음과 같습니다.

<resources>
  <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
    <!--状态栏颜色-->
    <item name="colorPrimaryDark">@color/Indigo_colorPrimaryDark</item>
    <!--Toolbar颜色-->
    <item name="colorPrimary">@color/Indigo_colorPrimary</item>
    <!--返回键样式-->
    <item name="drawerArrowStyle">@style/AppTheme.DrawerArrowToggle</item>
    </style>
    <style name="AppTheme.DrawerArrowToggle" parent="Base.Widget.AppCompat.DrawerArrowToggle">
    <item name="color">@android:color/white</item>
  </style>
</resources>
<&#63;xml version="1.0" encoding="utf-8"&#63;>
<resources>
  <color name="Indigo_colorPrimaryDark">#303f9f</color>
  <color name="Indigo_colorPrimary">#3f51b5</color>
  <color name="Indigo_nav_color">#4675FF</color>
</resources>
로그인 후 복사

이 시점에서 가오다오에서 사이드 슬라이딩 메뉴가 구현되었으며 최종 효과는 다음과 같습니다. 프레임 레이트 때문에 시간이 걸리니까 우선 이렇게 볼까요~)

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿