码迷,mamicode.com
首页 >  
搜索关键字:activity transitions    ( 13861个结果
RK:apk 系统签名
如果一个应用程序想要使用系统的方法,那么就需要给这个应用程序签名,相当于授权。 一.用于设置不同的签名方式build/target/product/security目录中有四组默认签名供Android.mk在编译APK使用:1.testkey:普通APK,默认情况下使用。2.platform:该AP ...
分类:其他好文   时间:2020-07-29 21:59:53    阅读次数:101
[XState] Transient transitions
It uses " " as key, by default, this is the inital state, it often uses with 'cond' import { createMachine, assign, interpret } from "xstate"; const e ...
分类:其他好文   时间:2020-07-29 21:50:22    阅读次数:66
[XState] Delay Transitions
import { createMachine, assign, interpret } from "xstate"; const elBox = document.querySelector("#box"); const elBody = document.body; const assignPoi ...
分类:其他好文   时间:2020-07-29 21:41:14    阅读次数:60
Activity的横竖屏生命周期
接下来,我们补充一下Activity的横竖屏生命周期的变化。 先上代码吧: package com.sunofbeaches.activitylifecircledemo; import android.app.Activity; import android.os.Bundle; import a ...
分类:其他好文   时间:2020-07-26 19:25:44    阅读次数:79
Activity的启动模式
什么是启动模式呢? 我们的Activity是由系统创建的,我们编写xxxActivity直接或者间接继承自Activity,然后我们是没有自己创建的,只是配置了一下即可。 Activity由系统创建启动的时候,有几种模式,我们把这几种模式叫做Activity的启动模式。 Activity启动模式有那 ...
分类:其他好文   时间:2020-07-26 19:17:59    阅读次数:69
intent用法
1.这部分是显示跳转到另一个Activity,这个被跳转的Activ叫做SecondActivity 写法一: Intent intent = new Intent(this,SecondActivity.class); intent.putExtra("account",accountText); ...
分类:其他好文   时间:2020-07-26 15:31:18    阅读次数:105
Laravel 中间件的使用
中间件的作用: 过滤进入应用程序的http请求。 比如,有一个活动,在活动开始前进入活动页则跳转到宣传页 使用步骤: 1 创建中间件 \app\Http\Middleware\Activity.php php artisan make:middleware Activity <?php namesp ...
分类:其他好文   时间:2020-07-16 18:34:15    阅读次数:79
APP内跳转链接用INTENT,但是用系统浏览器,在内部还是要webview
public void clickKefu() { Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.baidu.com")); getActivity().startActivity(intent); } ...
分类:移动开发   时间:2020-07-14 18:09:16    阅读次数:94
Android (争取做到)最全的底部导航栏实现方法 ZZ
本文(争取做到)Android 最全的底部导航栏实现方法. 现在写了4个主要方法. 还有一些个人感觉不完全切题的方法也会简单介绍一下. 方法一. ViewPager + List<View> + PagerAdapter 先看activity_main.xml [html] view plain c ...
分类:移动开发   时间:2020-07-10 15:24:42    阅读次数:109
在视频对象间使用转场gl-transition之regl-transition 使用
视频: 需要安装:gl-transitions、regl-transitio、regl、gl-shader import GLTransitions from 'gl-transitions'; import createREGLTransition from 'regl-transition'; ...
分类:其他好文   时间:2020-07-09 01:12:32    阅读次数:93
13861条   上一页 1 ... 5 6 7 8 9 ... 1387 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!