一、View组件View组件有几个重要的方法需要关注,也是自定义View经常需要重写的方法。 1、measure作用是测量View组件的尺寸。对应的方法是onMeasure,测量View的宽和高。View和 ViewGroup都有measure方法,但ViewGroup除了测量自身尺寸,还要遍历地调 ...
分类:
移动开发 时间:
2019-12-14 19:13:10
阅读次数:
133
shader"practice/12.14"{ properties { _MainTex("MainTex",2D) = ""{} } Subshader { pass { CGPROGRAM #pragma vertex vert #pragma fragment frag #include " ...
分类:
其他好文 时间:
2019-12-14 17:25:00
阅读次数:
78
ref: these come from youtuber Ali AbdaalPrinciples Generalyou have full control of your lifePareto: focus on 20% leads to 80% gainParkinson's Law: wor... ...
分类:
其他好文 时间:
2019-12-13 19:36:34
阅读次数:
105
使用Picasso组件去下载图片会发现图片宽高会变形不受等比缩放控制,即使设置了图片的 scaleType,可能是对Picasso的api没有用对, Picasso.with(this.activity) .load(AppModel.GetInstance().userAvatarPath) .n ...
分类:
移动开发 时间:
2019-12-11 23:18:59
阅读次数:
226
1、Test Fragment介绍Test Fragment是一种特殊的控制器,和线程组是同级别的。若不使用模块控制器(Module Controller)或Include_Controller调用,Test Fragment是不执行的。 Test Fragment主要是用来进行脚本重用。 应用场景 ...
分类:
其他好文 时间:
2019-12-11 19:48:38
阅读次数:
356
一、应用场景 用户在访问我们的网页时,判断出这个用户手机上是否安装了我们的App,如果安装了则直接从网页上打开APP,否则就引导用户前往下载,从而形成一个推广上的闭环。这里只针对从网页端打开本地APP。 二、APP端配置 <activity android:name=".ui.activity.ZM ...
分类:
移动开发 时间:
2019-12-09 14:17:57
阅读次数:
189
activity: package com.example.onesecond;import androidx.appcompat.app.AppCompatActivity;import android.os.Bundle;import android.view.MotionEvent;impor ...
分类:
其他好文 时间:
2019-12-08 17:35:02
阅读次数:
160
一、问题 二、分析原因 Android 的每一个 Activity 都有个 WindowManager 窗体管理器, 同样,构建在某个 Activity 之上的对话框、PopupWindow 也有相应的 WindowManager 窗体管理器。 因为对话框、PopupWindown 不能脱离 Act ...
分类:
移动开发 时间:
2019-12-08 17:30:07
阅读次数:
140
本文主要分析Activity的启动模式及使用场景。 一、Activity启动模式浅析 1、standard 标准模式,系统默认的启动模式。在启动Activity时,系统总是创建一个新的Activity实例。其缺点是:复用性差、占用内存,当Activity已经在栈顶时,还是会创建实例。 2、singl ...
分类:
移动开发 时间:
2019-12-07 21:11:30
阅读次数:
136