Flutter writes an iOS style address book

This article mainly introduces how to use the Cupertino style control of Flutter to write an iOS style address book, as well as the problems encountered in the process and solutions. When you write apps with Flutter, you will generally use material style controls. Because material style controls are rich, but they will appear Android flavor on ...

Posted by Shamrox on Tue, 28 Apr 2020 22:09:31 +0200

Python adb test of repeated network disconnection in selfie 62

Case story: during Android App or system testing, it involves abnormal test of network disconnection (in case of no network, whether the App or system prompts normal operation), Networking test (in case of network recovery, whether the App or system prompts to be normal and operates normally). At present, the equipment basically has two kinds ...

Posted by ViperSBT on Sat, 25 Apr 2020 15:42:12 +0200

Nested use of Card View layout in Fragment

Nested Card View layout in Fragment Look at the effect first: The layout file of Fragment is very simple, just a RecyclerView layout <android.support.v7.widget.RecyclerView xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/recycler_view" android:layout_width="match_parent" android:layout_heigh ...

Posted by Serpent7 on Tue, 14 Apr 2020 18:52:52 +0200

Download 1000 apk s (with hands-on materials) in Python UU

When we were testing Android phones, The marketing department wants our testing department to test the compatibility of Top 1000 app s, To ensure that our mobile phones can be installed and run normally with so many easy-to-use app s, And the marketing department provides the apk download address of top 1000 in an application market. How to do ...

Posted by indian98476 on Mon, 06 Apr 2020 10:43:51 +0200

Android solves the overlapping problem of Fragment using replace method

Android solves the overlapping problem of Fragment using replace method Today, when using Fragment for replace switching, I found that there was no response:The layout is like this <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" ...

Posted by mgason on Mon, 06 Apr 2020 05:46:04 +0200

Linux -- install and configure Android SDK

1. Download Android SDK http://tools.android-studio.org/index.php/sdk/ I downloaded: Android sdk_r24.4.1-linux.tgz 2. Unzip Android SDK Copy the Android sdk_r24.4.1-linux.tgz file to a directory in the Linux file system. My directory is / usr/local/ Execute command decompression: tar -zvxf android-sdk_r24.4.1-linux.tg ...

Posted by Alith7 on Mon, 06 Apr 2020 03:55:11 +0200

Implementation of multiple popu display based on openlayer4

                     . You can click the official website to pop up the demo. Based on this logic, you can write a dynamic overlay layer and the dom nodes you need.          &ems ...

Posted by justinma on Sun, 05 Apr 2020 02:43:43 +0200

Source code analysis - start process of PackageManagerService(1)

I. overview 2, PMS initialization 2.1 PMS initialization sequence diagram 2.2 PMS source code Summary Reference resources I. overview background During application installation, it also includes the use of package manager service (PMS); This paper mainly analyzes the initialization process of ...

Posted by joeman3429 on Sun, 05 Apr 2020 01:16:39 +0200

Android data storage - shared perences

SharedPerences Storage mode: key value pair Store data in SharedPreferences Step: Call the edit() method of the SharedPerences object to get a SharedPerences.Editor object. Add data to sharedperence.editor. Call the commit() method to commit the added data. In the click event: SharedPreferences.Editor editor = ...

Posted by suneel on Sat, 04 Apr 2020 04:32:14 +0200

Gradle unified management version

In order to improve the efficiency of project development, some open source frameworks are often introduced in the actual project development process, as well as various modules used in the project. When too many modules are introduced, it is better to provide a unified way to manage version numbers, such as compileSdkV ...

Posted by scott56hannah on Sat, 04 Apr 2020 02:29:33 +0200