zoukankan      html  css  js  c++  java
  • Material Design控件使用学习 toolbar+drawerlayout+ Snackbar

     效果

    1.,导包design包和appcompat-v7 ,设置Theme主题Style为NoActionbar

    2.custom_toolbar.xml

    <?xml version="1.0" encoding="utf-8"?>
    
    <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="?attr/colorPrimary"
                                       android:minHeight="?attr/actionBarSize"
                                       android:popupTheme="@style/ThemeOverlay.AppCompat.Light"
                                       app:theme="@style/ThemeOverlay.AppCompat.ActionBar">
    </android.support.v7.widget.Toolbar>

    3.custom_drawerlayout.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/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>

    4.activity_main.xml

    <?xml version="1.0" encoding="utf-8"?>
    <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>

    5.MainActivity

    import android.graphics.Color;
    import android.support.design.widget.Snackbar;
    import android.support.v4.widget.DrawerLayout;
    import android.support.v7.app.ActionBarDrawerToggle;
    import android.support.v7.app.AppCompatActivity;
    import android.os.Bundle;
    import android.support.v7.widget.Toolbar;
    import android.view.View;
    import android.widget.ArrayAdapter;
    import android.widget.ListView;
    
    public class MainActivity extends AppCompatActivity {
    
        private Toolbar toolbar;
        private DrawerLayout drawerlyout;
        private ListView lvLeftMenu;
        private ActionBarDrawerToggle mDrawerToggle;
        private String[] lvs = {"List Item 01", "List Item 02", "List Item 03", "List Item 04"};
        private ArrayAdapter arrayAdapter;
        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_main);
            findViews();
            toolbar.setTitle("Toolbar");
            toolbar.setSubtitleTextColor(Color.parseColor("#ffffff"));
            setSupportActionBar(toolbar);
            getSupportActionBar().setHomeButtonEnabled(true);
            getSupportActionBar().setDisplayHomeAsUpEnabled(true);
            mDrawerToggle=new ActionBarDrawerToggle(this,drawerlyout,toolbar,R.string.open,R.string.close){
                @Override
                public void onDrawerOpened(View drawerView) {
                    super.onDrawerOpened(drawerView);
                    Snackbar.make(drawerView, "Open", Snackbar.LENGTH_SHORT).show();
                }
    
                @Override
                public void onDrawerClosed(View drawerView) {
                    super.onDrawerClosed(drawerView);
                    Snackbar.make(drawerView, "Close", Snackbar.LENGTH_SHORT).show();
                }
            };
            mDrawerToggle.syncState();
           drawerlyout.setDrawerListener(mDrawerToggle);
            arrayAdapter = new ArrayAdapter(this, android.R.layout.simple_list_item_1, lvs);
            lvLeftMenu.setAdapter(arrayAdapter);
    
        }
    
        private void findViews() {
    
            toolbar= (Toolbar) findViewById(R.id.tl_custom);
            drawerlyout= (DrawerLayout) findViewById(R.id.dl_left);
            lvLeftMenu= (ListView) findViewById(R.id.lv_left_menu);
        }
    }
  • 相关阅读:
    Ubuntu 14.04设置开机启动脚本的方法
    python 筛选
    分段压缩
    ubuntu 16.04 启用root用户方法
    Ubuntu 16.04 设置MySQL远程访问权限
    [分享]在ubuntu9.10下实现开机自动登录并运行自己的图形程序
    ubuntu live cd修复grub引导项
    安装dcm4chee-arc-light-5.4.1-mysql步骤
    数据库学习--wildfly配置postgreSQL数据源
    wildfly配置PostgreSQL数据源
  • 原文地址:https://www.cnblogs.com/xurui1995/p/5816031.html
Copyright © 2011-2022 走看看