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

Android实现下载进度条效果_Android_脚本之家

Android实现下载进度条效果更新时间:2021年06月16日 14:47:42 作者:h2coder vivo商店在下载应用的时候,底部有一个圆角矩形的下载进度条,中间有一个进度文字,而且进度和文字交汇的时候,交汇部分的文字会从蓝色边为白色,会有一种一半白色字,一半蓝色字的效果。本文将仿照该样式实现一个...
www.jb51.net/article/2150...htm 2025-2-6

Android ConstraintLayout约束布局使用详解_Android_脚本之家

14 15 16 17 18 19 20 21 22 23 <?xml version="1.0" encoding="utf-8"?> <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" andro...
www.jb51.net/article/2663...htm 2022-11-1

Android Studio 实现九宫格功能_Android_脚本之家

14 15 16 17 18 19 20 21 22 23 24 25 26 27 <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent"> <...
www.jb51.net/article/1857...htm 2025-2-9

Android实现记事本功能(26)_Android_脚本之家

android:textSize="13sp"/> </RelativeLayout> <ListView android:id="@+id/lv_content" android:layout_width="match_parent" android:layout_height="wrap_content"></ListView> </LinearLayout> activity_add_content.xml内容: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23...
www.jb51.net/article/1043...htm 2025-2-11

Android Studio实现简单的通讯录_Android_脚本之家

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 55 56 57 58 59 package com.example.test; import androidx.appcompat.app.AppCompatActivity; import android.content.Context; import android.conten...
www.jb51.net/article/2107...htm 2025-1-31

Windows下React Native的Android环境部署及布局示例_Android_脚本之家

genymotion(如果是使用真机或者Android Studio自带的模拟器,可以选择不装) NVM(node版本控制器,需要node4.0以上版本) 以上配置不是必须,可自行选择适合自己的环境 配置踩坑记录genymotion这里选择genymotion模拟器来讲解,也会提一下Android Studio自带的模拟器的一些注意点,使用真机的朋友可跳过这段。genymotion的安装有2种...
www.jb51.net/article/807...htm 2024-7-1

Android中的深度链接技术实战_Android_脚本之家

14 15 16 17 18 19 20 21 22 23 24 25 <activity android:name=".MainActivity" android:exported="true" android:launchMode="singleTask"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> <intent...
www.jb51.net/article/2418...htm 2025-2-4

Android布局ConstraintLayout代码修改约束及辅助功能_Android_脚本之家

这篇文章主要为大家介绍了Android布局ConstraintLayout代码修改约束及辅助功能示例详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪+ 目录 ChatGPT & MidJourney 绘图免魔法无限使用【 点击领取】实践过程代码修改约束1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 ...
www.jb51.net/article/2632...htm 2025-2-11

Android软键盘遮挡的四种完美解决方案_Android_脚本之家

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 <com.jereh.overidelinearlayout.LinearLayoutView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:id="@+...
www.jb51.net/article/947...htm 2025-2-8

深入了解Android中GestureDetector的定义与使用_Android_脚本之家

Android中的GestureDetector 可以使用 MotionEvents 检测各种手势和事件,非常的好用。本文将会通过几个具体的例子来讲解一下GestureDetector的具体使用方法,需要的可以参考一下+ 目录 GPT4.0+Midjourney绘画+国内大模型 会员永久免费使用!【 如果你想靠AI翻身,你先需要一个靠谱的工具!】 简介 之前我们介绍了GestureDetector...
www.jb51.net/article/2738...htm 2025-2-11