Questions tagged [nexus-10]

Nexus 10 is an Android tablet made by Google.

Nexus 10 a tablet made by Google. With high resolution display, multi-user support, immersive HD content and the Google apps.

Screen:-

  • Inches : 10.055”
  • Resolution : 2560 x 1600 (300 ppi)
  • Dimensions : 263.9 x 177.6 x 8.9mm

Connectivity:-

  • WiFi 802.11 b/g/n (MIMO+HT40)
  • Bluetooth
  • NFC (Android Beam)
  • Dual side NFC
  • Micro USB
  • Magnetic Pogo pin charger
  • Micro HDMI
  • 3.5mm headphone jack

Features:-

  • Android 4.2 (Jelly Bean)
  • Accelerometer
  • GPS
  • Gyroscope
  • Barometer
  • Ambient Light
  • Compass
38 questions
45
votes
1 answer

Android Studio - Tablet emulator not showing correct resolution

Just created a Nexus 10 emulator but when I start it, the wrong resolution is displayed. It keeps appearing as 800 x 1280 when it should be appearing as 2560 x 1600. Does anyone know what on earth is going on and how this can be fixed?
wbk727
  • 8,017
  • 12
  • 61
  • 125
18
votes
2 answers

Fatal signal 6 (SIGABRT) code=-6 on first launch

I am getting a Fatal signal 6 (SIGABRT) error when trying to run my app on a Nexus 10 with 4.4.2. It works on every other device I've tried including my Nexus 7 (2) with 4.4.2 I don't think it's aproblem with the code as I've tried putting…
danieltnbaker
  • 181
  • 1
  • 1
  • 7
12
votes
3 answers

Camera.release() takes 30 seconds to release the camera in Nexus 10. Is there any way to speed up the process?

I'm using the following code to release camera in onPause. But the line mCamera.release() takes 30 seconds on average to release the camera in Nexus 10 device. I've added logging before and after mCamera.release() and found that the time difference…
Dilip
  • 1,122
  • 11
  • 31
7
votes
3 answers

Nexus 10, Front facing camera Preview is black (no preview)

So I'm working on a Camera related project, and I've been testing it on many devices and all of them passed the tests except for the Nexus 10. I can't really figure out what is going on, and there is no one talking about the issue online. I was able…
7
votes
2 answers

Android mediaplayer audio glitches/stutters only on newer devices

I have a fairly standard mediaplayer object that starts up in onCreate and loops for background music in my app. The file isn't unusually large, it's a 6MB MP3. From the onCreate: MediaPlayer mp; mp = MediaPlayer.create(MainActivity.this,…
regomar
  • 163
  • 2
  • 11
6
votes
2 answers

Capture screenshot from Nexus 10 emulator

How do I capture screenshots from the Nexus 10 emulator. I need these high resolution screenshots to submit to Google Play Store. I get "Screen not available" when I try using the screen capture tool in the Eclipse tools. Someone suggested…
user1159819
  • 1,549
  • 4
  • 16
  • 29
6
votes
2 answers

Android: Unwanted left/right margins on Nexus 10 in landscape mode

I'm having an issue with seemingly inexplicable margins that appear on the left and right sides of my layouts when using a Nexus 10 device in landscape mode. I'm sure it's something embarrassingly straightforward, but I can't find any mention of…
danj1974
  • 481
  • 2
  • 12
6
votes
3 answers

Preparing apps for the nexus 10

I am working on an android Audio Recording application, our app is currently designed to work on all android phones, the Nexus 7 and the Motorola Xoom tablets. I was wondering if there are any guidelines or best practices to re-design/modify our…
Soham
  • 4,940
  • 3
  • 31
  • 48
5
votes
1 answer

Nexus 10 camera.release hangs for 30 seconds

We are a group of developers that are working on a realtime video processing app for android. Recently, a client reported a freeze in our app that happens only on Nexus 10 device. We bought the device ourselves and tested: device came with Android…
DoDo
  • 2,248
  • 2
  • 22
  • 34
5
votes
1 answer

Nexus 10 - render to external rendertarget works only in landscape

We're developing live wallpaper with OpenGL ES 2.0 on Nexus 10. Live wallpaper uses 2 small (128x128) external framebuffers to make ping-pong rendering between them to blur image. While this works perfectly fine on any device (even on aged Motorola…
keaukraine
  • 5,315
  • 29
  • 54
4
votes
3 answers

How to disable double tap zoom feature in Chrome 30 on Android (Nexus 10)

Is it possible to disable the context zoom triggered by double-tapping an element on Chrome? (Setup: Nexus 10 | Android 4.3 | Chrome 30). Double-tapping isn't one of the native touch events (touchstart, touchend, etc). It seems that the only…
louis w
  • 117
  • 1
  • 1
  • 9
4
votes
1 answer

Android - Failure to get image from camera intent on 4.2.2

I'm trying to take photo and than get file path by calling: Intent camera_intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE); startActivityForResult(camera_intent, Static.TAKE_PICTURE); and than: case Static.TAKE_PICTURE: if(resultCode ==…
goodm
  • 7,275
  • 6
  • 31
  • 55
3
votes
1 answer

Bad performance when scrolling on Android 4.3 with Nexus 10

My app, which has a list view with some scrolling, is performing very well (scrolling at 60fps) on all phones I have tested it with, Nexus One, Nexus 4 and Galaxy S3/4. But the performance is terrible on the Nexus 10, probably around 15fps or so. I…
Mikael Grev
  • 587
  • 4
  • 12
3
votes
2 answers

What affect on the range of reading NfcTag? What can I do to make it wider?

I made the app which is writing/reading nfc tags, but I'm not satisfied with the range of reading tags. My stuff which I'm working with is: Nexus 10 for read/write Tags, this tags. I searching about info in the net and for example the wiki says…
MyWay
  • 1,011
  • 2
  • 14
  • 35
3
votes
3 answers

Android - Show/Hide system bar on 4.2.2 (Nexus 10)

I got issue with Nexus 10 - 4.2.2. I was testing code below on Galaxy Tab 10.1 with 4.0.4 and it was working fine: try { Process proc = Runtime.getRuntime().exec(new String[]{"sh","startservice","-n","com.android.systemui/.SystemUIService"}); …
goodm
  • 7,275
  • 6
  • 31
  • 55
1
2 3