Android学习笔记---水波纹效果

幽沉谢世事,俯默窥唐虞。这篇文章主要讲述Android学习笔记---水波纹效果相关的知识,希望能为你提供帮助。
======================================按下水波纹效果
< ?xml version="1.0" encoding="utf-8"?>
< !--波纹效果背景-->
< !--android:color="@color/dark_brown"按下时的效果-->
< ripple xmlns:android="http://schemas.android.com/apk/res/android"
android:color="?attr/colorPrimary">
< !--正常显示的颜色-->
< item>
< shape>
< !--背景颜色-->
< solid android:color="@color/white"/>
< /shape>
< /item>
< /ripple>
=========================Toolbar和侧滑视图结合======================
toolbar = findView(R.id.toolbar_id);
drawerLayout = (DrawerLayout) findViewById(R.id.drawer_id);
ActionBarDrawerToggle toggle = new ActionBarDrawerToggle(this,drawerLayout,toolbar,R.string.kai,R.string.guan){
//在菜单关闭的时候执行
@Override
public void onDrawerClosed(View drawerView) {
if(itemdianji){
sowHort();
itemdianji = false;
}
}
};
drawerLayout.setDrawerListener(toggle);
 
< activity
android:name=".activity.MainActivity"
android:screenOrientation="portrait" />
< !--
android:screenOrientation=""
landscape 横屏
portrait竖屏
sensor 根据传感器方向
user用户设置方法
behind 跟随activity栈中的前一个
 
 
 
【Android学习笔记---水波纹效果】估计是有问题的 先记录 以后修改




































    推荐阅读