Nexus 4 is Google's fourth Nexus-branded Android smartphone. The phone was designed with and manufactured by LG Electronics.
Questions tagged [nexus-4]
113 questions
0
votes
1 answer
Nexus 4 dialer - Creating contact without phone number
I am trying to create a contact programatically without a phone number.
I manage to create it but when I open the dialer it crashes.
If I open the contacts it is OK.
Also, if I add a contact manually without a phone number it works OK.
I am working…

theblitz
- 6,683
- 16
- 60
- 114
0
votes
2 answers
ADB Manager Nexus 4 issues
I have some issues to connect my Nexus 4 and use the debug usb. (Unlike my samsung galaxy tab which is working perfectly)
First of all I've done this :
1. Activate Usb debugging on my phone
2. Allow Unknown Resources
But when I connect my phone, ADB…

benuuts
- 119
- 1
- 11
0
votes
2 answers
Android Application working correctly on Nexus 7 but not on Nexus 4
I'm new to android app development and i'm following a tutorial on fragments, the final application is working correctly on Nexus 7 but not on Nexus 4. Both have android 4.4.2 installed.
Here is a zip file of android project:…

Noor
- 19,638
- 38
- 136
- 254
0
votes
1 answer
Android 4.4 Nexus 4 — rild.* section is missing in build.prop
On Nexus S (2.3 vanilla):
$ adb shell cat /system/build.prop | grep rild
rild.libpath=/vendor/lib/libsec-ril.so
rild.libargs=-d /dev/ttyS0
On Nexus 4 (4.4 vanilla):
$ adb shell cat /system/build.prop | grep rild
$
This prop present on all my…

artem
- 16,382
- 34
- 113
- 189
0
votes
1 answer
media query not working on android emulator
I'm working on a phonegap app and trying to test it on android emulators.
The emulator that I'm testing on is Nexus 4.
Here is the media query that I'm using:
@media screen and (device-width: 384px) and (device-height: 592px) and…

Vaeianor
- 169
- 1
- 4
- 15
0
votes
2 answers
Splash screen is stretching in Nexus 4
I pasted my code below: problem is the image is stretching......

Mubarak
- 1,419
- 15
- 22
0
votes
1 answer
Nexus 4 not loading/not showing in ADB devices
I recently accidentally "updated" the OS to 4.4 while using a 4.3 rooted OS, which turned it into a very expensive paper weight. I can load into the recovery state (Power+down vol), but i cant load past the Google boot screen. I believe the entire…

CodeMonkey
- 1,136
- 16
- 31
0
votes
2 answers
Strange opengl-es picture on nexus 4
I'm implementing opengl-es activity for android. And I've met strange picture on nexus 4. While on nexus-s everything looks as I expect. Here is my Renderer code:
public void onSurfaceChanged(GL10 gl, int width, int height) {
Log.d(TAG,…

swex
- 75
- 1
- 6
0
votes
2 answers
onPreviewFrame not being called on Nexus 4 phone ... but is on Emulator
public boolean openCamera() {
Log.i(TAG, "openCamera");
releaseCamera();
mCamera = Camera.open();
if (mCamera == null) {
Log.e(TAG, "Can't open camera!");
return false;
}
…

user678392
- 1,981
- 3
- 28
- 50
0
votes
1 answer
UiAutomator crashes on Nexus 4 but works fine on emulator
I am running a very simple test:
public class BenchmarkAuto extends UiAutomatorTestCase {
public void testDemo() throws UiObjectNotFoundException {
getUiDevice().pressHome();
getUiDevice().click(650,461);
}
When I…

Nir Hauser
- 31
- 2
0
votes
1 answer
How to enable adb after wiping system and installing new kernel?
I have a Nexus 4. I accidently wiped system and tried to restore it unsuccessfully.
I did have adb before I wiped the system. Now I can only get into recovery mode. When I use Nexus root toolkit it recognizes the device only in bootloader but it…

user1562726
- 31
- 2
- 6
0
votes
2 answers
How to list Bluetooth Low Energy devices on Android 4.3?
Does the sample code from the official documentation work for anyone? After doing startLeScan, the onLeScan callback never gets called (Nexus 4, Android 4.3).
Meanwhile, another app that I have installed (BLE Heart Rate) doesn't seem to have any…

ejain
- 3,456
- 2
- 34
- 52
0
votes
0 answers
For Nexus 4, Google Play Dashboard says compatible, Play Store app says not
Google Play Dashboard lists the following products as supported when I type "Nexus" in the search box:
. HTCNexus One– passion
. GoogleGalaxy Nexus– toro
. GoogleNexus 4– mako
. SamsungGalaxy Nexus– maguro
. GoogleNexus 7– grouper
. …

frankish
- 6,738
- 9
- 49
- 100
0
votes
5 answers
Nexus4 USB Debugging Issue
I have a nexus4 and in developer options I switched on USB debugging.
After I connect it to my PC and press run from eclipse to test the app on my phone
the app does not run!
The window shows the option only of them emulator but not of Nexus4
I…

Kevin Desai
- 317
- 3
- 22
0
votes
3 answers
Nexus 4 read Mifare Classic card UID
Currently we are developing NFC applications for Android. Our experience
Developed POS NFC control system using NXP PN5xx chips for control of Mifare Classic (1K) and CEPAS standard
Developed Android NFC control system for MiFareClassic and…

andy8702
- 3
- 1
- 2