注意:这个工具是用来导入到中国区节点的
依赖: gevent、requests
Ubuntu 可以
# apt-get install python-gevent python-requests
| /** | |
| * @param parameter - this is string that contains parameters for Http POST | |
| * @param request - old Request | |
| * @return - new {@link Request} with additional parameters | |
| * */ | |
| public static Request interceptRequest(@NotNull Request request, @NotNull String parameter) | |
| throws IOException { | |
| ByteArrayOutputStream baos = new ByteArrayOutputStream(); |
| package com.example.mediasessioncompat; | |
| import android.app.PendingIntent; | |
| import android.content.Context; | |
| import android.content.Intent; | |
| import android.support.v4.media.MediaDescriptionCompat; | |
| import android.support.v4.media.MediaMetadataCompat; | |
| import android.support.v4.media.session.MediaButtonReceiver; | |
| import android.support.v4.media.session.MediaControllerCompat; | |
| import android.support.v4.media.session.MediaSessionCompat; |
Questions? Comments?
https://twitter.com/lnikkila
Handles clicks and long presses out of the box.
| package com.eatfirst.android.ui.custom; | |
| /** | |
| * Copyright 2015 Bartosz Lipinski | |
| * | |
| * Licensed under the Apache License, Version 2.0 (the "License"); | |
| * you may not use this file except in compliance with the License. | |
| * You may obtain a copy of the License at | |
| * | |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| package com.example.remotecontrolclient; | |
| import android.app.Service; | |
| import android.content.ComponentName; | |
| import android.content.Context; | |
| import android.content.Intent; | |
| import android.graphics.BitmapFactory; | |
| import android.media.AudioManager; | |
| import android.os.IBinder; | |
| import android.support.v4.media.MediaMetadataCompat; |
| <?xml version="1.0" encoding="utf-8"?><!-- | |
| ~ Copyright (C) 2015 The Android Open Source Project | |
| ~ | |
| ~ Licensed under the Apache License, Version 2.0 (the "License"); | |
| ~ you may not use this file except in compliance with the License. | |
| ~ You may obtain a copy of the License at | |
| ~ | |
| ~ http://www.apache.org/licenses/LICENSE-2.0 | |
| ~ | |
| ~ Unless required by applicable law or agreed to in writing, software |
| def readLocalProp () { | |
| Properties properties = new Properties() | |
| properties.load(project.rootProject.file('local.properties').newDataInputStream()) | |
| return properties | |
| } | |
| def invokeNDKBuild (debuggable, cleaning) { | |
| def properties = readLocalProp() | |
| def ndkDir = properties.getProperty('ndk.dir') | |
| def osName = System.getProperty('os.name').toLowerCase() |