全文搜索
标题搜索
全部时间
1小时内
1天内
1周内
1个月内
默认排序
按时间排序
为您找到相关结果2,857,819个

Android动画系列之帧动画和补间动画的示例代码_Android_脚本之家

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 <?xml version="1.0" encoding="utf-8"?> <translate xmlns:android="http://schemas.android.com/apk/res/android" android:duration="1200" android:startOffset ="0" android:fillBefore = "true" android:fillAfter = "false" android:fillEnabled= "fa...
www.jb51.net/article/1964...htm 2025-1-8

安卓android4.4.4更新了什么?Android4.4.4新系统有哪些变化?_安卓手机...

有些朋友还不是很了解安卓android4.4.4更新内容,那么就可以来看下文哦~一起来了解Android4.4.4这个新系统有哪些变化吧。 之前安卓在OpenSSL密码库发现了严重漏洞,可能会影响用户数据传输加密的安全性。安卓项目经理Sascha Prueter在Google+上表示,安卓4.4.4更新主要解决了CVE-2014-0224的问题,CVE-2014-0224是通用漏洞和...
www.jb51.net/shouji/2307...html 2025-1-13

Android自定义View实现带音效和震动的SeekBar_Android_脚本之家

这篇文章主要为大家详细介绍了Android如何自定义View实一个带音效和震动的SeekBar,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下+ 目录 脚本之家 / 编程助手:解决程序员“几乎”所有问题!脚本之家官方知识库 → 点击立即使用 需求描述 当我们需要做一些带校准的功能时,需要调节一些值来反映校准...
www.jb51.net/program/318427e...htm 2025-1-14

Android四大组件之Activity详细介绍_Android_脚本之家

android:onClick="MainStart2" android:text="带回调启动"/> Activity中 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 package com.example.activity_01; import android.app.Activity; import android.os.Bundle; import android.view.View; import android.widget.Toast; public class MainAct...
www.jb51.net/article/2332...htm 2025-1-13

Android使用ContentProvider实现查看系统短信功能_Android_脚本之家

android:layout_weight="1" android:text="查看短信" android:onClick="show" android:layout_width="match_parent" android:layout_height="0dp"></Button> </LinearLayout>Sms.java1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 ...
www.jb51.net/article/2291...htm 2024-12-25

Android开发InputManagerService创建与启动流程_Android_脚本之家

14 15 16 17 18 19 20 21 22 23 24 25 // com_android_server_input_InputManagerService.cpp NativeInputManager::NativeInputManager(jobject contextObj, jobject serviceObj, const sp<Looper>& looper) : mLooper(looper), mInteractive(true) { JNIEnv* env = jniEnv(); // 1.保存上层的InputMan...
www.jb51.net/article/2665...htm 2025-1-11

Android自适应不同屏幕大小的全部方法_Android_脚本之家

14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent"> <LinearLayout android:layout_width="match_parent" an...
www.jb51.net/article/1399...htm 2025-1-14

Android中FileProvider的各种场景应用详解_Android_脚本之家

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 <activity android:name=".MainActivity" android:exported="true"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity...
www.jb51.net/article/2619...htm 2025-1-13

Android Studio实现简易计算器App (Java语言版)_Android_脚本之家

本文实例为大家分享了Android Studio实现简易计算器App的具体代码,供大家参考,具体内容如下 效果演示 布局文件 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54...
www.jb51.net/article/2487...htm 2025-1-14

Android入门之Fragment嵌套Fragment的用法详解_Android_脚本之家

注意此处的:<FrameLayout android:id="@+id/fg_petthecat"这边就是用来显示孙子Fragment-pet_the_cat.xml的。 于是我们来看pet_the_cat.xml。 pet_the_cat.xml 它是用一个Fragment来加载的。 先来看它的前端layout。 pet_the_cat.xml的layout 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18...
www.jb51.net/article/2743...htm 2025-1-14