Apk error reported for Android N and above

Apk error in Android N installation android.os.FileUriExposedException: file:///storage/emulated/0/download/1558506119385taiheApp.apk exposed beyond app through Intent.getData() Because Android 7.0 added "private directory restricted access" "Restricted access to private directory" means that in Android 7.0, in order to ...

Added by turtleman8605 on Thu, 07 Nov 2019 01:01:03 +0200

Follow up knowledge points of x5 open source library

Catalogue introduction 01. Introduction to basic use catalogue 1.0.1 common basic introduction 1.0.2 Android calls Js 1.0.3 Js calls Android 1.0.4 WebView.loadUrl(url) process 1.0.5 js call timing analysis 1.0.6 how to clear cache data 1.0.7 how to use DeepLink 1.0.8 application opened as a third-party browser 02. Introduction to optimizati ...

Added by vapokerpro on Mon, 04 Nov 2019 13:51:17 +0200

How to deal with the banned pages in wechat? Restore the blocked webpage to visit from wechat normally with 36 API

Today, a backstage colleague asked me: why do I open the prompt "stop visiting this webpage" when sharing and downloading links from the App to wechat friends? But my links can be opened in the browser. So I tried it in WeChat public number and found that it could not be downloaded. Through google, we found that wechat blocked the do ...

Added by Rado001 on Sun, 03 Nov 2019 19:57:47 +0200

Android LocationManager obtains longitude and latitude information

Article directory I. positioning introduction Two, code 1. Instantiate LocationManager 2. Processing runtime permissions 3. Start request location 4. Positioning monitor 5. Update positioning III. Demo download I. positioning introduction You can also use Android without using the third-party map SDK Its own ...

Added by bunner bob on Sun, 03 Nov 2019 02:22:17 +0200

python crawler learning basic course, grab beautiful pictures in batch!

python's grab function is actually very powerful, of course, it can't be wasted, hehe. Now let's share with you an automatic grab program for beauty pictures written by python! The urllib2 module and the regular expression module are used. The code is as follows: 1 use python Grab beauty pictures in batch 2 3 #!/usr/bin/env python ...

Added by packland on Sat, 02 Nov 2019 15:19:34 +0200

FFmepg compilation and CMake integration to Android

FFmepg compilation and integration to Android Compile file modification Package so execution Integration to Android Preparing for compilation Compiled with ubuntu system, the system version does not affect apt-get update apt-get install yasm apt-get install pkg-config Insta ...

Added by TechMistress on Sat, 02 Nov 2019 13:34:05 +0200

Flutter learning notes - basic components

Make complaints Last week I watched the basic components of flutter, mainly the videos and official documents of b station with fat technology. After reading them, I thought it would be better to learn dart grammar first and then learn it. It's hard to have an exam tomorrow. I have to review t ...

Added by captain_scarlet87 on Fri, 01 Nov 2019 01:09:34 +0200

Packaging and unpacking of [android]system.img file

Two formats of 1: system.img system2_0.img: Linux rev 1.0 ext4 filesystem data, UUID=57f8f4bc-abf4-655f-bf67-946fc0f9f25b (extents) (large files) system1_0.img: Android sparse image, version: 1.0, Total of 393216 4096-byte output blocks in 1765 input chunks. //The above two formats are respectively: ext4 filesystem ...

Added by artfuldrone on Thu, 31 Oct 2019 22:08:04 +0200

Android skin changing alternative solution

https://www.jianshu.com/p/b0253de8ac04 This is an article about three popular skin changing schemes. It's very good, but it's not suitable. Here's the way I think about it and happen to produce it: The first is about text color change of TextView: Because our APP uses one font in a unified way, the customized TextVie ...

Added by Roman Totale on Thu, 31 Oct 2019 09:49:18 +0200

Use and understanding of surface view

Drawing interface stuck has always been the pain of Android developers. Today, let's look at surface view, known as sub thread drawing, double buffering mechanism, no stuck. SurfaceView has the following features: 1 have independent drawing surface; 2. We need to dig a hole in the host window t ...

Added by bob_dole on Thu, 31 Oct 2019 07:01:14 +0200