首页 > 其他分享 >GitHub Android 热门项目

GitHub Android 热门项目

时间:2022-12-10 21:47:23浏览次数:66  
标签:GitHub Java iOS 热门 framework Android android

本文地址


目录

目录

GitHub 热门项目

如何查看 Android 热门项目

进入 GitHub 专题页面 https://github.com/topics,选择 android topic:

https://github.com/topics/android

如果没找到你想要的主题,可以直接访问链接 https://github.com/topics/[主题名称]

可以按照 stars 数量、更新时间等多个维度排序

如何查看 GitHub 排行榜

进入 GitHub 搜索页面 https://github.com/search,将搜索条件设为:

stars:>50000

搜索结果即为:stars 大于 50000 的项目,并且会按照 stars 数量排序

Android 热门项目

来自 https://github.com/topics/android

scrcpy

73.94 k

Display and control your Android device

material-design-icons

42.36 k

Material Design icons by Google

retrofit

40.86 k

A type-safe HTTP client for Android and the JVM

okhttp

40.49 k

Square’s meticulous(精心打造的) HTTP client for the JVM, Android, and GraalVM.

architecture-samples

36.17 k

A collection of samples to discuss and showcase different architectural tools and patterns for Android apps.

一系列示例,用于讨论和展示适用于 Android 应用的不同架构工具和模式。

fastlane

36.1 k

The easiest way to automate building and releasing your iOS and Android apps

自动化构建、发布 iOS 和 Android 应用程序的工具

MPAndroidChart

35.88 k

A powerful

标签:GitHub,Java,iOS,热门,framework,Android,android
From: https://www.cnblogs.com/baiqiantao/p/16972385.html

相关文章

  • webtest mobile + android apk test
    s常见的apk专项测试,主要有几类(主要指项目中经常用到的)1、稳定性2、安全性3、兼容性4、版本升级5、流量测试6、Crash问题(死机);7、设备兼容问题;8、流量占用率的问题;9、App在......
  • Android SDK下载和安装
    下载地址:​​https://www.androiddevtools.cn/​​​直接解压后,打开SDKManager.exe选择需要安装的包配置环境变量:控制台输入adbversion查看是否安装成功......
  • 如何使用Github创建一个仓库
    创建仓库(对我来说,这是新建)点击这里的Createrepository:进入到这样一个界面:其中,Repositoryname,是我们即将创建完成的仓库名称;而这里:需要填写的是对仓库的相关描述,当然......
  • javascript:微信扫一扫下载android应用的引导页
    一,js代码:<html><head><metacharset="utf-8"/><title>测试</title></head><bodystyle="padding:0px;margin:0px;"><!--background--><divsty......
  • 自然语言处理nlp小姜机器人(闲聊) nlp_xiaojiang-996station GitHub鉴赏官
    OverridetheentrypointofanimageIntroducedinGitLabandGitLabRunner9.4.Readmoreaboutthe extendedconfigurationoptions.Beforeexplainingtheav......
  • 浏览器无法访问Github
    好久不见!天气越来越冷了,人生信号越来越不好,已经出现雪花点儿了。bug笔记持续更新中~问题:浏览器打不开​​github.com/​​害~碰到点问题!浏览器最近打不开​​github.com/​......
  • 《“透视”个人大数据》项目开发小记 --(三)Android APP 开发(2)自定ImageView
       在以图片为主的项目数据表界面中,普遍的应用了自定义的ImageView,这增强了图片的表现力。这里以“事件表”介绍一个自定ImageView的实例。这个自定ImageView通过cli......
  • Android中显示网页的多种方式
    在android中显示页面主要有两种方式,一种是在Activity里面直接显示网页,另一种是调用浏览器显示网页。方式不同,使用的方法也不同,下面我们分别讲解。一、在Activity里面直接显......
  • Android常用代码集合
    这篇文章主要记录一些常用的一些代码段,方便以后查阅,不断更新中。1:调用浏览器,载入某网址123Uriuri=Uri.parse("​​http://www.android-study.com​​");Intenti......
  • androidHandler讲解
    一、Handler的定义:主要接受子线程发送的数据,并用此数据配合主线程更新UI.解释:当应用程序启动时,Android首先会开启一个主线程(也就是UI线程),主......