hello-gl2项目是用来展示如何用jni的方式来使用OpenGL ES 2.0。所谓JNI的方式,是以Java代码为主,在Java代码中调用C++代码去实现功能。与之相对的,可以以C++代码为主,在C++代码中调用Java代码,这种方式笔者称之为NativeActivity方式(因为它需要用到NativeActivity类)。 这两种方式在显示流程上有区别。JNI方式需要在Java...
todo-mvp 这个版本的应用叫做todo-mvp , 并为项目中的其他实例提供依据。这个实例旨在: 在不使用任何其他框架的前提下,提供一个基本的Model-View-Presenter(MVP)架构。 作为与本项目中其他项目比较、对照的参考依据。 备注:本项目中所有分支代码库,使用如下命名惯例,来区分View 对象以及MVP 视图。 "Android View" ...
A collection of quickstart samples demonstrating the Google APIs for Android and iOS Java 3.1k 2.5k android-vision Public Deprecated: The Mobile Vision API is now a part of ML Kit: Check out this repo: Java 2.9k 1.7k android-testing-templates Public Java 2k 303 unity-jar-resolver...
A repo containing samples tied to new functionality in each release of Google Chrome. - GoogleChrome/samples
googlesamples之easypermissions使用 1.app/build.gradle dependencies { compile 'pub.devrel:easypermissions:0.3.0' } 1. 2. 3. 2.在Activity / Fragment实现PermissionCallbacks,回调方法: @Override public void onPermissionsGranted(int requestCode, List<String> list) {...
#define GOOGLETEST_SAMPLES_SAMPLE3_INL_H_ #include <stddef.h> template <typename E> // E is the element type class Queue; template <typename E> // E is the element type class QueueNode { friend class Queue<E>; public: const E& element() const { return element_; } ...
//如果n是素数返回true bool IsPrime(int n); #endif // GTEST_SAMPLES_SAMPLE1_H_ sample1.cc //一个用来展示如何应用Google C++测试框架的简单程序示例 #include "stdafx.h" #include "sample1.h" // Returns n! (the factorial of n). For negative n, n! is defined to be 1. //返回n!(...
-Google Mobile Services是谷歌应用程序和API的集合,有助于支持跨设备的功能。Samples是Gmail、Chrome、...
https://github.com/googlesamples/easypermissions ,点击底部「阅读原文」直达。 一点思考 就在《》文章里,我对Android 6.0 运行权限做了个简单封装,但没有考虑到Fragment使用和勾上不再询问应该去setting,还一个问题,封装只是针对单个权限,推荐官方easypermissions库,来看看easypermissions是如何解决我未考虑的问题。
#ifndef GTEST_SAMPLES_SAMPLE1_H_ #define GTEST_SAMPLES_SAMPLE1_H_ // 阶乘 // Returns n! (the factorial of n). For negative n, n! is defined to be 1. // 返回n!(n的阶乘)。对于负n,n!定义为1。 int Factorial(int n); // 判断是否为质数// Returns true iff n is a prime number...