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

Posted 纯属浪费8818

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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学习笔记---水波纹效果的主要内容,如果未能解决你的问题,请参考以下文章

android: Android水波纹点击效果

Android 自定义view实现水波纹效果

点击水波纹效果

Android 按钮实现按压水波纹效果

android 水波纹效果实现

Android特效专辑——点击水波纹效果实现,逻辑清晰实现简单