Monday, August 1, 2016

getting an error after factory resetting my phone, failed to mount/preload....

Ever since I've been having problems with my phone, I've had to constantly factory reset my phone from recovery. It always had an error (failed to mount/preload......) but never thunk anything of it, because it rebooted fine, but eventually these very same problems keep arising. I am wondering if its this very error that makes phone have problems. Any ideas? I'm non root, and never attempted to root. Is it possible to fix my phone? Or should I speak to samsung for an replacement? Thanks guys and girls.


from xda-developers http://ift.tt/2aGaAKo
via IFTTT

Idol 4S compared to Idol 3

The Idol 4S is scheduled to be released shortly. So far, all the online comparisons I have seen are comparing the Idol 4S to either the OnePlus 3 or the Axon 7.

Those comparisons are good to have, but for a lot of us who currently own an Idol 3, an important question is whether the experience warrants an upgrade.

I know that those who have preordered the phone will be potentially getting it by the end of this week. If possible, can someone go into further detail on:
  • Battery life between the two devices
  • Photo between the two devices
  • Speaker/loudness betweens the two devices


from xda-developers http://ift.tt/2atXfl8
via IFTTT

Is there any way to make fake Sim Card for confirmation?

Some apps need Sim card to use, but I don't have it..
If somebody knows how to remove Sim card confirmation or make my phone seems like having Sim card, please give me some information.
I'm using SM-G920 and I alread rooted and downloaded xposed framework.


from xda-developers http://ift.tt/2aGaiTH
via IFTTT

Moto 5 2015 battery drain first use!

i just bought the 16GB version and the moto g as you know has an excellent battery experience but when i opened it and just did some startup settings for like 10 minutes i noticed that the battery drain so fast! 2% every minute or something, is this thing normal? because it's its first use?


from xda-developers http://ift.tt/2atXsob
via IFTTT

Sudden app shutdown without doing any activity, throws IllegalStateException onMeasur

Hi, I would create this topic in "Java for Android" section, but I can't, so I post it here.

To the issue: My app always shutdown in random time interval (mostly from few minutes to something like 20 mins). The "App stopped working" messagebox appears. Biggest problem is, I don't do anything in app (like interacting with it), and it just random shutdown by itself. Here's logcat print:
Code:

07-15 20:34:16.595 27361-27363/test.game D/dalvikvm: GC_CONCURRENT freed 141
9K, 44% free 13902K/24391K, paused 4ms+9ms, total 66ms
07-15 20:34:28.997 27361-27363/test.game D/dalvikvm: GC_CONCURRENT freed 1416K, 43% free 13903K/24391K, paused 3ms+7ms, total 56ms
07-15 20:34:29.418 27361-27361/test.game D/AndroidRuntime: Shutting down VM
07-15 20:34:29.418 27361-27361/test.game W/dalvikvm: threadid=1: thread exiting with uncaught exception (group=0x412b52a0)
07-15 20:34:29.498 27361-27361/test.game E/AndroidRuntime: FATAL EXCEPTION: main java.lang.IllegalStateException: onMeasure() did not set the measured dimension by calling setMeasuredDimension()
at android.view.View.measure(View.java:15293)
at android.widget.RelativeLayout.measureChildHorizontal(RelativeLayout.java:617)
at android.widget.RelativeLayout.onMeasure(RelativeLayout.java:399)
at android.view.View.measure(View.java:15288)
at android.widget.RelativeLayout.measureChildHorizontal(RelativeLayout.java:617)
at android.widget.RelativeLayout.onMeasure(RelativeLayout.java:399)
at android.view.View.measure(View.java:15288)
at android.view.ViewGroup.measureChildWithMargins(ViewGroup.java:4876)
at android.widget.FrameLayout.onMeasure(FrameLayout.java:310)
at android.view.View.measure(View.java:15288)
at android.view.ViewGroup.measureChildWithMargins(ViewGroup.java:4876)
at android.widget.LinearLayout.measureChildBeforeLayout(LinearLayout.java:1396)
at android.widget.LinearLayout.measureVertical(LinearLayout.java:681)
at android.widget.LinearLayout.onMeasure(LinearLayout.java:574)
at android.view.View.measure(View.java:15288)
at android.view.ViewGroup.measureChildWithMargins(ViewGroup.java:4876)
at android.widget.FrameLayout.onMeasure(FrameLayout.java:310)
at com.android.internal.policy.impl.PhoneWindow$DecorView.onMeasure(PhoneWindow.java:2397)
at android.view.View.measure(View.java:15288)
at android.view.ViewRootImpl.performMeasure(ViewRootImpl.java:1974)
at android.view.ViewRootImpl.measureHierarchy(ViewRootImpl.java:1217)
at android.view.ViewRootImpl.performTraversals(ViewRootImpl.java:1390)
at android.view.ViewRootImpl.doTraversal(ViewRootImpl.java:1113)
at android.view.ViewRootImpl$TraversalRunnable.run(ViewRootImpl.java:4481)
at android.view.Choreographer$CallbackRecord.run(Choreographer.java:725)
at android.view.Choreographer.doCallbacks(Choreographer.java:555)
at android.view.Choreographer.doFrame(Choreographer.java:525)
at android.view.Choreographer$FrameDisplayEventReceiver.run(Choreographer.java:711)
at android.os.Handler.handleCallback(Handler.java:615)
at android.os.Handler.dispatchMessage(Handler.java:92)
at android.os.Looper.loop(Looper.java:137)
at android.app.ActivityThread.main(ActivityThread.java:4867)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:511)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1007)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:774)
at dalvik.system.NativeStart.main(Native Method)

One would say, it's because I didn't write setMeasuredDimension() when overriding method onMeasure(). Also, docs say you have to write this line to your onMeasure, otherwise the IllegalStateException will be thrown (see it here).

But I don't overriding onMeasure anywhere in my whole project, so problem is not here (at least not on my side in this case).

Few things to note:
- this is full logcat log, and any of these lines ("at android. ...") doesn't link to my code, all goes to source - that means all of these links are gray
- this exception always happens only on my S3 Mini (android 4.1.2), but never happened on my old Galaxy Ace S5830i (android 2.3.6) (and yes, I tested it alot - over 20hours on old phone and app still running!).
- never happened in emulator
- there are no "view resizing" operations running in background, which could cause this exception

I would like to post some code, but I have absolutely no idea where this exception could be thrown.

If someone can help, I'd be really, really grateful. I'm lost at this point...


from xda-developers http://ift.tt/2aG9G0B
via IFTTT

[Q] Going from one carrier to another

The company I work for is changing carriers - VZW to AT&T.

That should be a simple matter - just change the nano-sim since our phone is unlocked and all network capable.

My boss is trying to tell me that AT&T has had problems with this phone. Can anyone here confirm problems?


from xda-developers http://ift.tt/2atX49o
via IFTTT

Help needed. Redmi note 3 snapdragon no sound

Hye. Need someone expert on this. My device got problem on sounds. This happens when i plug in 3.5mm audio jack to my speaker. Suddenly my device reboot loop on mi logo. Flash RR custom rom and its booting but cannot call or play any sound from audio file or video. Already flash with miflash also no luck. Just reboot loop on mi logo. Battery consumption also going crazy. Less than 5 hours without doing anything. And fevice feel warm always.

Attached Thumbnails
Click image for larger version Name: Screenshot_20160801-220114.jpg Views: N/A Size: 219.3 KB ID: 3830229  
Attached Files
File Type: log 2016-08-01_22-35-12.log - [Click for QR Code] (54.9 KB)


from xda-developers http://ift.tt/2aGa52M
via IFTTT