Android Drawer Layout High Imitation QQ5.2 Two-way Side Slide Menu

Original address: http://blog.csdn.net/lmj623565791/article/details/41531475/ For reprinting, please indicate the source: http://blog.csdn.net/lmj623565791/article/details/41531475 This article is from: [Zhang Hongyang's blog] 1. Overview I wrote one before. Android High Imitation Q QQ5.0 Side Slide Menu Effect Custom Control Invasi ...

Posted by Whyme on Thu, 11 Jul 2019 16:07:45 -0700

Basic summary of javascript

1. Finding Scope Where the current function is defined, its superior scope is who, and it has nothing to do with where the function is executed. //Scope examples var num = 12; function fn(){ var num = 120; return function(){ console.log(num); } } var f = fn(); f();//->120 (function(){ var num = 1200; f();//->1 ...

Posted by rei on Thu, 11 Jul 2019 15:17:59 -0700

Base Class of Android Open Source Project FakeWeather

Then yesterday's topic, yesterday talked about how to achieve "reading" and "welfare" two modules of the general realization of ideas. Today we will do some basic work. First of all, I must have created the package. Below is my project package structure. Then, let's start with BaseActivity and BaseFragment. The code is ...

Posted by jnoun on Mon, 08 Jul 2019 17:48:29 -0700

ViewPager Details (3) - - Similarities and Differences between PagerTabStrip and PagerTitleStrip in Adding Title Bars

ViewPager Details (3) - - Similarities and Differences between PagerTabStrip and PagerTitleStrip in Adding Title Bars 2014-08-12 22:00 60 636 people read comment(33) Collection Report This article has been included in: Classification: 5. andriod Development (149) Author's Similar ArticlesX Copyr ...

Posted by DonelleJenae on Mon, 08 Jul 2019 12:17:21 -0700

Android Imitation Fish Home Page

Put an effect map first. demo.gif Demo is based on MVVM mode. We welcome your criticism and correction.Among them, Banner's infinite rotation uses PageSnapHelper, and subsequent RecycleView can also achieve more effects similar to ViewPage.Project Links: https://github.com/ly85206559/demo4FishIt would be best if it could help you. You can see ...

Posted by paran0id Dan on Sat, 06 Jul 2019 16:06:36 -0700

Summary of Editable Input Box Operation

In my spare time, to deepen my understanding of the basics, I have a message board: input box.Say less and get to the point.The crude effect is as follows: Download Code): Define requirements You can enter text and insert emoticons. Compatibility: IE and standard browsers 2. Detailed design Depending on our needs, we can generally thi ...

Posted by falian on Sat, 06 Jul 2019 15:10:27 -0700

Comparative Analysis of Leak Canary and Matrix Resource Canary in Goose Farm

Recommended reading: Drip Booster Mobile App Quality Optimizing Framework-Learning Tour I Android module Api walkthrough Glide Analysis from Different Perspectives (I)   Leak Canary is an open source memory leak detection artifact of Square company based on MAT. Leak Canary automatically displays leak information when a memory leak occurs. ...

Posted by glitch003 on Fri, 05 Jul 2019 11:00:36 -0700

Implementing immersive status bar with toolbar

Design sketch: The first one is about three steps to modify the background color of the status bar, which can not be realized dynamically and has too many limitations. It can be implemented with toolbar. Now the mainstream APP, the home page is in the form of an activity + multiple fragment s, in addition to the personality center ...

Posted by jumpfroggy on Thu, 04 Jul 2019 15:22:50 -0700

Continue RxBus--RxJava Implementing Event Bus

Hello, everyone. My name is Stone. Preface Reasons for Event Bus: In order to make communication between components simple, deep decoupling!To put it bluntly is to cut off the direct link between components and adopt the publish/subscribe mode (observer mode) I believe many of us have used it. EventBus perhaps Otto To be the event bus in ou ...

Posted by Daniello on Thu, 04 Jul 2019 14:29:05 -0700

The Way to Android Framework: The Use of ButterKnife

I. Introduction: ButterKnife is a relatively easy-to-understand open source framework for annotations. 1. Powerful View binding and Click event handling functions, simplify the code and improve development efficiency; 2. Handle the ViewHolder binding problem in Adapter conveniently; 3. The running time will not affect the efficien ...

Posted by pineapple1 on Thu, 04 Jul 2019 11:53:13 -0700