Questions tagged [nexus-7]

The Nexus 7 is the first tablet by Google in the Nexus line of devices.

The Nexus 7 is a tablet computer designed and developed by Google in conjunction with Asus. It is the first tablet in the Google Nexus series, a line of consumer devices implementing the Android operating system and built by an original equipment manufacturer (OEM) partner.

Nexus 7 (2012):

  1. 7" WXGA (1280x800) Screen
  2. Nvidia Tegra 3 quad-core graphics chip
  3. 1 GB of RAM
  4. 8 or 16 GB of internal storage.

Incorporating built-in Wi-Fi and near field communication (NFC) connectivity, it is marketed as an entertainment device with integration with Google Play, serving as a platform for multimedia consumption of e-books, television programs, films, games, and music. The tablet was the first device to have shipped with Android version 4.1, nicknamed "Jelly Bean".

Nexus 7 (2013):

  1. 7" LED Backlight WUXGA (1920x1200) Screen
  2. Qualcomm® Snapdragon™ S4 Pro 8064 Quad-Core, 1.5 GHz
  3. 2 GB of RAM
  4. 16 or 32 GB of internal storage.
261 questions
1
vote
1 answer

Android Bluetooth Low Energy: Not hearing advertisements on some devices

I have a device that is emitting Bluetooth Low Energy (BLE) advertisements and a Nexus 7 (2013) Android tablet that should hear those advertisements. However, it cannot hear the BLE advertisements from my device and appears not to hear any BLE…
gardarh
  • 3,084
  • 2
  • 28
  • 31
1
vote
4 answers

Android: Google Fused Location doesn't work while location is turned off

getLastLocation() returns NULL while phone location is Off on my 6.0 Nexus 7 tablet, but it works without GPS on another device. Why is it so and any way to solve it? I want to keep GPS off and just use network to get location. Below is the class I…
1
vote
2 answers

Webgl supported but not enabled on Nexus 7

I have been trying to write an Android application which uses a Three.js WebGL renderer. For some reason, constructing the WebGL renderer caused an error on my Nexus 7, and after further investigation, I discovered that my device didn't seem to do…
gameninja
  • 61
  • 8
1
vote
2 answers

how to keep android display from sleeping or dimming while plugged in?

i have some nexus 7's (2013) that are not rooted and have api 6.0.1 with may security patches. i have stay awake on in developer options. i have everything off under the display settings except for sleep (which can not be turned off and is set to 30…
Ray Tayek
  • 9,841
  • 8
  • 50
  • 90
1
vote
2 answers

Nexus 7 Layout Size (Nexus 7 7.02")

I'm learning Android development and tried several simple apps using Android Studio. One issue I couldn't figure out is about the Nexus 7 screen (layout) size. Here is what I did: Use Andriod Studio (latest version: 2.1.1) to create a new project…
Nathan
  • 128
  • 3
  • 12
1
vote
3 answers

Android Marshmallow 6.0, opening gallery via intent says No apps to perform the action

I am trying to open gallery on Nexus 7 with Android 6.0. It does not have in built gallery, but it does have the Google Photos app. I am using the following code to open the gallery : Intent i = new…
intellignt_idiot
  • 1,962
  • 2
  • 16
  • 23
1
vote
0 answers

Moto 360 GoogleApiClient onconnectionFailed() : INTERNAL_ERROR (errorCode : 8)

I'm developing an Android and Android Wear app where I use GoogleApiClient to communicate between Moto 360 smartwatch an Nexus 7 tablet. Everything worked fine, until now. When I install my application to my smartwatch, the connection to the Google…
anitteb
  • 762
  • 10
  • 21
1
vote
5 answers

android studio 1.5.1, marshmallow no internet access detected won't automatically reconnect

I'm having this problem on some 2013 Nexus 7's. got some code to work (please see below). package acme.wifi; import android.content.*; import android.net.wifi.*; import android.os.Bundle; import…
Ray Tayek
  • 9,841
  • 8
  • 50
  • 90
1
vote
1 answer

Nexus devices not recognized by adb

Adb does not recognize my Nexus devices but does recognize my Samsung Tab 2 7 inch tablet. C:\Users\Allen Edwards\AppData\Local\Android\sdk\platform-tools>adb devices List of devices attached c0808e004a14c2f device The device recognized…
Allen Edwards
  • 1,488
  • 1
  • 27
  • 44
1
vote
1 answer

Nexus 7 stuck on google's logo after flashed the building of AOSP

This is my first time to flash the AOSP building on the device. I just followed the google's instructions to download and build the Android source code. Since I have a Nexus 7 (2013), so I chose the target to "aosp_flo-userdebug" before starting to…
popo
  • 435
  • 1
  • 6
  • 13
1
vote
2 answers

Android Device chooser not recognizing my Nexus 7

I am using my Mac for android development and have used my Nexus 7 for almost a year now as my go-to device for testing my apps. Recently my device started getting unrecognized by computers even in windows as well in my Mac. For Eclipse's Android…
1
vote
1 answer

Scale Relative Layout

I need to scale Relative Layout to size of device. Relative Layout have width = 2048 / height 6195. Then in my activity I have width of device: Display display = getWindowManager().getDefaultDisplay(); Point size = new Point(); …
sofi37
  • 323
  • 1
  • 4
  • 15
1
vote
1 answer

App not shown in Play-Store for Nexus 7 After SMS Permission added

My published android app was being shown in search result of play-store in Nexus 7. But ever since I added the SMS receive & read permissions to the app & uploaded the new version, I can't see it in the search result from any Nexus 7(don't having…
Touhid
  • 731
  • 1
  • 10
  • 25
1
vote
4 answers

Android Studio is not detecting Nexus 7

I am using Android Studio 1.1.0 under Windows 8.1 Pro and trying to connect my Nexus 7 running Android version 5.1. I am following both Lynda tutorial and looking at android developers tutorials but was not able to find what's wrong. The device is…
gotqn
  • 42,737
  • 46
  • 157
  • 243
1
vote
1 answer

How to File Save (Screenshot) Locally in Java?

I'm nearing the end of an internship for app development and I was assigned to create an app from scratch, instead of porting the apple version. I am having trouble figuring out how to save an in app screenshot, and then saving it to the device. I…