[Q] My app crashes immediately after launch on phone - Android Q&A, Help & Troubleshooting

Hello,
I have just made a small testing app, soon to be a notes app, and I am experimenting with a listview control. However, it does not work and I get an 'Unfortunately, Notes has stopped' message when I open it on my Sony Xperia tipo. Here is the code for it:
MainActivity.java
Code:
package com.tapinteractive.holonotes;
import com.tapinteractive.holonotes.R;
import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.ArrayAdapter;
import android.widget.ListView;
import android.app.ListActivity;
import android.view.View;
import android.widget.AdapterView;
import android.widget.TextView;
import android.widget.Toast;
import android.widget.AdapterView.OnItemClickListener;
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
//Init
super.onCreate(savedInstanceState);
String food[] = {"Pizza", "Burger", "Pasta"};
ArrayAdapter<String> array = new ArrayAdapter<String>(this, R.id.listView1, food);
//setContentView(R.layout.activity_main);
//Adding item references
ListView notelist = (ListView)findViewById(R.id.listView1);
notelist.setAdapter(array);
}
public boolean onCreateOptionsMenu(Menu menu) {
//Adding menu items
menu.add(0, 0, 0,"New Note").setIcon(R.drawable.add).setShowAsAction(MenuItem.SHOW_AS_ACTION_ALWAYS);
menu.add(0, 0, 0, "Settings").setIcon(R.drawable.settings).setShowAsAction(MenuItem.SHOW_AS_ACTION_IF_ROOM);
//Inflate the menu to show its items
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
}
activity_main.xml
Code:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="0dp"
android:paddingLeft="0dp"
android:paddingRight="0dp"
android:paddingTop="0dp"
tools:context=".MainActivity" >
<ListView
android:id="@+id/listView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1" >
</ListView>
</LinearLayout>
Thanks,
OrangeFlash81

Bump! Come on.... desperate now!

Can you please provide logcat output
Sent from my GT-S5302 using Tapatalk 2
Hit Thanx Button if i helped you!

sak-venom1997 said:
Can you please provide logcat output
Sent from my GT-S5302 using Tapatalk 2
Hit Thanx Button if i helped you!
Click to expand...
Click to collapse
Hello again sak! Here's my LogCat, there is some other stuff in there but it isn't at all related...
04-06 15:06:40.923: W/dalvikvm(18550): threadid=1: thread exiting with uncaught exception (group=0x40ae39f0)
04-06 15:06:40.953: E/AndroidRuntime(18550): FATAL EXCEPTION: main
04-06 15:06:40.953: E/AndroidRuntime(18550): android.content.res.Resources$NotFoundException: Resource ID #0x7f080000 type #0x12 is not valid
04-06 15:06:40.953: E/AndroidRuntime(18550): at android.content.res.Resources.loadXmlResourceParser(Resources.java:2114)
04-06 15:06:40.953: E/AndroidRuntime(18550): at android.content.res.Resources.getLayout(Resources.java:861)
04-06 15:06:40.953: E/AndroidRuntime(18550): at android.view.LayoutInflater.inflate(LayoutInflater.java:394)
04-06 15:06:40.953: E/AndroidRuntime(18550): at android.widget.ArrayAdapter.createViewFromResource(ArrayAdapter.java:371)
04-06 15:06:40.953: E/AndroidRuntime(18550): at android.widget.ArrayAdapter.getView(ArrayAdapter.java:362)
04-06 15:06:40.953: E/AndroidRuntime(18550): at android.widget.AbsListView.obtainView(AbsListView.java:2045)
04-06 15:06:40.953: E/AndroidRuntime(18550): at android.widget.ListView.measureHeightOfChildren(ListView.java:1244)
04-06 15:06:40.953: E/AndroidRuntime(18550): at android.widget.ListView.onMeasure(ListView.java:1155)
04-06 15:06:40.953: E/AndroidRuntime(18550): at android.view.View.measure(View.java:12853)
04-06 15:06:40.953: E/AndroidRuntime(18550): at android.view.ViewGroup.measureChildWithMargins(ViewGroup.java:4806)
04-06 15:06:40.953: E/AndroidRuntime(18550): at android.widget.LinearLayout.measureChildBeforeLayout(LinearLayout.java:1386)
04-06 15:06:40.953: E/AndroidRuntime(18550): at android.widget.LinearLayout.measureHorizontal(LinearLayout.java:1034)
04-06 15:06:40.953: E/AndroidRuntime(18550): at android.widget.LinearLayout.onMeasure(LinearLayout.java:560)
04-06 15:06:40.953: E/AndroidRuntime(18550): at android.view.View.measure(View.java:12853)
04-06 15:06:40.953: E/AndroidRuntime(18550): at android.view.ViewGroup.measureChildWithMargins(ViewGroup.java:4806)
04-06 15:06:40.953: E/AndroidRuntime(18550): at android.widget.FrameLayout.onMeasure(FrameLayout.java:298)
04-06 15:06:40.953: E/AndroidRuntime(18550): at android.view.View.measure(View.java:12853)
04-06 15:06:40.953: E/AndroidRuntime(18550): at android.widget.LinearLayout.measureVertical(LinearLayout.java:829)
04-06 15:06:40.953: E/AndroidRuntime(18550): at android.widget.LinearLayout.onMeasure(LinearLayout.java:558)
04-06 15:06:40.953: E/AndroidRuntime(18550): at android.view.View.measure(View.java:12853)
04-06 15:06:40.953: E/AndroidRuntime(18550): at android.view.ViewGroup.measureChildWithMargins(ViewGroup.java:4806)
04-06 15:06:40.953: E/AndroidRuntime(18550): at android.widget.FrameLayout.onMeasure(FrameLayout.java:298)
04-06 15:06:40.953: E/AndroidRuntime(18550): at com.android.internal.policy.impl.PhoneWindow$DecorView.onMeasure(PhoneWindow.java:2111)
04-06 15:06:40.953: E/AndroidRuntime(18550): at android.view.View.measure(View.java:12853)
04-06 15:06:40.953: E/AndroidRuntime(18550): at android.view.ViewRootImpl.performTraversals(ViewRootImpl.java:1065)
04-06 15:06:40.953: E/AndroidRuntime(18550): at android.view.ViewRootImpl.handleMessage(ViewRootImpl.java:2455)
04-06 15:06:40.953: E/AndroidRuntime(18550): at android.os.Handler.dispatchMessage(Handler.java:99)
04-06 15:06:40.953: E/AndroidRuntime(18550): at android.os.Looper.loop(Looper.java:137)
04-06 15:06:40.953: E/AndroidRuntime(18550): at android.app.ActivityThread.main(ActivityThread.java:4424)
04-06 15:06:40.953: E/AndroidRuntime(18550): at java.lang.reflect.Method.invokeNative(Native Method)
04-06 15:06:40.953: E/AndroidRuntime(18550): at java.lang.reflect.Method.invoke(Method.java:511)
04-06 15:06:40.953: E/AndroidRuntime(18550): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:817)
04-06 15:06:40.953: E/AndroidRuntime(18550): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:584)
04-06 15:06:40.953: E/AndroidRuntime(18550): at dalvik.system.NativeStart.main(Native Method)
Orange
P.S. Can you do spoilers on these forums?

So sorry bro it's 11pm here and tomorrow is sunday I can't work in either of the two cases even if i want to I really want to help please wait till monday I'm so sorry
And for spiler use [@HIDE] [/@HIDE] just remove @
Sent from my GT-S5302 using Tapatalk 2
Hit Thanx Button if i helped you!

sak-venom1997 said:
So sorry bro it's 11pm here and tomorrow is sunday I can't work in either of the two cases even if i want to I really want to help please wait till monday I'm so sorry
And for spiler use @
@
Sent from my GT-S5302 using Tapatalk 2
Hit Thanx Button if i helped you!
Click to expand...
Click to collapse
Okay, it's 5pm here BTW I fixed the internet problem myself from the other thread.

So its solved glad to hear that
Sent from my GT-S5302 using Tapatalk 2
Hit Thanx Button if i helped you!

sak-venom1997 said:
So sorry bro it's 11pm here and tomorrow is sunday I can't work in either of the two cases even if i want to I really want to help please wait till monday I'm so sorry
Click to expand...
Click to collapse
Erm... you there? :/

Yes I. I'm there
Sent from my GT-S5302 using Tapatalk 2
Hit Thanx Button if i helped you!

Hello Have you got any solutions on how to fix my code that is on the first post? It crashes on launch...

OrangeFlash81 said:
Hello Have you got any solutions on how to fix my code that is on the first post? It crashes on launch...
Click to expand...
Click to collapse
You said that you figured it out so I left it looking into it now
Sent from my GT-S5302 using Tapatalk 2
Hit Thanx Button if i helped you!

sak-venom1997 said:
You said that you figured it out so I left it looking into it now
Sent from my GT-S5302 using Tapatalk 2
Hit Thanx Button if i helped you!
Click to expand...
Click to collapse
That was for another thread... no, the code on this thread is unsolved.

OrangeFlash81 said:
That was for another thread... no, the code on this thread is unsolved.
Click to expand...
Click to collapse
You'll get the solution soon
Stay tuned
Sent from my GT-S5302 using Tapatalk 2
Hit Thanx Button if i helped you!
---------- Post added at 10:46 PM ---------- Previous post was at 10:12 PM ----------
Dude how can you expect me to solve this without the project resources please give it to me on the thread or via pm
Sent from my GT-S5302 using Tapatalk 2
Hit Thanx Button if i helped you!

Your view is causing the issue it ain't as per the requirements of array adapter as I haven't worked with array adapters I don't know much about it tell me what you're trying to do I could derrive some other method
Sent from my GT-S5302 using Tapatalk 2
Hit Thanx Button if i helped you!

Related

[Q] Can I change model name in the ROM? (for T-Mobile mobilTV)

I have a problem with my GSM prvider here in Hungary.
I can't use my mobileTV at T-Mobile.
WebNwalk side always says "Not supported device",but it's supported here as a T-Mobile G2 Touch.
Service told me that my phone won't work, because T-mobile server see it like a "unsupported" HTC Hero.
So if I want to use my MobileTV,then I have to install the official T-Mobile ROM...or...as I think, if I can change the name of my phone, maybe I can use it with custom ROMs.
Anyone can help me in this situation?
If you know what is being checked, you can probably change a build.prop string to match the stock T-Mobile one.
Any ideas? A logcat might give a clue
Moved to Q&A
Will make a log, but can You recommend me a good wap browser for this phone, opera use wap pages in a weird way.
Maybe it's also a good option to take the webnwalk app from the T-Mobile ROm, if it's also possible...
greg019 said:
Will make a log, but can You recommend me a good wap browser for this phone, opera use wap pages in a weird way.
Maybe it's also a good option to take the webnwalk app from the T-Mobile ROm, if it's also possible...
Click to expand...
Click to collapse
Eh? Isn't the webnwalk app just the stock browser under another name?
pulser_g2 said:
Eh? Isn't the webnwalk app just the stock browser under another name?
Click to expand...
Click to collapse
Maybe Yes,but I dunno,because I don't have it.
Just I read on T-Mobile site that I have to open webnwalk and then go to here or go to there...
But I can't open wap sites with the stock browser. (Villain ROM 12)
I have to use Opera Mini,but it handle wap sites with a little paranormal activity.
(It handels URLs separated by enter as one...so I can't open URLs, because it shows a message: "unsupported phone" so I can't even open test streams, movie trailers on the T-zones site)
logcat
I made a logcat log, if it's help.
Code:
D/alogcat (20851): stopping ...
W/InputManagerService(23904): Window already focused, ignoring focus gain of: [email protected]
D/alogcat (20851): stopping ...
D/alogcat (20851): paused
D/dalvikvm(23996): GC_EXTERNAL_ALLOC freed 1972 objects / 85832 bytes in 105ms
D/dalvikvm(23996): GC_EXTERNAL_ALLOC freed 180 objects / 7360 bytes in 101ms
D/skia (23904): purging 467K from font cache [42 entries]
D/dalvikvm(23904): GC_EXPLICIT freed 27760 objects / 1414696 bytes in 257ms
I/ActivityManager(23904): Starting activity: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.opera.mini.android/.Browser bnds=[192,424][256,480] }
I/ActivityManager(23904): Start proc com.opera.mini.android for activity com.opera.mini.android/.Browser: pid=20876 uid=10059 gids={3003, 1015}
I/ActivityManager(23904): Process android.process.media (pid 20822) has died.
D/dalvikvm(20876): Trying to load lib /data/data/com.opera.mini.android/lib/libom.so 0x43e797e8
D/dalvikvm(20876): Added shared lib /data/data/com.opera.mini.android/lib/libom.so 0x43e797e8
D/dalvikvm(20876): No JNI_OnLoad found in /data/data/com.opera.mini.android/lib/libom.so 0x43e797e8, skipping init
W/webcore (20876): hasMessages() is not supported in this case.
W/webcore (20876): hasMessages() is not supported in this case.
I/ActivityManager(23904): Process com.android.settings (pid 20832) has died.
I/ActivityManager(23904): Start proc android.process.media for service com.android.providers.media/.MediaScannerService: pid=20889 uid=10012 gids={1015, 2001, 3003, 1006}
D/dalvikvm(20876): GC_FOR_MALLOC freed 2567 objects / 197536 bytes in 170ms
I/ActivityManager(23904): Process org.jtb.alogcat (pid 20851) has died.
I/ActivityThread(20889): Publishing provider downloads: com.android.providers.downloads.DownloadProvider
I/ActivityThread(20889): Publishing provider drm: com.android.providers.drm.DrmProvider
D/dalvikvm(20876): GC_FOR_MALLOC freed 433 objects / 21680 bytes in 234ms
I/ActivityThread(20889): Publishing provider media: com.android.providers.media.MediaProvider
I/ActivityManager(23904): Displayed activity com.opera.mini.android/.Browser: 2648 ms (total 2648 ms)
V/MediaProvider(20889): Attached volume: internal
V/MediaProvider(20889): /mnt/sdcard volume ID: 1777956800
D/dalvikvm(20876): GC_FOR_MALLOC freed 221 objects / 9624 bytes in 514ms
I/dalvikvm-heap(20876): Grow heap (frag case) to 3.732MB for 539676-byte allocation
D/dalvikvm(20876): GC_FOR_MALLOC freed 8 objects / 320 bytes in 394ms
V/MediaProvider(20889): Attached volume: external
D/dalvikvm(20876): GC_EXTERNAL_ALLOC freed 7 objects / 376 bytes in 261ms
D/dalvikvm(20876): GC_FOR_MALLOC freed 0 objects / 0 bytes in 136ms
I/dalvikvm-heap(20876): Grow heap (frag case) to 4.267MB for 269846-byte allocation
D/dalvikvm(20876): GC_FOR_MALLOC freed 155 objects / 6936 bytes in 72ms
W/InputManagerService(23904): Window already focused, ignoring focus gain of: [email protected]
W/InputManagerService(23904): Window already focused, ignoring focus gain of: [email protected]
D/dalvikvm(20876): GC_FOR_MALLOC freed 1565 objects / 1283144 bytes in 69ms
D/dalvikvm(20876): GC_FOR_MALLOC freed 1741 objects / 454912 bytes in 64ms
D/dalvikvm(20876): GC_FOR_MALLOC freed 633 objects / 445680 bytes in 65ms
D/dalvikvm(20876): GC_FOR_MALLOC freed 248 objects / 360136 bytes in 65ms
D/dalvikvm(20876): GC_EXPLICIT freed 40 objects / 141424 bytes in 62ms
I/dalvikvm(20876): Jit: resizing JitTable from 512 to 1024
D/skia (23994): purging 73K from font cache [9 entries]
D/dalvikvm(23994): GC_EXPLICIT freed 3754 objects / 198144 bytes in 128ms
W/Process (23904): Unable to open /proc/20851/status
D/skia ( 1580): purging 327K from font cache [40 entries]
D/dalvikvm( 1580): GC_EXPLICIT freed 9737 objects / 510984 bytes in 214ms
D/skia (23987): purging 88K from font cache [7 entries]
D/dalvikvm(23987): GC_EXPLICIT freed 1340 objects / 51784 bytes in 334ms
D/dalvikvm(20876): GC_FOR_MALLOC freed 3015 objects / 373584 bytes in 92ms
D/dalvikvm(17776): GC_EXPLICIT freed 1441 objects / 173432 bytes in 352ms
D/NativeCrypto(17776): Freeing OpenSSL session
D/skia (20575): purging 6K from font cache [1 entries]
D/dalvikvm(20575): GC_EXPLICIT freed 4909 objects / 236680 bytes in 765ms
I/dalvikvm(20876): Jit: resizing JitTable from 1024 to 2048
D/skia (18737): purging 6K from font cache [1 entries]
D/dalvikvm(18737): GC_EXPLICIT freed 3758 objects / 239792 bytes in 89ms
D/dalvikvm(20876): GC_FOR_MALLOC freed 3740 objects / 504824 bytes in 75ms
D/skia (20189): purging 6K from font cache [1 entries]
D/dalvikvm(20189): GC_EXPLICIT freed 2349 objects / 136224 bytes in 530ms
D/dalvikvm(20876): GC_FOR_MALLOC freed 1795 objects / 316920 bytes in 65ms
D/skia (20211): purging 6K from font cache [1 entries]
D/dalvikvm(20211): GC_EXPLICIT freed 1174 objects / 79264 bytes in 79ms
D/dalvikvm(20876): GC_FOR_MALLOC freed 708 objects / 131744 bytes in 67ms
D/dalvikvm(20876): GC_FOR_MALLOC freed 604 objects / 375288 bytes in 68ms
D/dalvikvm(16342): GC_EXPLICIT freed 6169 objects / 274144 bytes in 71ms
D/dalvikvm(24496): GC_EXPLICIT freed 4498 objects / 217032 bytes in 87ms
D/dalvikvm(20876): GC_FOR_MALLOC freed 3811 objects / 506960 bytes in 81ms
D/dalvikvm(20876): GC_FOR_MALLOC freed 3112 objects / 721904 bytes in 75ms
D/dalvikvm(20876): GC_FOR_MALLOC freed 2144 objects / 337040 bytes in 67ms
D/dalvikvm(20575): GC_EXPLICIT freed 2216 objects / 101808 bytes in 73ms
D/dalvikvm(20876): GC_FOR_MALLOC freed 4717 objects / 856232 bytes in 80ms
D/dalvikvm(16342): GC_EXPLICIT freed 2302 objects / 109176 bytes in 95ms
D/dalvikvm(24496): GC_EXPLICIT freed 2484 objects / 131840 bytes in 81ms
D/dalvikvm(16342): GC_EXPLICIT freed 1633 objects / 73856 bytes in 76ms
D/dalvikvm(20575): GC_EXPLICIT freed 2023 objects / 91744 bytes in 76ms
D/dalvikvm(24496): GC_EXPLICIT freed 1557 objects / 79336 bytes in 86ms
I/power (23904): *** set_screen_state 0
D/SurfaceFlinger(23904): About to give-up screen, flinger = 0x132d60
I/JuiceDefender.Runtime(24323): Screen OFF
D/WifiService(23904): ACTION_SCREEN_OFF
D/StatusBar(23904): DISABLE_EXPAND: yes
I/ActivityManager(23904): Start proc com.android.settings for broadcast com.android.settings/.widget.SettingsAppWidgetProvider: pid=20930 uid=1000 gids={3003, 3002, 3001, 1015}
D/KeyguardViewMediator(23904): wakeWhenReadyLocked(6)
D/KeyguardViewMediator(23904): handleWakeWhenReady(6)
D/KeyguardViewMediator(23904): pokeWakelock(5000)
I/power (23904): *** set_screen_state 1
D/SurfaceFlinger(23904): Screen about to return, flinger = 0x132d60
D/WifiService(23904): ACTION_SCREEN_ON
I/ActivityManager(23904): Process com.google.android.voicesearch (pid 20839) has died.
D/KeyguardViewMediator(23904): pokeWakelock(5000)
D/KeyguardViewMediator(23904): pokeWakelock(5000)
I/JuiceDefender.Runtime(24323): Screen ON
I/ActivityManager(23904): Start proc com.aws.android.locator for broadcast com.aws.android.locator/.UserUnlockDeviceReceiver: pid=20939 uid=10075 gids={1015}
W/InputManagerService(23904): Window already focused, ignoring focus gain of: [email protected]
D/dalvikvm(23898): GC_EXPLICIT freed 303 objects / 11472 bytes in 410ms
D/dalvikvm(23898): GC_EXPLICIT freed 57 objects / 2624 bytes in 151ms
D/dalvikvm(23898): GC_EXPLICIT freed 2 objects / 48 bytes in 151ms
I/ActivityManager(23904): Start proc com.google.android.voicesearch for broadcast com.google.android.voicesearch/.logging.LoggingReceiver: pid=20946 uid=10048 gids={3003}
I/ActivityThread(20946): Publishing provider com.google.android.voicesearch.VoiceSearchResultProvider: com.google.android.voicesearch.VoiceSearchResultProvider
I/ActivityManager(23904): Process com.android.settings (pid 20930) has died.
I/ActivityManager(23904): Start proc com.aws.android.elite for broadcast com.aws.android.elite/com.aws.android.synchronizedupdate.TyphoonBackgroundUpdater: pid=20954 uid=10079 gids={3003, 1007, 1015}
I/ActivityThread(20954): Publishing provider com.aws.searchauthority.elite.locationQuery: com.aws.android.shared.search.LocationSuggestionProvider
E/Typhoon (20954): Android Context is null!
I/ActivityThread(20954): Publishing provider com.aws.android.weatherbug.elite.weatherprovider: com.aws.android.content.WeatherContentProvider
I/ (20954): BackgroundUpdater - caught locate Intent
I/ActivityManager(23904): Process com.aws.android.locator (pid 20939) has died.
D/dalvikvm(23904): JIT code cache reset in 1 ms (524232 bytes 23/0)
D/dalvikvm(23904): GC_FOR_MALLOC freed 17479 objects / 1118328 bytes in 286ms
D/dalvikvm(23904): GC_FOR_MALLOC freed 43998 objects / 1589728 bytes in 308ms
D/DataConnectionTracker(23994): setDataEnabled(true)
I/JuiceDefender.Runtime(24323): Data enabled
D/dalvikvm(23904): GC_FOR_MALLOC freed 59220 objects / 2102072 bytes in 300ms
D/dalvikvm(23904): GC_FOR_MALLOC freed 58445 objects / 2088224 bytes in 310ms
D/dalvikvm(23904): GC_FOR_MALLOC freed 59135 objects / 2097536 bytes in 312ms
D/dalvikvm(23904): GC_FOR_MALLOC freed 63710 objects / 2306336 bytes in 304ms
D/dalvikvm(23904): GC_FOR_MALLOC freed 53001 objects / 1882944 bytes in 294ms
D/dalvikvm(23904): GC_FOR_MALLOC freed 59040 objects / 2096016 bytes in 300ms
D/dalvikvm(23904): GC_FOR_MALLOC freed 59002 objects / 2095384 bytes in 299ms
D/dalvikvm(23904): GC_FOR_MALLOC freed 58997 objects / 2095976 bytes in 308ms
D/dalvikvm(16342): GC_EXPLICIT freed 1403 objects / 63704 bytes in 72ms
D/dalvikvm(24496): GC_EXPLICIT freed 1444 objects / 74200 bytes in 78ms
D/dalvikvm(20575): GC_EXPLICIT freed 2981 objects / 134560 bytes in 64ms
D/WifiService(23904): acquireWifiLockLocked: WifiLock{NetworkLocationProvider type=2 [email protected]}
D/LocationMasfClient(23904): getNetworkLocation(): Returning cache location with accuracy 75.0
I/ActivityManager(23904): Start proc brut.googlemaps:LocationFriendService for service brut.googlemaps/com.google.googlenav.friend.android.LocationFriendService: pid=20968 uid=10095 gids={3003, 1015}
I/ActivityManager(23904): Process com.google.android.voicesearch (pid 20946) has died.
I/ActivityManager(23904): Process com.aws.android.elite (pid 20954) has died.
I/ActivityManager(23904): Low Memory: No more background processes.
D/dalvikvm(20968): GC_FOR_MALLOC freed 2252 objects / 160296 bytes in 75ms
D/dalvikvm(20968): GC_FOR_MALLOC freed 3354 objects / 267608 bytes in 73ms
D/WifiService(23904): releaseWifiLockLocked: WifiLock{NetworkLocationProvider type=2 [email protected]}
D/WifiService(23904): acquireWifiLockLocked: WifiLock{NetworkLocationProvider type=2 [email protected]}
D/dalvikvm(24202): GC_EXPLICIT freed 6 objects / 208 bytes in 94ms
D/WifiService(23904): releaseWifiLockLocked: WifiLock{NetworkLocationProvider type=2 [email protected]}
D/skia (23996): purging 75K from font cache [9 entries]
D/dalvikvm(23996): GC_EXPLICIT freed 8046 objects / 287184 bytes in 103ms
D/skia (20876): purging 13K from font cache [2 entries]
D/dalvikvm(20876): GC_EXPLICIT freed 2776 objects / 621784 bytes in 77ms
D/skia (20889): purging 6K from font cache [1 entries]
D/dalvikvm(20889): GC_EXPLICIT freed 2177 objects / 143120 bytes in 97ms
W/JuiceDefender.Service(24323): Low memory! Android may kill the service!
D/dalvikvm(24323): GC_EXPLICIT freed 814 objects / 113632 bytes in 93ms
D/dalvikvm(20876): GC_FOR_MALLOC freed 4336 objects / 771680 bytes in 83ms
D/skia (23904): purging 172K from font cache [21 entries]
D/dalvikvm(23904): GC_EXPLICIT freed 57670 objects / 2276544 bytes in 612ms
D/dalvikvm(23994): GC_EXPLICIT freed 1798 objects / 79160 bytes in 80ms
D/dalvikvm( 1580): GC_EXPLICIT freed 821 objects / 46256 bytes in 310ms
D/dalvikvm(20876): GC_FOR_MALLOC freed 2950 objects / 589680 bytes in 80ms
D/dalvikvm(17776): GC_EXPLICIT freed 1064 objects / 48752 bytes in 73ms
D/dalvikvm(23987): GC_EXPLICIT freed 229 objects / 8968 bytes in 106ms
D/dalvikvm(20575): GC_EXPLICIT freed 1133 objects / 52776 bytes in 77ms
D/dalvikvm(20876): GC_FOR_MALLOC freed 3233 objects / 599880 bytes in 68ms
I/ActivityManager(23904): Start proc com.android.settings for broadcast com.android.settings/.widget.SettingsAppWidgetProvider: pid=20992 uid=1000 gids={3003, 3002, 3001, 1015}
I/ActivityManager(23904): Starting activity: Intent { act=android.intent.action.MAIN cat=[android.intent.category.HOME] flg=0x10200000 cmp=com.fede.launcher/.Launcher }
I/ActivityManager(23904): Process com.opera.mini.android (pid 20876) has died.
I/WindowManager(23904): WIN DEATH: Window{442321d0 SurfaceView paused=false}
I/WindowManager(23904): WIN DEATH: Window{441fe8d0 com.opera.mini.android/com.opera.mini.android.Browser paused=false}
D/dalvikvm(23996): GC_EXTERNAL_ALLOC freed 1472 objects / 55448 bytes in 99ms
I/ActivityManager(23904): Start proc com.google.android.voicesearch for broadcast com.google.android.voicesearch/.logging.LoggingReceiver: pid=21001 uid=10048 gids={3003}
W/Process (23904): Unable to open /proc/20876/status
I/ActivityThread(21001): Publishing provider com.google.android.voicesearch.VoiceSearchResultProvider: com.google.android.voicesearch.VoiceSearchResultProvider
D/dalvikvm(23996): GC_EXTERNAL_ALLOC freed 1146 objects / 42576 bytes in 108ms
D/dalvikvm(23996): GC_EXTERNAL_ALLOC freed 339 objects / 12232 bytes in 101ms
D/dalvikvm(18737): GC_EXPLICIT freed 312 objects / 23328 bytes in 76ms
I/ActivityManager(23904): Starting activity: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.android.vending/.AssetBrowserActivity }
I/ActivityManager(23904): Start proc com.android.vending for activity com.android.vending/.MyDownloadsActivity: pid=21014 uid=10046 gids={1015, 3003}
I/ActivityThread(21014): Publishing provider com.android.vending.SuggestionsProvider: com.android.vending.SuggestionsProvider
D/dalvikvm(21014): GC_FOR_MALLOC freed 9245 objects / 311696 bytes in 83ms
D/vending (21014): [9] LocalAssetCache.buildCache(): No package info for INSTALLED asset -8850502392965277645 (net.robotcomics.android.erfworld.e1)
D/vending (21014): [9] LocalAssetCache.buildCache(): No package info for INSTALLED asset -2338556921494166122 (net.robotcomics.android.sevencitadels.e1)
D/vending (21014): [9] LocalAssetCache.buildCache(): No package info for INSTALLED asset -5472233677678006264 (net.robotcomics.android.robot13.e1)
D/dalvikvm(21014): GC_EXTERNAL_ALLOC freed 6444 objects / 388552 bytes in 76ms
I/ActivityManager(23904): Process android.process.media (pid 20889) has died.
I/ActivityManager(23904): Process brut.googlemaps:LocationFriendService (pid 20968) has died.
D/vending (21014): [13] LocalDbSyncService.run(): Syncing local DB with package manager...
D/vending (21014): [13] LocalAssetDatabase.syncWithPackageManager(): No INSTALLING or UNINSTALLING assets.
D/vending (21014): [13] LocalDbSyncService.run(): Syncing done.
I/ActivityManager(23904): Displayed activity com.android.vending/.MyDownloadsActivity: 2566 ms (total 2566 ms)
D/dalvikvm(21014): GC_FOR_MALLOC freed 5753 objects / 322640 bytes in 85ms
I/dalvikvm(21014): Jit: resizing JitTable from 512 to 1024
D/dalvikvm(21014): GC_FOR_MALLOC freed 6266 objects / 333928 bytes in 97ms
I/dalvikvm(21014): Jit: resizing JitTable from 1024 to 2048
D/dalvikvm(21014): GC_FOR_MALLOC freed 8376 objects / 631000 bytes in 94ms
D/dalvikvm(21014): GC_FOR_MALLOC freed 5340 objects / 340096 bytes in 96ms
W/AudioFlinger(23896): write blocked for 82 msecs, 83 delayed writes, thread 0xd8e8
D/dalvikvm(21014): GC_FOR_MALLOC freed 9316 objects / 659320 bytes in 110ms
D/ResourceType(21014): calling getConfigurations
D/ResourceType(21014): called getConfigurations size=173
D/dalvikvm(21014): GC_FOR_MALLOC freed 2424 objects / 174760 bytes in 87ms
D/SearchDialog(21014): launching Intent { act=android.intent.action.SEARCH flg=0x10000000 cmp=com.android.vending/.SearchAssetListActivity (has extras) }
I/SearchDialog(21014): Starting (as ourselves) #Intent;action=android.intent.action.SEARCH;launchFlags=0x10000000;component=com.android.vending/.SearchAssetListActivity;S.query=webnwalk;S.user_query=webnwalk;end
I/ActivityManager(23904): Starting activity: Intent { act=android.intent.action.SEARCH flg=0x10000000 cmp=com.android.vending/.SearchAssetListActivity (has extras) }
I/ActivityManager(23904): Displayed activity com.android.vending/.SearchAssetListActivity: 615 ms (total 615 ms)
D/dalvikvm(21014): GC_FOR_MALLOC freed 6166 objects / 399152 bytes in 104ms
I/dalvikvm(21014): Jit: resizing JitTable from 2048 to 4096
I/ActivityManager(23904): Displayed activity com.android.vending/.SearchAssetListActivity: 908 ms (total 908 ms)
I/ActivityManager(23904): Starting activity: Intent { act=android.intent.action.MAIN cat=[android.intent.category.HOME] flg=0x10200000 cmp=com.fede.launcher/.Launcher }
D/dalvikvm(23996): GC_EXTERNAL_ALLOC freed 1172 objects / 57008 bytes in 112ms
I/ActivityManager(23904): Starting activity: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=org.jtb.alogcat/.LogActivity }
I/ActivityManager(23904): Start proc org.jtb.alogcat for activity org.jtb.alogcat/.LogActivity: pid=21045 uid=10123 gids={1007, 1015}
D/alogcat (21045): stopping ...
D/alogcat (21045): resumed
I/ActivityManager(23904): Process com.android.vending (pid 21014) has died.
I/WindowManager(23904): WIN DEATH: Window{442f43f8 com.android.vending/com.android.vending.SearchAssetListActivity paused=false}
D/dalvikvm(21045): GC_FOR_MALLOC freed 2341 objects / 232624 bytes in 83ms
I/ActivityManager(23904): Displayed activity org.jtb.alogcat/.LogActivity: 1537 ms (total 1537 ms)
D/dalvikvm(20189): GC_EXPLICIT freed 166 objects / 16656 bytes in 77ms
I/dalvikvm(21045): Jit: resizing JitTable from 512 to 1024
D/dalvikvm(21045): GC_FOR_MALLOC freed 3758 objects / 419760 bytes in 111ms
greg019 said:
I made a logcat log, if it's help.
Click to expand...
Click to collapse
I edited your post to pop it into a codebox, as I was struggling to read it
Hmmm. It looks like you are having Opera Mini crashing, though I can't be sure. Could you explain what you were doing when you took this log, to confirm what I'm seeing (much of it is routine rubbish you get all the time)
I think you need to change the browser UserAgent to view the t-mobile site on the stock browser. There's a guide somewhere on the forum.
Thanks for editing.
I just started Opera Mini, went to the T-Zones site, opened MobilTV site, free video page (but when i click on it, marks the links as one...) and then it say's it unsupported phone, then i quit from Opera, then kill all the apps.
That's all I did.
I attached screenshots. (1st one with false link marking, 2nd with "unsupported..message)
Edit: Also tried changing UserAgent, I just won't show wap pages correctly. ( wap.t-zones.hu )
greg019 said:
Thanks for editing.
I just started Opera Mini, went to the T-Zones site, opened MobilTV site, free video page (but when i click on it, marks the links as one...) and then it say's it unsupported phone, then i quit from Opera, then kill all the apps.
That's all I did.
I attached screenshots. (1st one with false link marking, 2nd with "unsupported..message)
Edit: Also tried changing UserAgent, I just won't show wap pages correctly. ( wap.t-zones.hu )
Click to expand...
Click to collapse
OK. I think we need to change the User Agent in the stock browser for this to work. There's a post somewhere about this.
So I can't do anything?
Tried Useragent in every possible way....
greg019 said:
So I can't do anything?
Tried Useragent in every possible way....
Click to expand...
Click to collapse
Umm. There's a way to do this IIRC. You need to edit a /data/data file and change the user agent string to what T-Mobile's browser uses. I can't remember the file name, but it's mentioned somewhere on here.
You edit it and change the UA string itself, then it should allow you to use the android browser on the site.

[Q] Launcher2

Hi,
I tried my favourite launcher (original Launcher2 ripped from nexus s).
It was installed (I copied it to /system/app), but it don't work. Logcat output don't show anything wrong IMO.
Any idea how to get it running?
Logcat is>
I/ActivityManager( 2724): Starting: Intent { act=android.intent.action.MAIN cat=
[android.intent.category.HOME] flg=0x13a00000 cmp=com.android.launcher/com.andro
id.launcher2.Launcher } from pid 2724
I/OrientationDebug( 2724): [pwm] in updateOrientationListenerLp()
V/OrientationDebug( 2724): in updateOrientationListenerLp(), Screen status=true,
current orientation=5, SensorEnabled=true
I/OrientationDebug( 2724): [pwm] needSensorRunningLp(), return true #4
D/CLIPBOARD( 2724): Hide Clipboard dialog inside hideSoftInput() !
V/RenderScript_jni( 3680): surfaceCreated
V/RenderScript_jni( 3680): surfaceChanged
E/yamaha::media:arameters( 2593): SalesCode = XEU
I/ALSAModule( 2593): Initialized ALSA PLAYBACK device hifi
W/AudioFlinger( 2593): write blocked for 74 msecs, 9 delayed writes, thread 0x5e
758
D/CLIPBOARD( 3858): Hide Clipboard dialog at Starting input: finished by someone
else... !
I/AudioFlinger( 2593): stop output streamType (0, 1) for 1
D/AudioHardwareYamaha( 2593): AudioStreamOut::setParameters(keyValuePairs="stop_
output_streamtype=1")
E/yamaha::media:arameters( 2593): SalesCode = XEU
W/PowerManagerService( 2724): Timer 0x7->0x3|0x0
E/lights ( 2724): write_int: path /sys/devices/virtual/misc/melfas_touchkey/bri
ghtness, value 2
I/PowerManagerService( 2724): Ulight 7->3|0
D/PowerManagerService( 2724): setLightBrightness : mButtonLight : 0
D/PowerManagerService( 2724): onSensorChanged: light value: 100
D/PowerManagerService( 2724): onSensorChanged: light value: 100
D/PowerManagerService( 2724): onSensorChanged: light value: 100
I/ALSAModule( 2593): Terminated ALSA PLAYBACK device hifi
D/PowerManagerService( 2724): onSensorChanged: light value: 100
If it is the same problem as I have and you can select to launch the home but all it comes up with is a black screen just tap the screen where the app launcher button should be then you will see the app drawer then tap home button on the app drawer and you should see the launcher
Oh man..thank you, it works. Where did you got your version? I was planning to try launcher2 from sdk...
//edit
Well..black screen is back if you run any program. Must be something with opengl.
//edit2
launcher from sdk works, but is not accelerated

[Q] Timescape forcecloses even after fresh install?

Hi guys ,
just wanted to know how many of you have this issue.
My Timescape forcecloses all the time , while I'm scrolling through my splines. First 5-10 splines scroll normally , afterwards when the next few come up and start loading in order to display their content the com.sonyericsson.timescape.ui forcecloses.
I've tried fresh install a couple of times. Even on stock untouched ROM (even without root) , I still have this issue.
If there are others I would like to know so that we will have discovered one bug on stock GB ROM!
Thanks in advance!
You forgot to attach your log!
Here it is:
E/AndroidRuntime( 4106): FATAL EXCEPTION: GLThread 16
E/AndroidRuntime( 4106): java.lang.ArrayIndexOutOfBoundsException
E/AndroidRuntime( 4106): at com.sonyericsson.timescape.splinelist.shader.ContentExpansionTexture.setExpansionSettings(ContentExpansionTexture.java:132)
E/AndroidRuntime( 4106): at com.sonyericsson.timescape.splinelist.shader.ContentExpansionTexture.updateExpansionSettings(ContentExpansionTexture.java:142)
E/AndroidRuntime( 4106): at com.sonyericsson.timescape.splinelist.shader.ContentShader.setShaderParameters(ContentShader.java:101)
E/AndroidRuntime( 4106): at com.sonyericsson.ui3d.core.entity.Entity.render(Entity.java:123)
E/AndroidRuntime( 4106): at com.sonyericsson.ui3d.core.node.Node.render(Node.java:143)
E/AndroidRuntime( 4106): at com.sonyericsson.ui3d.core.render.UI3DRenderer.onDrawFrame(UI3DRenderer.java:135)
E/AndroidRuntime( 4106): at android.opengl.GLSurfaceView$GLThread.guardedRun(GLSurfaceView.java:1363)
E/AndroidRuntime( 4106): at android.opengl.GLSurfaceView$GLThread.run(GLSurfaceView.java:1118)
W/ActivityManager( 1237): Force finishing activity com.sonyericsson.timescape.ui/.SplineActivity
D/dalvikvm( 4106): GC_CONCURRENT freed 199K, 50% free 2905K/5767K, external 12597K/14645K, paused 2ms+4ms
D/dalvikvm( 4106): GC_CONCURRENT freed 111K, 50% free 2903K/5767K, external 14126K/16174K, paused 2ms+4ms
W/ActivityManager( 1237): Activity pause timeout for HistoryRecord{40839d88 com.sonyericsson.timescape.ui/.SplineActivity}
Click to expand...
Click to collapse
Well I guess I must be the only one around to have that problem....!
Mr_Element said:
Well I guess I must be the only one around to have that problem....!
Click to expand...
Click to collapse
Hang on a sec, I just faced it little while ago
http://forum.xda-developers.com/showthread.php?t=1033446&highlight=timescape
I followed the above and installed the arc timescape via xrec. And now the phone doesn't seem to on, i mean its on can see the notification bar but that's it, the rest is totally black. Just a black screen with the time/battery and rest in notification bar.
What went wrong ? Anything i can do to get my baby up :-/

I need Testers For a new AOSP Project

Hy Guys,
It has been two months that I'm working on an AOSP project and testing it on my brother's device only,and that was to provide giving you a buggy ROM,but now I had reached a level of stability that I can share with testers who want to test It before I released it here in the forum.
it's an AOSP GB 2.3.7 Build from source ROM with some useful minor tweaks!
If any tester is interessed he can contact me via PMs or just here in the thread!
i wouldve done it by im leaving for the xperia p
I will test anything :3
Sent from my GT-S5830 using Tapatalk 2
(Frank) said:
I will test anything :3
Sent from my GT-S5830 using Tapatalk 2
Click to expand...
Click to collapse
ok thanks in advance for your contribution and help ,I will send you a PM when the Upload is done!
I m also up for testing.
Sent from my GT-S5830 using xda app-developers app
I'm in
Sent from my mind using interneurone
Waiting for testers!
Upload done,and interesseted testers received the link,waiting for feedbacks!
I want to test your rom. I know how to logcat.
Sent from my GT-S5830 using xda app-developers app
timmy turner said:
I want to test your rom. I know how to logcat.
Sent from my GT-S5830 using xda app-developers app
Click to expand...
Click to collapse
PM sent for you too!
me too ... i want to test...
Status bar is very unstable and it's not aosp since you tweaked it....
Sent from my GT-S5830 using Tapatalk 2
(Frank) said:
Status bar is very unstable and it's not aosp since you tweaked it....
Sent from my GT-S5830 using Tapatalk 2
Click to expand...
Click to collapse
lol some minor tweaks,what do you mean by the unstability of the statuebar?
and about AOSP thing,there is no customisation in the rom so...
slaid480 said:
Hy Guys,
It has been two months that I'm working on an AOSP project and testing it on my brother's device only,and that was to provide giving you a buggy ROM,but now I had reached a level of stability that I can share with testers who want to test It before I released it here in the forum.
it's an AOSP GB 2.3.7 Build from source ROM with some useful minor tweaks!
If any tester is interessed he can contact me via PMs or just here in the thread!
Click to expand...
Click to collapse
I want to test too...
status bar and launcher foce close... after 2,3 reboot i cant see the status bar and every time on boot launcher fc.Installed gapps...when i ad google acounts i got settings fc...i had to many fc...still testing
canibus13 said:
status bar and launcher foce close... after 2,3 reboot i cant see the status bar and every time on boot launcher fc.Installed gapps...when i ad google acounts i got settings fc...i had to many fc...still testing
Click to expand...
Click to collapse
Did you wipe everything before installing+can you logcat ?
slaid480 said:
Did you wipe everything before installing+can you logcat ?
Click to expand...
Click to collapse
yes i wipe everything...logcat a will try later
canibus13 said:
yes i wipe everything...logcat a will try later
Click to expand...
Click to collapse
Ok,Waiting for it!
I want to test it
Live wallpapers fc logcat
10-14 14:44:20.810 W/IInputConnectionWrapper( 1220): showStatusIcon on inactive InputConnection
10-14 14:44:20.810 W/InputManagerService( 242): Starting input on non-focused client [email protected] (uid=10043 pid=1220)
10-14 14:44:20.860 D/LatinIME( 350): mLongPressDelay = 400
10-14 14:44:20.920 D/LatinKeyboardBaseView( 350): mLongPressDelay = 400
10-14 14:44:20.920 D/PointerTracker( 350): mLongPressKeyTimeout = 400
10-14 14:44:21.000 D/dalvikvm( 1220): GC_CONCURRENT freed 639K, 43% free 4446K/7687K, external 466K/905K, paused 4ms+12ms
10-14 14:44:21.360 D/dalvikvm( 1220): GC_CONCURRENT freed 689K, 43% free 4432K/7687K, external 453K/905K, paused 4ms+5ms
10-14 14:44:29.540 I/ActivityManager( 242): Starting: Intent { act=android.intent.action.CHOOSER cmp=android/com.android.internal.app.ChooserActivity (has extras) } from pid 361
10-14 14:44:29.640 W/InputManagerService( 242): Window already focused, ignoring focus gain of: [email protected]
10-14 14:44:29.720 D/ViewConsistency( 361): AbsListView [email protected]8 enabled= true
10-14 14:44:29.750 D/ViewConsistency( 361): AbsListView [email protected]8 enabled= true
10-14 14:44:29.930 D/szipinf ( 361): Initializing inflate state
10-14 14:44:30.060 D/dalvikvm( 1220): GC_CONCURRENT freed 698K, 42% free 4469K/7687K, external 449K/905K, paused 5ms+8ms
10-14 14:44:30.310 I/ActivityManager( 242): Displayed android/com.android.internal.app.ChooserActivity: +748ms
10-14 14:44:31.900 I/ActivityManager( 242): Starting: Intent { act=android.intent.action.SET_WALLPAPER flg=0x3000000 cmp=com.android.wallpaper.livepicker/.LiveWallpaperListActivity } from pid 361
10-14 14:44:31.920 D/ViewConsistency( 1239): AbsListView [email protected] enabled= true
10-14 14:44:31.920 D/ViewConsistency( 1239): AbsListView [email protected] enabled= true
10-14 14:44:31.940 D/szipinf ( 1239): Initializing inflate state
10-14 14:44:32.210 D/dalvikvm( 1239): GC_CONCURRENT freed 252K, 49% free 2885K/5639K, external 828K/1018K, paused 4ms+16ms
10-14 14:44:32.870 I/ActivityManager( 242): Displayed com.android.wallpaper.livepicker/.LiveWallpaperListActivity: +957ms
10-14 14:44:33.020 D/dalvikvm( 1220): GC_CONCURRENT freed 715K, 43% free 4446K/7687K, external 449K/905K, paused 3ms+5ms
10-14 14:44:33.660 I/ActivityManager( 242): Starting: Intent { cmp=com.android.wallpaper.livepicker/.LiveWallpaperPreview (has extras) } from pid 1239
10-14 14:44:33.770 I/ActivityManager( 242): Start proc com.android.wallpaper for service com.android.wallpaper/.fall.FallWallpaper: pid=1267 uid=10019 gids={1006}
10-14 14:44:33.980 D/szipinf ( 1267): Initializing inflate state
10-14 14:44:33.990 I/ActivityManager( 242): Displayed com.android.wallpaper.livepicker/.LiveWallpaperPreview: +332ms
10-14 14:44:34.060 W/dalvikvm( 1267): No implementation found for native Landroid/renderscript/RenderScript;.nDeviceCreate ()I
10-14 14:44:34.060 D/AndroidRuntime( 1267): Shutting down VM
10-14 14:44:34.060 W/dalvikvm( 1267): threadid=1: thread exiting with uncaught exception (group=0x40018560)
10-14 14:44:34.070 E/AndroidRuntime( 1267): FATAL EXCEPTION: main
10-14 14:44:34.070 E/AndroidRuntime( 1267): java.lang.UnsatisfiedLinkError: nDeviceCreate
10-14 14:44:34.070 E/AndroidRuntime( 1267): at android.renderscript.RenderScript.nDeviceCreate(Native Method)
10-14 14:44:34.070 E/AndroidRuntime( 1267): at android.renderscript.RenderScriptGL.<init>(RenderScriptGL.java:42)
10-14 14:44:34.070 E/AndroidRuntime( 1267): at com.android.wallpaper.RenderScriptWallpaper$RenderScriptEngine.onSurfaceCreated(RenderScriptWallpaper.java:130)
10-14 14:44:34.070 E/AndroidRuntime( 1267): at android.service.wallpaper.WallpaperService$Engine.updateSurface(WallpaperService.java:565)
10-14 14:44:34.070 E/AndroidRuntime( 1267): at android.service.wallpaper.WallpaperService$Engine.attach(WallpaperService.java:654)
10-14 14:44:34.070 E/AndroidRuntime( 1267): at android.service.wallpaper.WallpaperService$IWallpaperEngineWrapper.executeMessage(WallpaperService.java:882)
10-14 14:44:34.070 E/AndroidRuntime( 1267): at com.android.internal.os.HandlerCaller$MyHandler.handleMessage(HandlerCaller.java:74)
10-14 14:44:34.070 E/AndroidRuntime( 1267): at android.os.Handler.dispatchMessage(Handler.java:99)
10-14 14:44:34.070 E/AndroidRuntime( 1267): at android.os.Looper.loop(Looper.java:130)
10-14 14:44:34.070 E/AndroidRuntime( 1267): at android.app.ActivityThread.main(ActivityThread.java:3835)
10-14 14:44:34.070 E/AndroidRuntime( 1267): at java.lang.reflect.Method.invokeNative(Native Method)
10-14 14:44:34.070 E/AndroidRuntime( 1267): at java.lang.reflect.Method.invoke(Method.java:507)
10-14 14:44:34.070 E/AndroidRuntime( 1267): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:864)
10-14 14:44:34.070 E/AndroidRuntime( 1267): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:622)
10-14 14:44:34.070 E/AndroidRuntime( 1267): at dalvik.system.NativeStart.main(Native Method)
10-14 14:44:34.090 D/szipinf ( 242): Initializing inflate state
10-14 14:44:34.750 D/dalvikvm( 1220): GC_CONCURRENT freed 682K, 42% free 4500K/7687K, external 449K/905K, paused 11ms+6ms
10-14 14:44:37.720 I/Process ( 1267): Sending signal. PID: 1267 SIG: 9
10-14 14:44:37.730 I/ActivityManager( 242): Process com.android.wallpaper (pid 1267) has died.
10-14 14:44:37.730 W/ActivityManager( 242): Scheduling restart of crashed service com.android.wallpaper/.fall.FallWallpaper in 5000ms
10-14 14:44:37.740 W/LiveWallpaperPreview( 1239): Wallpaper service gone: ComponentInfo{com.android.wallpaper/com.android.wallpaper.fall.FallWallpaper}
10-14 14:44:37.740 E/InputDispatcher( 242): channel '407931f0 com.android.wallpaper.fall.FallWallpaper (server)' ~ Consumer closed input channel or an error occurred. events=0x8
10-14 14:44:37.740 E/InputDispatcher( 242): channel '407931f0 com.android.wallpaper.fall.FallWallpaper (server)' ~ Channel is unrecoverably broken and will be disposed!
10-14 14:44:37.750 I/WindowManager( 242): WIN DEATH: Window{407931f0 com.android.wallpaper.fall.FallWallpaper paused=false}
10-14 14:44:37.780 W/InputManagerService( 242): Window already focused, ignoring focus gain of: [email protected]
10-14 14:44:42.100 V/lights ( 242): set_light_buttons state->color = -10066330 is_lit = 6710886
10-14 14:44:42.100 V/lights ( 242): write_int: path /sys/class/leds/button-backlight/brightness, value 1
10-14 14:44:42.110 W/KeyCharacterMap( 1239): Can't open keycharmap file
10-14 14:44:42.110 W/KeyCharacterMap( 1239): Error loading keycharmap file '/system/usr/keychars/sec_touchscreen.kcm.bin'. hw.keyboards.65537.devname='sec_touchscreen'
10-14 14:44:42.110 W/KeyCharacterMap( 1239): Using default keymap: /system/usr/keychars/qwerty.kcm.bin
10-14 14:44:42.480 D/dalvikvm( 1220): GC_CONCURRENT freed 787K, 43% free 4497K/7815K, external 449K/905K, paused 4ms+7ms
10-14 14:44:45.270 I/ActivityManager( 242): Starting: Intent { cmp=com.android.wallpaper.livepicker/.LiveWallpaperPreview (has extras) } from pid 1239
10-14 14:44:45.330 I/ActivityManager( 242): Start proc com.android.wallpaper for service com.android.wallpaper/.galaxy.GalaxyWallpaper: pid=1277 uid=10019 gids={1006}
10-14 14:44:45.520 D/szipinf ( 1277): Initializing inflate state
10-14 14:44:45.550 I/ActivityManager( 242): Displayed com.android.wallpaper.livepicker/.LiveWallpaperPreview: +273ms
10-14 14:44:45.620 W/dalvikvm( 1277): No implementation found for native Landroid/renderscript/RenderScript;.nDeviceCreate ()I
10-14 14:44:45.620 D/AndroidRuntime( 1277): Shutting down VM
10-14 14:44:45.620 W/dalvikvm( 1277): threadid=1: thread exiting with uncaught exception (group=0x40018560)
10-14 14:44:45.630 E/AndroidRuntime( 1277): FATAL EXCEPTION: main
10-14 14:44:45.630 E/AndroidRuntime( 1277): java.lang.UnsatisfiedLinkError: nDeviceCreate
10-14 14:44:45.630 E/AndroidRuntime( 1277): at android.renderscript.RenderScript.nDeviceCreate(Native Method)
10-14 14:44:45.630 E/AndroidRuntime( 1277): at android.renderscript.RenderScriptGL.<init>(RenderScriptGL.java:42)
10-14 14:44:45.630 E/AndroidRuntime( 1277): at com.android.wallpaper.RenderScriptWallpaper$RenderScriptEngine.onSurfaceCreated(RenderScriptWallpaper.java:130)
10-14 14:44:45.630 E/AndroidRuntime( 1277): at android.service.wallpaper.WallpaperService$Engine.updateSurface(WallpaperService.java:565)
10-14 14:44:45.630 E/AndroidRuntime( 1277): at android.service.wallpaper.WallpaperService$Engine.attach(WallpaperService.java:654)
10-14 14:44:45.630 E/AndroidRuntime( 1277): at android.service.wallpaper.WallpaperService$IWallpaperEngineWrapper.executeMessage(WallpaperService.java:882)
10-14 14:44:45.630 E/AndroidRuntime( 1277): at com.android.internal.os.HandlerCaller$MyHandler.handleMessage(HandlerCaller.java:74)
10-14 14:44:45.630 E/AndroidRuntime( 1277): at android.os.Handler.dispatchMessage(Handler.java:99)
10-14 14:44:45.630 E/AndroidRuntime( 1277): at android.os.Looper.loop(Looper.java:130)
10-14 14:44:45.630 E/AndroidRuntime( 1277): at android.app.ActivityThread.main(ActivityThread.java:3835)
10-14 14:44:45.630 E/AndroidRuntime( 1277): at java.lang.reflect.Method.invokeNative(Native Method)
10-14 14:44:45.630 E/AndroidRuntime( 1277): at java.lang.reflect.Method.invoke(Method.java:507)
10-14 14:44:45.630 E/AndroidRuntime( 1277): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:864)
10-14 14:44:45.630 E/AndroidRuntime( 1277): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:622)
10-14 14:44:45.630 E/AndroidRuntime( 1277): at dalvik.system.NativeStart.main(Native Method)
10-14 14:44:47.410 I/Process ( 1277): Sending signal. PID: 1277 SIG: 9
10-14 14:44:47.430 E/InputDispatcher( 242): channel '40941de8 com.android.wallpaper.galaxy.GalaxyWallpaper (server)' ~ Consumer closed input channel or an error occurred. events=0x8
10-14 14:44:47.430 E/InputDispatcher( 242): channel '40941de8 com.android.wallpaper.galaxy.GalaxyWallpaper (server)' ~ Channel is unrecoverably broken and will be disposed!
10-14 14:44:47.430 W/LiveWallpaperPreview( 1239): Wallpaper service gone: ComponentInfo{com.android.wallpaper/com.android.wallpaper.galaxy.GalaxyWallpaper}
10-14 14:44:47.430 I/ActivityManager( 242): Process com.android.wallpaper (pid 1277) has died.
10-14 14:44:47.430 W/ActivityManager( 242): Scheduling restart of crashed service com.android.wallpaper/.galaxy.GalaxyWallpaper in 5000ms
10-14 14:44:47.440 I/WindowManager( 242): WINDOW DIED Window{40941de8 com.android.wallpaper.galaxy.GalaxyWallpaper paused=false}
10-14 14:44:47.450 W/InputManagerService( 242): Window already focused, ignoring focus gain of: [email protected]
10-14 14:44:47.460 W/WindowManager( 242): Failed looking up window
10-14 14:44:47.460 W/WindowManager( 242): java.lang.IllegalArgumentException: Requested window [email protected] does not exist
10-14 14:44:47.460 W/WindowManager( 242): at com.android.server.WindowManagerService.windowForClientLocked(WindowManagerService.java:8301)
10-14 14:44:47.460 W/WindowManager( 242): at com.android.server.WindowManagerService.windowForClientLocked(WindowManagerService.java:8292)
10-14 14:44:47.460 W/WindowManager( 242): at com.android.server.WindowManagerService$WindowState$DeathRecipient.binderDied(WindowManagerService.java:7150)
10-14 14:44:47.460 W/WindowManager( 242): at android.os.BinderProxy.sendDeathNotice(Binder.java:385)
10-14 14:44:47.460 W/WindowManager( 242): at dalvik.system.NativeStart.run(Native Method)
10-14 14:44:47.460 I/WindowManager( 242): WIN DEATH: null
10-14 14:44:47.530 D/dalvikvm( 1220): GC_FOR_MALLOC freed 456K, 43% free 4473K/7815K, external 449K/905K, paused 76ms
10-14 14:44:47.530 I/dalvikvm-heap( 1220): Grow heap (frag case) to 7.260MB for 31178-byte allocation
10-14 14:44:47.610 D/dalvikvm( 1220): GC_FOR_MALLOC freed 20K, 44% free 4483K/7879K, external 449K/905K, paused 72ms
Click to expand...
Click to collapse
Sent from my GT-S5830 using xda app-developers app
I wanna test too

[need dev help]Touchwiz bug (logcat inside)

Hello, i have faced up with touchwizz deleting home page bug.
http://www.youtube.com/watch?v=IX4ZDOA3ygE
i have tried everything and nothing helped. Maybe this from logcat can help to see what is the cause of this problem?
had also with s3 JB firmware
"Line 550: 10-20 17:51:12.580 I/Launcher.StuckInEdit( 2827): exitWidgetResizeMode State NORMAL
Line 551: 10-20 17:51:12.580 D/Launcher( 2827): onRestart, Launcher: 1119776736
Line 551: 10-20 17:51:12.580 D/Launcher( 2827): onRestart, Launcher: 1119776736
Line 552: 10-20 17:51:12.580 D/Launcher( 2827): onStart, Launcher: 1119776736
Line 552: 10-20 17:51:12.580 D/Launcher( 2827): onStart, Launcher: 1119776736
Line 553: 10-20 17:51:12.580 D/Launcher.HomeFragment( 2827): onStart
Line 554: 10-20 17:51:12.580 D/Launcher( 2827): onResume, Launcher: 1119776736
Line 554: 10-20 17:51:12.580 D/Launcher( 2827): onResume, Launcher: 1119776736
Line 590: 10-20 17:51:12.625 E/Launcher( 2827): Error finding setting, default accessibility to not found: accessibility_enabled
Line 591: 10-20 17:51:12.625 D/Launcher.HomeFragment( 2827): onResume
Line 597: 10-20 17:51:12.635 D/Launcher.MenuAppsGrid( 2827): StateObj::getAppsList() item count = 73
Line 721: 10-20 17:51:13.560 I/TwDVFSBroadcastReceiver( 2616): onLauncherIntent
Line 725: 10-20 17:51:13.625 I/TwDVFSBroadcastReceiver( 2616): onLauncherIntent
Line 774: 10-20 17:51:15.815 E/AndroidRuntime( 2827): at com.android.launcher2.DeleteIcon.startAnimator(Del eteIcon.java:154)
Line 775: 10-20 17:51:15.815 E/AndroidRuntime( 2827): at com.android.launcher2.DeleteIcon.setTrashCanLidUp( DeleteIcon.java:189)
Line 786: 10-20 17:51:15.815 E/AndroidRuntime( 2827): at com.android.launcher2.DeleteIcon.startAnimator(Del eteIcon.java:157)
Line 787: 10-20 17:51:15.815 E/AndroidRuntime( 2827): at com.android.launcher2.DeleteIcon.setTrashCanLidDow n(DeleteIcon.java:200)
Line 798: 10-20 17:51:15.815 E/AndroidRuntime( 2827): at com.android.launcher2.DeleteIcon.startAnimator(Del eteIcon.java:157)
Line 799: 10-20 17:51:15.815 E/AndroidRuntime( 2827): at com.android.launcher2.DeleteIcon.setTrashCanLidSha ke(DeleteIcon.java:229)
Line 810: 10-20 17:51:15.815 E/AndroidRuntime( 2827): at com.android.launcher2.DeleteIcon.startAnimator(Del eteIcon.java:157)
Line 811: 10-20 17:51:15.815 E/AndroidRuntime( 2827): at com.android.launcher2.DeleteIcon.setTrashCanLidUp( DeleteIcon.java:189)
Line 1295: 10-20 17:51:25.965 I/ActivityManager( 2298): Process com.sec.android.app.launcher (pid 2827) (adj 1) has died."
anything abnormal?
thx for the help

Categories

Resources