Android滑动菜单框架完全解析,教你如何一分钟实现滑动菜单特效

时间:2022-07-01 19:43:14

转载请注明出处:http://blog.csdn.net/guolin_blog/article/details/8744400

之前我向大家介绍了史上最简单的滑动菜单的实现方式,相信大家都还记得。如果忘记了其中的实现原理或者还没看过的朋友,请先去看一遍之前的文章 Android滑动菜单特效实现,仿人人客户端侧滑效果,史上最简单的侧滑实现 ,因为我们今天要实现的滑动菜单框架也是基于同样的原理的。

之前的文章中在最后也提到了,如果是你的应用程序中有很多个Activity都需要加入滑动菜单的功能,那么每个Activity都要写上百行的代码才能实现效果,再简单的滑动菜单实现方案也没用。因此我们今天要实现一个滑动菜单的框架,然后在任何Activity中都可以一分钟引入滑动菜单功能。

首先还是讲一下实现原理。说是滑动菜单的框架,其实说白了也很简单,就是我们自定义一个布局,在这个自定义布局中实现好滑动菜单的功能,然后只要在Activity的布局文件里面引入我们自定义的布局,这个Activity就拥有了滑动菜单的功能了。原理讲完了,是不是很简单?下面我们来动手实现吧。

在Eclipse中新建一个Android项目,项目名就叫做RenRenSlidingLayout。

新建一个类,名叫SlidingLayout,这个类是继承自LinearLayout的,并且实现了OnTouchListener接口,具体代码如下:

  1. public class SlidingLayout extends LinearLayout implements OnTouchListener {
  2. /**
  3. * 滚动显示和隐藏左侧布局时,手指滑动需要达到的速度。
  4. */
  5. public static final int SNAP_VELOCITY = 200;
  6. /**
  7. * 屏幕宽度值。
  8. */
  9. private int screenWidth;
  10. /**
  11. * 左侧布局最多可以滑动到的左边缘。值由左侧布局的宽度来定,marginLeft到达此值之后,不能再减少。
  12. */
  13. private int leftEdge;
  14. /**
  15. * 左侧布局最多可以滑动到的右边缘。值恒为0,即marginLeft到达0之后,不能增加。
  16. */
  17. private int rightEdge = 0;
  18. /**
  19. * 左侧布局完全显示时,留给右侧布局的宽度值。
  20. */
  21. private int leftLayoutPadding = 80;
  22. /**
  23. * 记录手指按下时的横坐标。
  24. */
  25. private float xDown;
  26. /**
  27. * 记录手指移动时的横坐标。
  28. */
  29. private float xMove;
  30. /**
  31. * 记录手机抬起时的横坐标。
  32. */
  33. private float xUp;
  34. /**
  35. * 左侧布局当前是显示还是隐藏。只有完全显示或隐藏时才会更改此值,滑动过程中此值无效。
  36. */
  37. private boolean isLeftLayoutVisible;
  38. /**
  39. * 左侧布局对象。
  40. */
  41. private View leftLayout;
  42. /**
  43. * 右侧布局对象。
  44. */
  45. private View rightLayout;
  46. /**
  47. * 用于监听侧滑事件的View。
  48. */
  49. private View mBindView;
  50. /**
  51. * 左侧布局的参数,通过此参数来重新确定左侧布局的宽度,以及更改leftMargin的值。
  52. */
  53. private MarginLayoutParams leftLayoutParams;
  54. /**
  55. * 右侧布局的参数,通过此参数来重新确定右侧布局的宽度。
  56. */
  57. private MarginLayoutParams rightLayoutParams;
  58. /**
  59. * 用于计算手指滑动的速度。
  60. */
  61. private VelocityTracker mVelocityTracker;
  62. /**
  63. * 重写SlidingLayout的构造函数,其中获取了屏幕的宽度。
  64. *
  65. * @param context
  66. * @param attrs
  67. */
  68. public SlidingLayout(Context context, AttributeSet attrs) {
  69. super(context, attrs);
  70. WindowManager wm = (WindowManager) context.getSystemService(Context.WINDOW_SERVICE);
  71. screenWidth = wm.getDefaultDisplay().getWidth();
  72. }
  73. /**
  74. * 绑定监听侧滑事件的View,即在绑定的View进行滑动才可以显示和隐藏左侧布局。
  75. *
  76. * @param bindView
  77. *            需要绑定的View对象。
  78. */
  79. public void setScrollEvent(View bindView) {
  80. mBindView = bindView;
  81. mBindView.setOnTouchListener(this);
  82. }
  83. /**
  84. * 将屏幕滚动到左侧布局界面,滚动速度设定为30.
  85. */
  86. public void scrollToLeftLayout() {
  87. new ScrollTask().execute(30);
  88. }
  89. /**
  90. * 将屏幕滚动到右侧布局界面,滚动速度设定为-30.
  91. */
  92. public void scrollToRightLayout() {
  93. new ScrollTask().execute(-30);
  94. }
  95. /**
  96. * 左侧布局是否完全显示出来,或完全隐藏,滑动过程中此值无效。
  97. *
  98. * @return 左侧布局完全显示返回true,完全隐藏返回false。
  99. */
  100. public boolean isLeftLayoutVisible() {
  101. return isLeftLayoutVisible;
  102. }
  103. /**
  104. * 在onLayout中重新设定左侧布局和右侧布局的参数。
  105. */
  106. @Override
  107. protected void onLayout(boolean changed, int l, int t, int r, int b) {
  108. super.onLayout(changed, l, t, r, b);
  109. if (changed) {
  110. // 获取左侧布局对象
  111. leftLayout = getChildAt(0);
  112. leftLayoutParams = (MarginLayoutParams) leftLayout.getLayoutParams();
  113. // 重置左侧布局对象的宽度为屏幕宽度减去leftLayoutPadding
  114. leftLayoutParams.width = screenWidth - leftLayoutPadding;
  115. // 设置最左边距为负的左侧布局的宽度
  116. leftEdge = -leftLayoutParams.width;
  117. leftLayoutParams.leftMargin = leftEdge;
  118. leftLayout.setLayoutParams(leftLayoutParams);
  119. // 获取右侧布局对象
  120. rightLayout = getChildAt(1);
  121. rightLayoutParams = (MarginLayoutParams) rightLayout.getLayoutParams();
  122. rightLayoutParams.width = screenWidth;
  123. rightLayout.setLayoutParams(rightLayoutParams);
  124. }
  125. }
  126. @Override
  127. public boolean onTouch(View v, MotionEvent event) {
  128. createVelocityTracker(event);
  129. switch (event.getAction()) {
  130. case MotionEvent.ACTION_DOWN:
  131. // 手指按下时,记录按下时的横坐标
  132. xDown = event.getRawX();
  133. break;
  134. case MotionEvent.ACTION_MOVE:
  135. // 手指移动时,对比按下时的横坐标,计算出移动的距离,来调整左侧布局的leftMargin值,从而显示和隐藏左侧布局
  136. xMove = event.getRawX();
  137. int distanceX = (int) (xMove - xDown);
  138. if (isLeftLayoutVisible) {
  139. leftLayoutParams.leftMargin = distanceX;
  140. } else {
  141. leftLayoutParams.leftMargin = leftEdge + distanceX;
  142. }
  143. if (leftLayoutParams.leftMargin < leftEdge) {
  144. leftLayoutParams.leftMargin = leftEdge;
  145. } else if (leftLayoutParams.leftMargin > rightEdge) {
  146. leftLayoutParams.leftMargin = rightEdge;
  147. }
  148. leftLayout.setLayoutParams(leftLayoutParams);
  149. break;
  150. case MotionEvent.ACTION_UP:
  151. // 手指抬起时,进行判断当前手势的意图,从而决定是滚动到左侧布局,还是滚动到右侧布局
  152. xUp = event.getRawX();
  153. if (wantToShowLeftLayout()) {
  154. if (shouldScrollToLeftLayout()) {
  155. scrollToLeftLayout();
  156. } else {
  157. scrollToRightLayout();
  158. }
  159. } else if (wantToShowRightLayout()) {
  160. if (shouldScrollToContent()) {
  161. scrollToRightLayout();
  162. } else {
  163. scrollToLeftLayout();
  164. }
  165. }
  166. recycleVelocityTracker();
  167. break;
  168. }
  169. return isBindBasicLayout();
  170. }
  171. /**
  172. * 判断当前手势的意图是不是想显示右侧布局。如果手指移动的距离是负数,且当前左侧布局是可见的,则认为当前手势是想要显示右侧布局。
  173. *
  174. * @return 当前手势想显示右侧布局返回true,否则返回false。
  175. */
  176. private boolean wantToShowRightLayout() {
  177. return xUp - xDown < 0 && isLeftLayoutVisible;
  178. }
  179. /**
  180. * 判断当前手势的意图是不是想显示左侧布局。如果手指移动的距离是正数,且当前左侧布局是不可见的,则认为当前手势是想要显示左侧布局。
  181. *
  182. * @return 当前手势想显示左侧布局返回true,否则返回false。
  183. */
  184. private boolean wantToShowLeftLayout() {
  185. return xUp - xDown > 0 && !isLeftLayoutVisible;
  186. }
  187. /**
  188. * 判断是否应该滚动将左侧布局展示出来。如果手指移动距离大于屏幕的1/2,或者手指移动速度大于SNAP_VELOCITY,
  189. * 就认为应该滚动将左侧布局展示出来。
  190. *
  191. * @return 如果应该滚动将左侧布局展示出来返回true,否则返回false。
  192. */
  193. private boolean shouldScrollToLeftLayout() {
  194. return xUp - xDown > screenWidth / 2 || getScrollVelocity() > SNAP_VELOCITY;
  195. }
  196. /**
  197. * 判断是否应该滚动将右侧布局展示出来。如果手指移动距离加上leftLayoutPadding大于屏幕的1/2,
  198. * 或者手指移动速度大于SNAP_VELOCITY, 就认为应该滚动将右侧布局展示出来。
  199. *
  200. * @return 如果应该滚动将右侧布局展示出来返回true,否则返回false。
  201. */
  202. private boolean shouldScrollToContent() {
  203. return xDown - xUp + leftLayoutPadding > screenWidth / 2
  204. || getScrollVelocity() > SNAP_VELOCITY;
  205. }
  206. /**
  207. * 判断绑定滑动事件的View是不是一个基础layout,不支持自定义layout,只支持四种基本layout,
  208. * AbsoluteLayout已被弃用。
  209. *
  210. * @return 如果绑定滑动事件的View是LinearLayout,RelativeLayout,FrameLayout,
  211. *         TableLayout之一就返回true,否则返回false。
  212. */
  213. private boolean isBindBasicLayout() {
  214. if (mBindView == null) {
  215. return false;
  216. }
  217. String viewName = mBindView.getClass().getName();
  218. return viewName.equals(LinearLayout.class.getName())
  219. || viewName.equals(RelativeLayout.class.getName())
  220. || viewName.equals(FrameLayout.class.getName())
  221. || viewName.equals(TableLayout.class.getName());
  222. }
  223. /**
  224. * 创建VelocityTracker对象,并将触摸事件加入到VelocityTracker当中。
  225. *
  226. * @param event
  227. *            右侧布局监听控件的滑动事件
  228. */
  229. private void createVelocityTracker(MotionEvent event) {
  230. if (mVelocityTracker == null) {
  231. mVelocityTracker = VelocityTracker.obtain();
  232. }
  233. mVelocityTracker.addMovement(event);
  234. }
  235. /**
  236. * 获取手指在右侧布局的监听View上的滑动速度。
  237. *
  238. * @return 滑动速度,以每秒钟移动了多少像素值为单位。
  239. */
  240. private int getScrollVelocity() {
  241. mVelocityTracker.computeCurrentVelocity(1000);
  242. int velocity = (int) mVelocityTracker.getXVelocity();
  243. return Math.abs(velocity);
  244. }
  245. /**
  246. * 回收VelocityTracker对象。
  247. */
  248. private void recycleVelocityTracker() {
  249. mVelocityTracker.recycle();
  250. mVelocityTracker = null;
  251. }
  252. class ScrollTask extends AsyncTask<Integer, Integer, Integer> {
  253. @Override
  254. protected Integer doInBackground(Integer... speed) {
  255. int leftMargin = leftLayoutParams.leftMargin;
  256. // 根据传入的速度来滚动界面,当滚动到达左边界或右边界时,跳出循环。
  257. while (true) {
  258. leftMargin = leftMargin + speed[0];
  259. if (leftMargin > rightEdge) {
  260. leftMargin = rightEdge;
  261. break;
  262. }
  263. if (leftMargin < leftEdge) {
  264. leftMargin = leftEdge;
  265. break;
  266. }
  267. publishProgress(leftMargin);
  268. // 为了要有滚动效果产生,每次循环使线程睡眠20毫秒,这样肉眼才能够看到滚动动画。
  269. sleep(20);
  270. }
  271. if (speed[0] > 0) {
  272. isLeftLayoutVisible = true;
  273. } else {
  274. isLeftLayoutVisible = false;
  275. }
  276. return leftMargin;
  277. }
  278. @Override
  279. protected void onProgressUpdate(Integer... leftMargin) {
  280. leftLayoutParams.leftMargin = leftMargin[0];
  281. leftLayout.setLayoutParams(leftLayoutParams);
  282. }
  283. @Override
  284. protected void onPostExecute(Integer leftMargin) {
  285. leftLayoutParams.leftMargin = leftMargin;
  286. leftLayout.setLayoutParams(leftLayoutParams);
  287. }
  288. }
  289. /**
  290. * 使当前线程睡眠指定的毫秒数。
  291. *
  292. * @param millis
  293. *            指定当前线程睡眠多久,以毫秒为单位
  294. */
  295. private void sleep(long millis) {
  296. try {
  297. Thread.sleep(millis);
  298. } catch (InterruptedException e) {
  299. e.printStackTrace();
  300. }
  301. }
  302. }

看到这里,我相信大家一定会觉得这些代码非常熟悉。没错,基本上这些代码和之前那篇文章的代码大同小异,只不过以前这些代码是写在Activity里的,而现在我们移动到了自定义的View当中。

接着我来说明一下和以前不同的部分。我们可以看到,这里将onLayout方法进行了重写,使用getChildAt(0)获取到的布局作为左边布局,使用getChildAt(1)获取到的布局作为右边布局。并将左边布局的宽度重定义为屏幕宽度减去leftLayoutPadding,将右侧布局的宽度重定义为屏幕宽度。然后让左边布局偏移出屏幕,这样能看到的就只有右边布局了。因此在这里我们也可以看出,使用SlidingLayout这个布局的前提条件,必须为这个布局提供两个子元素,第一个元素会作为左边布局偏移出屏幕,第二个元素会作为右边布局显示在屏幕上。

然后我们看一下setScrollEvent方法,这个方法接收一个View作为参数,然后为这个View绑定了一个touch事件。这是什么意思呢?让我们来想象一个场景,如果右侧布局是一个LinearLayout,我可以通过监听LinearLayout上的touch事件来控制左侧布局的显示和隐藏。但是如果右侧布局的LinearLayout里面加入了一个ListView,而这个ListView又充满了整个LinearLayout,这个时候LinearLayout将不可能再被touch到了,这个时候我们就需要将touch事件注册到ListView上。setScrollEvent方法也就是提供了一个注册接口,touch事件将会注册到传入的View上。

最后还有一个陌生的方法,isBindBasicLayout。这个方法就是判断了一下注册touch事件的View是不是四个基本布局之一,如果是就返回true,否则返回false。这个方法在整个SlidingLayout中起着非常重要的作用,主要用于控制onTouch事件是返回true还是false,这将影响到布局当中的View的功能是否可用。由于里面牵扯到了Android的事件转发机制,内容比较多,就不在这里详细解释了,我会考虑以后专门写一篇文章来介绍Android的事件机制。这里就先简单记住如果是基本布局就返回true,否则就返回false。

好了,我们的SlidingLayout写完了,接下来就是见证奇迹的时刻,让我们一起看看如何一分钟在Activity中引入滑动菜单功能。

创建或打开layout目录下的activity_main.xml文件,加入如下代码:

  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. android:layout_width="fill_parent"
  4. android:layout_height="fill_parent"
  5. android:orientation="horizontal"
  6. tools:context=".MainActivity" >
  7. <!-- 使用自定义的侧滑布局,orientation必须为水平方向 -->
  8. <com.example.slide.SlidingLayout
  9. android:id="@+id/slidingLayout"
  10. android:layout_width="fill_parent"
  11. android:layout_height="fill_parent"
  12. android:orientation="horizontal" >
  13. <!--
  14. 侧滑布局的根节点下,有且只能有两个子元素,这两个子元素必须是四种基本布局之一,
  15. 即LinearLayout, RelativeLayout, FrameLayout或TableLayout。
  16. 第一个子元素将做为左侧布局,初始化后被隐藏。第二个子元素将做为右侧布局,
  17. 也就是当前Activity的主布局,将主要的数据放在里面。
  18. -->
  19. <RelativeLayout
  20. android:id="@+id/menu"
  21. android:layout_width="fill_parent"
  22. android:layout_height="fill_parent"
  23. android:background="#00ccff" >
  24. <TextView
  25. android:layout_width="wrap_content"
  26. android:layout_height="wrap_content"
  27. android:layout_centerInParent="true"
  28. android:text="This is menu"
  29. android:textColor="#000000"
  30. android:textSize="28sp" />
  31. </RelativeLayout>
  32. <LinearLayout
  33. android:id="@+id/content"
  34. android:layout_width="fill_parent"
  35. android:layout_height="fill_parent"
  36. android:orientation="vertical" >
  37. <Button
  38. android:id="@+id/menuButton"
  39. android:layout_width="wrap_content"
  40. android:layout_height="wrap_content"
  41. android:text="Menu" />
  42. <ListView
  43. android:id="@+id/contentList"
  44. android:layout_width="fill_parent"
  45. android:layout_height="fill_parent" >
  46. </ListView>
  47. </LinearLayout>
  48. </com.example.slide.SlidingLayout>
  49. </LinearLayout>

我们可以看到,在根布局的下面,我们引入了自定义布局com.example.slide.SlidingLayout,然后在它里面加入了两个子元素,一个RelativeLayout和一个LinearLayout。RelativeLayout中比较简单,就加入了一个TextView。LinearLayout里面我们加入了一个按钮和一个ListView。

然后创建或打开MainActivity作为程序的主Activity,加入代码:

  1. public class MainActivity extends Activity {
  2. /**
  3. * 侧滑布局对象,用于通过手指滑动将左侧的菜单布局进行显示或隐藏。
  4. */
  5. private SlidingLayout slidingLayout;
  6. /**
  7. * menu按钮,点击按钮展示左侧布局,再点击一次隐藏左侧布局。
  8. */
  9. private Button menuButton;
  10. /**
  11. * 放在content布局中的ListView。
  12. */
  13. private ListView contentListView;
  14. /**
  15. * 作用于contentListView的适配器。
  16. */
  17. private ArrayAdapter<String> contentListAdapter;
  18. /**
  19. * 用于填充contentListAdapter的数据源。
  20. */
  21. private String[] contentItems = { "Content Item 1", "Content Item 2", "Content Item 3",
  22. "Content Item 4", "Content Item 5", "Content Item 6", "Content Item 7",
  23. "Content Item 8", "Content Item 9", "Content Item 10", "Content Item 11",
  24. "Content Item 12", "Content Item 13", "Content Item 14", "Content Item 15",
  25. "Content Item 16" };
  26. @Override
  27. protected void onCreate(Bundle savedInstanceState) {
  28. super.onCreate(savedInstanceState);
  29. setContentView(R.layout.activity_main);
  30. slidingLayout = (SlidingLayout) findViewById(R.id.slidingLayout);
  31. menuButton = (Button) findViewById(R.id.menuButton);
  32. contentListView = (ListView) findViewById(R.id.contentList);
  33. contentListAdapter = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1,
  34. contentItems);
  35. contentListView.setAdapter(contentListAdapter);
  36. // 将监听滑动事件绑定在contentListView上
  37. slidingLayout.setScrollEvent(contentListView);
  38. menuButton.setOnClickListener(new OnClickListener() {
  39. @Override
  40. public void onClick(View v) {
  41. // 实现点击一下menu展示左侧布局,再点击一下隐藏左侧布局的功能
  42. if (slidingLayout.isLeftLayoutVisible()) {
  43. slidingLayout.scrollToRightLayout();
  44. } else {
  45. slidingLayout.scrollToLeftLayout();
  46. }
  47. }
  48. });
  49. }
  50. }

上述代码重点是调用SlidingLayout的setScrollEvent方法,为ListView注册touch事件。同时给按钮添加了一个点击事件,实现了点击一下显示左边布局,再点击一下隐藏左边布局的功能。

最后还是老规矩,给出AndroidManifest.xml的代码:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="com.example.slide"
  4. android:versionCode="1"
  5. android:versionName="1.0" >
  6. <uses-sdk
  7. android:minSdkVersion="8"
  8. android:targetSdkVersion="8" />
  9. <application
  10. android:allowBackup="true"
  11. android:icon="@drawable/ic_launcher"
  12. android:label="@string/app_name"
  13. android:theme="@android:style/Theme.NoTitleBar" >
  14. <activity
  15. android:name="com.example.slide.MainActivity"
  16. android:label="@string/app_name" >
  17. <intent-filter>
  18. <action android:name="android.intent.action.MAIN" />
  19. <category android:name="android.intent.category.LAUNCHER" />
  20. </intent-filter>
  21. </activity>
  22. </application>
  23. </manifest>

好了,现在让我们运行一下吧。首先是程序打开的时候,显示的是右边布局。用手指在界面上向右滑动,可以看到左边布局出现。

Android滑动菜单框架完全解析,教你如何一分钟实现滑动菜单特效                Android滑动菜单框架完全解析,教你如何一分钟实现滑动菜单特效

而当左边布局完全显示的时候,效果图如下:

Android滑动菜单框架完全解析,教你如何一分钟实现滑动菜单特效

除此之外,点击Menu按钮也可以控制左边布局的显示和隐藏,大家可以自己试一下。

使用自定义布局的话,就可以用简单的方式在任意Activity中加入滑动菜单功能,即使你有再多的Activity也不用怕了,一分钟引入滑动菜单妥妥的。

再总结一下吧,向Activity中加入滑动菜单功能只需要两步:

1. 在Acitivty的layout中引入我们自定义的布局,并且给这个布局要加入两个直接子元素。

2. 在Activity中通过setScrollEvent方法,给一个View注册touch事件。

好了,今天的讲解到此结束,有疑问的朋友请在下面留言。

源码下载,请点击这里

补充:

由于这段文章写的比较早了,那时写的滑动菜单还存在着不少问题,我之后又将上面的代码做了不少改动,编写了一个修正版的滑动菜单,这个版本主要修正了以下内容:

1.将滑动方式改成了覆盖型。

2.ListView上下滚动时不会轻易滑出菜单。

3.正在滑动时屏蔽掉内容布局上的事件。

4.当菜单布局展示时,点击一下右侧的内容布局,可以将菜单隐藏。

5.修复刚打开程序时,菜单可能会短暂显示一下,然后瞬间消失的bug。

修正版源码下载,请点击这里

另外,有对双向滑动菜单感兴趣的朋友请转阅  Android双向滑动菜单完全解析,教你如何一分钟实现双向滑动特效

第一时间获

Android滑动菜单框架完全解析,教你如何一分钟实现滑动菜单特效的更多相关文章

  1. &lbrack;转&rsqb;Android事件分发机制完全解析,带你从源码的角度彻底理解&lpar;上&rpar;

    Android事件分发机制 该篇文章出处:http://blog.csdn.net/guolin_blog/article/details/9097463 其实我一直准备写一篇关于Android事件分 ...

  2. Android双向滑动菜单完全解析,教你如何一分钟实现双向滑动特效

    转载请注明出处:http://blog.csdn.net/guolin_blog/article/details/9671609 记得在很早之前,我写了一篇关于Android滑动菜单的文章,其中有一个 ...

  3. 【转】Android双向滑动菜单完全解析,教你如何一分钟实现双向滑动特效

    转载请注明出处:http://blog.csdn.net/guolin_blog/article/details/9671609 记得在很早之前,我写了一篇关于Android滑动菜单的文章,其中有一个 ...

  4. Android 打造编译时注解解析框架 这只是一个开始

    转载请标明出处:http://blog.csdn.net/lmj623565791/article/details/43452969 ,本文出自:[张鸿洋的博客] 1.概述 记得很久以前,写过几篇博客 ...

  5. Android高手进阶篇4-实现侧滑菜单框架,一分钟集成到项目中

    先来看下面的这张效果图: 上面这张效果图是百度影音的,现在在Android上很流行,最初是由facebook自己实现的,而后各大应用有跟风之势,那么这种侧滑效果是如何实现的呢? 网上现在这种侧滑菜单的 ...

  6. Android网络请求框架AsyncHttpClient实例详解&lpar;配合JSON解析调用接口&rpar;

    最近做项目要求使用到网络,想来想去选择了AsyncHttpClient框架开进行APP开发.在这里把我工作期间遇到的问题以及对AsyncHttpClient的使用经验做出相应总结,希望能对您的学习有所 ...

  7. Android实现导航菜单随着ListView联动,当导航菜单遇到顶部菜单时停止在哪里,并且listview仍能滑动

    需求:现要实现一个特殊UI的处理,如下图所示: 该布局的上面是一个“按钮”,中间是一个“空白布局(当然也可以是ViewPager等)”,下面是一个页面的导航菜单,底部是一个ListView. 要求:滑 ...

  8. Android图片载入框架最全解析(一),Glide的基本使用方法

    转载请注明出处:http://blog.csdn.net/guolin_blog/article/details/53759439 本文同步发表于我的微信公众号.扫一扫文章底部的二维码或在微信搜索 郭 ...

  9. 支付宝客户端架构解析:Android 容器化框架初探

    摘要: 本文将介绍支付宝 Android 容器化框架设计的基本思路. 1. 前言 由本章节开始,我们将从支付宝客户端的架构设计方案入手,细分拆解客户端在“容器化框架设计”.“网络优化”.“性能启动优化 ...

随机推荐

  1. 来自XP的道别信

    当你们看到这封信的时候,很抱歉要和大家说再见了! 亲爱的你们,对不起,请不要为我哭泣,请让我们一起度过这最后的时光. 请记住那个在蓝天白云下奔跑的我!

  2. innodb的存储结构

    如下所示,innodb的存储结构包含:表空间,段,区,页(块),行 innodb存储结构优化的标准是:一个页里面存放的行数越多,其性能越高 表空间:零散页+段 独立表空间存放的是:数据.索引.插入缓冲 ...

  3. &lbrack;转&rsqb;在Eclipse中使用JUnit4进行单元测试(高级篇)

    通过前2篇文章,您一定对JUnit有了一个基本的了解,下面我们来探讨一下JUnit4中一些高级特性. 一.高级Fixture 上一篇文章中我们介绍了两个Fixture标注,分别是@Before和@Af ...

  4. MFC和Qt优缺点

    在网上看到的,拿来和大家一起讨论下. 我曾经使用过来开发过软件,我想和大家分享我使用他们时所体会的不同之处. 我并非一个职业作家,这篇文章可能看起来不如专业的杂志和网站上的那么条理清晰.但是,我在这里 ...

  5. eucMenu

  6. &lbrack;jzoj&rsqb;2938&period;【NOIP2012模拟8&period;9】分割田地

    Link https://jzoj.net/senior/#main/show/2938 Description 地主某君有一块由2×n个栅格组成的土地,有k个儿子,现在地主快要终老了,要把这些土地分 ...

  7. vim折叠设置(转载)

    vim折叠设置(转载) set foldmethod=indent "set default foldmethod"zi 打开关闭折叠"zv 查看此行zm 关闭折叠zM ...

  8. JDK源码调试常见错误。

    1.删除不需要的代码,即swing相关的代码 2.执行命令时要将前提环境进入文件夹如下: 起初没有完全执行第一条,因为网上说可以根据需要选择相关的代码,于是就没有删除,以后第一次模仿网上的例子的时候要 ...

  9. Appium&plus;python自动化1-环境搭建

    一.前言 appium可以说是做app最火的一个自动化框架,它的主要优势是支持android和ios,另外脚本语言也是支持java和Python.小编擅长Python,所以接下来的教程是appium+ ...

  10. The operation names in the portType match the method names in the SEI or Web service implementation class&period;

    The Endpoint validation failed to validate due to the following errors: :: Invalid Endpoint Interfac ...