在后台线程中从Android中的Google Drive下载图像

时间:2018-12-01 13:22:39

标签: android google-drive-api android-background

嗨,我的要求是在后台从android的google驱动器中下载图像。 我已经用DriveId和DriveFolder打电话了。

但是我使用下面的代码找到了崩溃数据

public class TweetController
{
    private static IGpioController _gpio = null;
    private const int PIN = 17;

    public TweetController()
    {
        _gpio = GpioController.Instance;
    }

    public void Tweet(int milliseconds){
        var pin = _gpio.OpenPin(PIN);
        pin.SetDriveMode(GpioPinDriveMode.Output); // open the gpio pin before writing or unauthorizedexception occurs
        pin.Write(GpioPinValue.High);
        Thread.Sleep(milliseconds);
        pin.Write(GpioPinValue.Low);
    }
}

所有targetArray,bmp和bufferReader显示损坏的数据。

0 个答案:

没有答案