This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Fork from :https://gist.github.com/manidesto/ecccd38787fa8e287a3f18bcd9867189 | |
* | |
* Recycler嵌套,横向滑动事件冲突,垂直方向列表里面各个子条目可以横向滑动 | |
* | |
* 解决滑动时候手势冲突 | |
*/ | |
public class BetterRecyclerView extends RecyclerView{ | |
private static final int INVALID_POINTER = -1; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# AES加密解密 | |
import javax.crypto.*; | |
import java.security.*; | |
public class Java { | |
private static SecretKey key = null; | |
private static Cipher cipher = null; |
NewerOlder