Questions tagged [googleio]

Google I/O (Innovation in the Open) is an annual two-day developer conference held by Google in San Francisco, California. It features technical, in-depth sessions focused on building web, mobile, and enterprise applications with Google and open web technologies including Android, Chrome, Chrome OS, Google APIs, Google Web Toolkit, and App Engine.

49 questions
143
votes
10 answers

Notification Icon with the new Firebase Cloud Messaging system

Yesterday Google presented at Google I/O the new notification system based on the new Firebase. I tried this new FCM ( Firebase Cloud Messaging ) with the example on Github. The icon of the notification is always the ic_launcher despite I have…
52
votes
2 answers

Connecting to GitLab repositories on Android Studio

I'm trying to connect to a GitLab repository using the I/O preview of Android Studio. Does anyone know how to do this/if it is possible yet?
Liz Barrett
  • 587
  • 1
  • 6
  • 8
40
votes
6 answers

Should Java finalizer really be avoided also for native peer objects lifecycle management?

In my experience as a C++/Java/Android developer, I have come to learn that finalizers are almost always a bad idea, the only exception being the management of a "native peer" object needed by the java one to call C/C++ code through JNI. I am aware…
athos
  • 1,271
  • 2
  • 13
  • 23
30
votes
1 answer

Google IO Rest design pattern, finished ContentProvider and stuck on getting the data from the network

After watching the very known video on this topic I decided to go with design pattern B. Using a contentprovider with servicehelper. Basically I have the following files: MyProvider MyDatabase Mycontract In the activity I can now get the…
Sam
  • 2,617
  • 2
  • 18
  • 24
22
votes
5 answers

Navigation Architecture Component - New Resource dialog doesn't have Navigation resource type for navigation graph

New Resource dialog doesn't have Navigation resource type for navigation graph even after adding Navigation Architecture Component dependencies def nav_version = '1.0.0-alpha01' implementation…
9
votes
2 answers

Sliding BottomSheet like google map

Currently i am using bottom sheet from this lib, I want to implement image animation like this google map while sliding of bottomsheet, i want to slide imageview along with it as per the image shown, I have already use this link for help but not…
Mohit Suthar
  • 6,717
  • 8
  • 28
  • 56
9
votes
1 answer

Android Scrolling Effect (Google I/O app)

I'm trying to reproduce the effect of both versions of the Google I/O 2014 app, the first release one that fade while scrolling, and the updated one that stretch when gets near the toolbar I downloaded the source of the app but this effect ins't on…
9
votes
1 answer

Is the rest client app design approach in google io 2010 still up to date?

two years past, there comes fragment, intent service, cursor loader. Is the approach still up to date, or is there any better or mature pattern to design an android rest client, especially compare to the option B (I don't have the privilege to post…
Ren Ji
  • 115
  • 7
8
votes
3 answers

build failed Google io 2018 (iosched)

Download the project of Google IO 2018 (iosched), try to compile it in Android Studio 3.3 Canary 7, also the probe in 3.2 RC1. But I get the following error: error: resource style/TextAppearance.MaterialComponents.BottomNavigationView.Colored (aka…
Juanes30
  • 1,806
  • 2
  • 17
  • 31
8
votes
2 answers

how to implement collapsing image view like Google IO 2015 App using Design Library

How to implement collapsing toolbar layout design like Google IO 2015 using Design Library In Open Source Code of Google IO 2015, it is not implemented using Design Library (CoordinatorLayout, CollapsingToolbarLayout etc) Note : In this the toolbar…
8
votes
4 answers

Calling procrank doesn't work on real devices

according to a google io video about getting to know how much memory you app takes , you can use procrank and read the USS value of it. i've tried it out on emulators (no matter which version i use - from 2.3.x to 4.1) and it works well , but…
android developer
  • 106,412
  • 122
  • 641
  • 1,128
5
votes
2 answers

SQLite transactions with Google IO REST pattern's ContentProvider?

I'm trying to implement the second REST client model presented by Virgil Dobjanschi on this video: http://developer.android.com/videos/index.html#v=xHXn3Kg2IQE This is the high level diagram for the model I'm talking about: I implemented everything…
Flávio Faria
  • 6,370
  • 3
  • 37
  • 57
5
votes
0 answers

Should I use the Google Architecture Components already?

I am starting to build an app from scratch and was deciding on what architecture and tools I should use to start off with since these decisions will typically be affecting us in the long term as well. In Google IO '17, they just released the…
Sid
  • 1,220
  • 2
  • 15
  • 27
5
votes
4 answers

How to change theme of Android Studio for Mac?

I am trying to find out the way to set the black theme to my newly installed android studio but I didn't get success. I have seen a similar question but that is for windows (I am not getting option for settings). Please tell me how to do same in mac…
subhash kumar singh
  • 2,464
  • 7
  • 27
  • 43
4
votes
2 answers

MAGIC number in Android google io 2011 java source

Below code grabbed from google io open source. com.google.android.apps.iosched.util.Lists.java http://code.google.com/p/iosched/source/browse/android/src/com/google/android/apps/iosched/util/Lists.java public static ArrayList
1
2 3 4