All Projects → dust365 → PersonDemo

dust365 / PersonDemo

Licence: other
🔥 一些个人学习中备份的技术方案

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to PersonDemo

Lpr
Android 车牌识别--OCR
Stars: ✭ 139 (+768.75%)
Mutual labels:  ndk
Ffmpeg Android Maker
Contains a script that assembles FFmpeg library for Android
Stars: ✭ 207 (+1193.75%)
Mutual labels:  ndk
SwiftUI-bez
Utilities for working with bezier curves in SwiftUI
Stars: ✭ 80 (+400%)
Mutual labels:  bezier-curves
Cargo Ndk
Compile Rust projects against the Android NDK without hassle
Stars: ✭ 141 (+781.25%)
Mutual labels:  ndk
Mwengine
Audio engine and DSP for Android, written in C++ providing low latency performance in a musical context, supporting both OpenSL and AAudio.
Stars: ✭ 190 (+1087.5%)
Mutual labels:  ndk
Sol2
Sol3 (sol2 v3.0) - a C++ <-> Lua API wrapper with advanced features and top notch performance - is here, and it's great! Documentation:
Stars: ✭ 2,791 (+17343.75%)
Mutual labels:  ndk
Byopen
🎉A dlopen library that bypasses mobile system limitation
Stars: ✭ 133 (+731.25%)
Mutual labels:  ndk
IVBezierPathRenderer
Alternative Path Renderer for Apple MapKit to render path with bezier curve
Stars: ✭ 31 (+93.75%)
Mutual labels:  bezier-curves
Appaddupdate
Android app 增量更新
Stars: ✭ 192 (+1100%)
Mutual labels:  ndk
phaser3-plugin-pathbuilder
Draw and edit Lines, Bezier Curves, Splines at runtime, explore your scene and export your paths to Phaser
Stars: ✭ 67 (+318.75%)
Mutual labels:  bezier-curves
Androidsecurity
Android安全实践
Stars: ✭ 150 (+837.5%)
Mutual labels:  ndk
Hidex Hack
anti reverse by hack dex file
Stars: ✭ 160 (+900%)
Mutual labels:  ndk
Android Disassembler
Disassemble ANY files including .so (NDK, JNI), Windows PE(EXE, DLL, SYS, etc), linux binaries, libraries, and any other files such as pictures, audios, etc(for fun)files on Android. Capstone-based disassembler application on android. 안드로이드 NDK 공유 라이브러리, Windows 바이너리, etc,... 리버싱 앱
Stars: ✭ 250 (+1462.5%)
Mutual labels:  ndk
Stunning Signature
Native Signature Verification For Android (with example)
Stars: ✭ 139 (+768.75%)
Mutual labels:  ndk
bezier-editor
A tool base on HTML5 canvas to create bezier curve like photoshop and then it can be exported as JavaScript code to create an animation path for an HTML element.
Stars: ✭ 21 (+31.25%)
Mutual labels:  bezier-curves
Awesome Android Ndk
🔥 全面深入地掌握NDK技术,成为下一波5G时代的浪潮儿~
Stars: ✭ 138 (+762.5%)
Mutual labels:  ndk
Relinker
A robust native library loader for Android.
Stars: ✭ 2,612 (+16225%)
Mutual labels:  ndk
ZeeArchiver
Zee is an efficient and simple to use Android Archiver and decompressor. It can decompress and compress from-to all the formats supported by the well known 7zip utility. Copyright © 2018 Mahmoud Galal , for support contact me:[email protected]
Stars: ✭ 35 (+118.75%)
Mutual labels:  ndk
bezmouse
Simulate human mouse movements with xdotool
Stars: ✭ 110 (+587.5%)
Mutual labels:  bezier-curves
opencv android setup tutorial
Tutorial on OpenCV for Android with Android Studio
Stars: ✭ 32 (+100%)
Mutual labels:  ndk

PersonDemo

API

我个人一些测试demo的合集

  • 1.NDK的一些测试样例。
  • 2.一些设计模式的自我练习。
  • 3.grovy学习的一些 基础写法。
  • 4.Xml的解析。
  • 5.svg 构造地图,异型区域选中效果变色效果。

image

  • 6.直播的送礼物动画, 可以定义更多颜色的图片,效果更炫

image

  • 7.listView recycleView 侧滑删除效果

image

  • 8.画笔基础paint和自定义控件百分比饼状图效果

GitHub

  • 9 夜间模式

 image

  • 10.RxJava RxPermissions动态申请权限解决权限回调分割代码业务的问题
     RxPermissions rxPermissions = new RxPermissions(MainActivity.this); // where this is an Activity instance
                //不区分拒绝  状态权限的申请
                rxPermissions
                        .request(Manifest.permission.CAMERA,Manifest.permission.INTERNET)
                        .subscribe(new Consumer<Boolean>() {
                         @Override
                          public void accept(Boolean granted) throws Exception {

                                if (granted) {
                                 // All requested permissions are granted
                                  
                                } else {
                                    // At least one permission is denied
                                    Toast.makeText(MainActivity.this, "被拒绝", Toast.LENGTH_SHORT).show();
                                }
                            }
         });
                        
  • 11.android 8.0通知适配 不做是配的话你的通知是不会出现的
     核心代码如下:
    String channelId = "chat";
           String channelName = "聊天消息";

           //重要等级
           int importance = NotificationManager.IMPORTANCE_HIGH;
           createNotificationChannel(channelId, channelName, importance);



           channelId = "push";
           channelName = "推送消息";
           importance = NotificationManager.IMPORTANCE_DEFAULT;
           createNotificationChannel(channelId, channelName, importance);
           
  • 12.自定义 CoordinatorLayout   Behavior行为  实现各种炫酷行为

    image

    <TextView
        android:id="@+id/xuanfu_tv"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:text="悬浮按钮"
        android:textColor="#ff33ff"
        app:layout_behavior="com.example.dust.persondemo.behavior.MyBehavior"
        app:layout_anchor="@id/appBar"
        app:layout_anchorGravity="start|bottom"
        />

  • 13 AidL的相关使用demo 具体的请查看demo的项目结构,里面涉及person 自定义数据的传递和基本数据类型的传递

过时的方法

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].