Wechat Widget Widget Program Actual Chapter - Drop-Down Refresh and Load More

Hello, everyone, look at this title is not a bit strange, you look forward to the micro-program actual combat chapters - e-commerce (3) did not appear, I think so, because there are many content in e-commerce, how I just named as one or two or three, it is not convenient for you to see the content of each article, so I changed the way of namin ...

Added by [n00b] on Sat, 22 Jun 2019 01:32:56 +0300

Xml parsing - Xml PullParser parsing example analysis

Xml parsing - Xml PullParser parsing example analysis XmlPullParser is an event-driven approach to parsing XML files. Because Android system has integrated this part, and the parsing part of XML file in Android framework is basically processed in this way, it is necessary for us to learn and understand the parsing process of XmlPull Parser a ...

Added by Fredix on Sat, 22 Jun 2019 00:50:17 +0300

Simple web Online Editor Based on Contentditable Attribute

There are two ways to implement web online editor: one is based on iframe, the other is based on contenteditable. Setting the contenteditable attribute for the element allows editability within the element's area. <div class="textareaByDiv" contenteditable></div> Set the css property of the editable area, which is written in le ...

Added by NYSiRacer on Fri, 21 Jun 2019 05:12:58 +0300

A Simple Course for the Development of Wechat Programs

1. Get the AppID of the Wechat applet (Note that the AppID here is a special id for the widget. You can see it in the widget public number widget, without some functions of the AppID will be limited!) Login https://mp.weixin.qq.com In the "Settings" - "Developer Settings" of the website, you can see the AppID of the Wechat a ...

Added by treybraid on Fri, 21 Jun 2019 04:34:48 +0300

HTML uses Canvas to realize bullet screen function

HTML uses canvas to realize bullet screen function brief introduction Recently, when doing big homework, we need to make a bullet screen player. Learn from other people's source code and re-implement it yourself. The demonstration is as follows. The main functions are as follows: Send the barrage Setting the colour, speed and type of ...

Added by mrmachoman on Fri, 21 Jun 2019 01:34:08 +0300

The easiest to understand series of custom View principles (1)

From here Preface Custom View principles are the foundation Android developers must understand. Before you can learn about custom View s, you need to have a certain knowledge base; This article will provide a comprehensive overview of all the knowledge bases in Custom View. 1. Classification of Views ViewViewViews are divided into two m ...

Added by wholein1 on Thu, 20 Jun 2019 23:56:36 +0300

Introduction and in-depth understanding of css

1 CSS Introduction 1.1 Introduction html: responsible for the structure of web pages css: responsible for the beauty (style) of web pages 1.2 Experience <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; cha ...

Added by PBD817 on Thu, 20 Jun 2019 23:29:09 +0300

Android Goethe Map Filling

More and more maps are used in the project. Maps are used everywhere from the O2 O mall, travel, transportation, bicycle and so on. The following are several common function points used in the integration of Golden Map in many projects, as well as filling holes. Location function Using the latest Sdk Android_Map3D_SDK_V5.1.0_20170518.jar There ...

Added by Saethyr on Thu, 20 Jun 2019 00:01:11 +0300

MyBatis Learning Summary (I) - MyBatis Quick Start

github synchronous update Blog Synchronization Updates Synchronized Updating of Brief Books Reference address Project address: Portal 1. Create table structure create database mybatis; use mybatis; CREATE TABLE users(id INT PRIMARY KEY AUTO_INCREMENT, NAME VARCHAR(20), age INT); INSERT INTO users(NAME ...

Added by phigga on Wed, 19 Jun 2019 20:58:53 +0300

Android Timer, CountDownTimer, Alarm Manager

First, Timer TimerTask Reference resources Timer in Java and TimerTask in Android In development, we sometimes have the need to perform a task at regular intervals. For example, controls on the UI need to change over time, and we can use Java's timer toolkit, timer and TimerTask. Timer is a common class, which has several import ...

Added by roberts78 on Wed, 19 Jun 2019 00:51:44 +0300