Logcat is the command to view and filter information from the Android logging system, but more often the name is used as a synonym for the Android logging system itself.

learn more… | top users | synonyms

0
votes
0answers
21 views

Android logcat to SD card is logging all data twice

I am logging logcat data to the SD card using a command like this: /system/bin/logcat", "-f", "/sdcard/mylog.log", "-v", "time", somefilters In my output file though I am seeing every line ...
1
vote
0answers
99 views

how do i fix java.lang.OutOfMemoryError

I go to run my program and it works fine up untill i hit the enter button then it stops for about 2-3mins then crashes i know it has somthing to do with the arraylist but how do i fix it? Here is the ...
0
votes
0answers
27 views

LogCat outputs Null Pointer Exceptions, but app isn't crashing

When starting my app, my LogCat fills up with this 06-11 23:51:51.635: E/AndroidRuntime(29950): FATAL EXCEPTION: main 06-11 23:51:51.635: E/AndroidRuntime(29950): java.lang.RuntimeException: Unable ...
0
votes
1answer
37 views

I cant find the error in my LogCat file

My Program crashes and i honestly have no idea. i have the logcat errors and i cant find it in there. any assitance would be greatly appreciated. I received a null pointer exception but i have no idea ...
0
votes
1answer
24 views

how to filter Android adb shell logcat using mutiple tags at one time?

As we know , we can use the command to filter the log in android: adb shell logcat | grep "tag1" Then ,the logs which contain the tag1 will be output. Now , I want to use one command that can ...
0
votes
0answers
10 views

android - app log collector

I want to collect the app log only not device events log like "Log collector app". Its just like a filter in eclipse ddms. Is any app are there? or Is any way to implement this? thanks,
-1
votes
1answer
28 views

what to do if there are no errors in the code but application does not run on the emulator? [duplicate]

I am developing a very simple android app with activities and intents.There are no errors in the code. Console shows: [2013-06-04 15:21:38 - Shoppapp] Android Launch! [2013-06-04 15:21:38 - ...
0
votes
2answers
46 views

How to extract IP addresses from a single long String in Java

I am writing an android app to do a traceroute command. Right now when the traceroute executes it puts the console output into a very long single string. This is done by the following code: ...
0
votes
4answers
320 views

LogCat is gone on android studio?

I have recently started to use Android Studio v0.1.1, And i can't seem to find LogCat... Is it gone? Or if not, how can I enable it? If it is gone, is there any way to enable something similar to log ...
0
votes
1answer
31 views

Logcat getting empty if any filter option in eclipse is clicked

My logcat is behaving very strange. If I have started or restarted the eclipse it is showing the logcat values but once I clicked any option For example Allmessages(nofilters) or ...
2
votes
1answer
72 views

How are logcat messages saved

Following Where are Android logcat files stored? I learn that logcat is saved as an internal ring buffer in the kernel, which is sized 256kb. Applications use a special API to ask the kernel to save ...
0
votes
2answers
335 views

Could not find actionbarsherlock.apk

I'm trying to run my app on a real device from Eclipse. After adding actionbarsherlock as a reference, I can't get rid of this error: Could not find actionbarsherlock.apk. Here is the full console ...
4
votes
1answer
402 views

Link of class 'Landroid/support/v4/app/Watson; failed - Unable to resolve superclass of Lcom/actionbarsherlock/app/SherlockActivity

I have an android project that I was working on a few weeks ago it was working fine in my last attempt, but now the project all compiles fine, but while launching application, I am getting the ...
0
votes
1answer
24 views

Skipped Frames On Choreographer On Changing Background Colors

Hi im trying to build an app which turn screen to some thing like flash lights or police siren .tested on galaxy gio with 2.3 android on it .on 2.3 + devices it stucks on first color. the error on ...
-2
votes
0answers
32 views

how to use external xml in my android application [closed]

Good afternoon. Could someone tell me how to read the following external XML and pass to a String. http://www.aemet.es/xml/municipios/localidad_41091.xml I've tried many ways but I get the ...
0
votes
2answers
62 views

Android ListView Activity Throws a NullPointerException when restarting after a prolonged period of time

Problem I'm making a simple app that retrieves a data set from a webserver in JSON form, parses it into objects contained in an ArrayList. This array list is then output in the form of a list view. ...
1
vote
1answer
1k views

Logcat message: error opening trace file: No such file or directory (2) Can anyone help me?

Java Code: public class SplashActivity extends Activity implements OnClickListener { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); ...
0
votes
3answers
92 views

Logcat doesn't shows anything

I was working on my android application and using eclipse to build it and was displaying some values in android logcat. everything was working fine but suddenly now when i run my application logcat ...
0
votes
1answer
21 views

Adding a filter to log output in cmd

I'm using adb -s [deviceId] logcat to print the device's log output into cmd. But now I want to add a TAG filter to the shown output. How can I do that?
1
vote
4answers
149 views

How to use WebView in a tab and call “(LocalActivityManager activityGroup)”?

I have three tabs that I want to use to utilize my three webviews to display specific domains. Everything builds find but when I try to launch the app it force closes when I Run it & if I Debug ...
1
vote
1answer
90 views

AndEngine GLES 2.0 - Power button issue - App Crashes onResume()

App crashes when i press power button to lock screen and press it again to unlock screen. App crashes after scren gets unlocked. This is a stackTress i got in logcat: 05-09 18:46:57.254: ...
0
votes
0answers
49 views

geturl for YouTube videos doesn't return any value

hi in my android application I have a list-view shows list of videos from YouTube channel but when user clicks on any of the videos it doesn't play it just go to YouTube Home page I tried to log the ...
0
votes
2answers
77 views

Android save login user details in application

I am a web developer and new to android and studying ... For first step I made an user login system using PHP-MySQL web services. The application communicating with the web service pretty well and ...
0
votes
0answers
38 views

Android - Cannot get full logcat data

I writing log from my application for certain events. But I when tried to read all the logs from first time of log entry it gives partial logcat data only. Before starting log I have cleared the ...
0
votes
2answers
53 views

App stops working

I am totally new in Android and this is my main activity. I encounter this error in my every project: import android.os.Bundle; import android.app.Activity; import android.view.Menu; ...
0
votes
1answer
46 views

how to hide trace tag in eclipse(Android)

How to remove unnecessary trace or tag in eclipse(Android). Like this trace 05-02 06:16:49.093: W/Trace(1227): Unexpected value from nativeGetEnabledTags: 0 05-02 06:16:49.093: W/Trace(1227): ...
1
vote
2answers
61 views

Button in android application causes null pointer error

I am programming an android application and I am using buttons on a homescreen that take a user to other screens. Currently all of my buttons work but one. In my homescreen I am trying to take the ...
0
votes
2answers
65 views

Null Pointer Exception In sqlite Database

I'm coding an android application that allows a user to search in a database and see results from the database based on their search. Currently I am receiving a NullPointerException and I am not ...
0
votes
1answer
52 views

Android application unable to start activity

Hello I am programming an android application that has a database that allows the user to search through it for specific events. Currently I am running into an issue with the activity getting ...
1
vote
1answer
60 views

Getting AndroidRuntime exceptions from LogCat and write to a file

When I navigate to my platform-tools folder under the android-sdk folder, I'm able to perform some operation so I can get outputs from LogCat Like this command for instance adb logcat ...
0
votes
1answer
67 views

runtime exceptions in android logcat

I want to retrieve data from server (WAMP) database and I want to display in a single listview. I took long time to learn about this finally I implemented but the logcat shows several android runtime ...
0
votes
0answers
22 views

Logging things that happend in android by specific package name

I'm after a solution for a heavy logging mecanism, to log out what happens when for instance an ANR occurs at a specific packagename. What I want to achieve, is to log the information LogCat outputs ...
0
votes
2answers
200 views

emulator shows unfortunately, myapp has stopped

when i run my application emulator simply says "unfortunately,myapp has stopped". the logcat throws error. my logcat error 04-21 15:24:13.661: I/Process(25846): Sending signal. PID: 25846 SIG: 9 ...
-1
votes
2answers
115 views

how to make a sorting letter as alphabets

am new to android ,I juz wanna know how to make like when i click button1, then button2 the text view will show 1 2,,, but if I clicked button2 then button1 it will show 2 1 this is my codes but now ...
-1
votes
1answer
70 views

How to read logcat written through my application in all android os

I need to capture all the logs written through my application. I know from Jetllybean OS we can read need only our application log. But when I tried by using command "logcat -d" using exec method by ...
0
votes
2answers
63 views

Good Logging Techniques for Android

I wish to introduce some logging to an android application that I'm taking over. I wish to be able to reference this log file during developing, and to get a copy of the log if a customer has issues ...
-1
votes
1answer
76 views

Does my Java Virtual Machine think that I'm under unix even when I'm on windows?

I'm bewildered about the results that I'm obtaining in the Logcat. I'm trying to read a file but I'm getting a FileNotFoundException. Right now I'm hardcoding the url where the file is located. ...
2
votes
2answers
93 views

Rather odd behaviour of Log

I wrote a very simple Android Activity: import android.os.Bundle; import android.app.Activity; import android.util.Log; public class MainActivity extends Activity { @Override protected void ...
0
votes
1answer
56 views

How to load faster Parent Activity from Child Activity?

actionBar.setHome fuction calls Application Home Activity. When it is calling, it's just like re-opening the app. I mean I have to wait to load Home Activity. I think there may be a way not to ...
0
votes
1answer
56 views

ADB logcat batch never ends

I am trying to create a batch file that will do some ADB commands that I use on a daily basis. I am stuck with adb logcat because the logcat never ends. Is there a way to end it after so many seconds? ...
0
votes
3answers
112 views

NullPointerException when setting textView on viewholder (not null)

I have a custom adapter class, inside the getView I am experiencing problems with the viewholder and setting/accessing elements to it. I consistently receive a NullPointerException when I try to set ...
0
votes
0answers
50 views

Jar files in android

I am trying to enable logs in the android source code. The normal procedure is as follows - Edit all the files in which you want to enable the logs = 15-20 minutes Build the whole binary - 1 hour ...
0
votes
0answers
59 views

How to redirect the content in Logcat to file on android?

Recently, I'm developing a android application. I've got a lot of Log.i or Log.e in my code. When I test the app on my phone, which is connected to my computer via USB, I can get all the logs under ...
0
votes
1answer
109 views

Implementing video recorder, crashing app

I'm implementing the video recorder sample from google into my app, the code looks like this MediaRecorder recorder; Camera mCamera; SurfaceHolder holder; boolean isRecording = false; ...
0
votes
1answer
131 views

App force closing when turning screen off

I can't figure out why my app is forceclosing when i turn off the screen, this is the logcat My app has scrolling text, displays widgets, gets user location, has a pager, gets the current time, gets ...
0
votes
1answer
97 views

How to store logcat output with all filters & tags in a file on SdCard?

i am using this code to save logcat output to sdcard :- public String ReadFromCMD(String[] strCmdArgs) { ProcessBuilder cmd; String result=""; try { cmd = new ...
0
votes
3answers
90 views

NullPointerException at android.app.activitythread

I'm trying to get the images in a grid view using universal image loader. But once I made this code the log started giving some error saying 04-03 21:45:12.653: E/AndroidRuntime(1271): FATAL ...
0
votes
0answers
31 views

Android on sg3: Head of stack-trace missing

On my Samsung S3 I use c:geo app for geocaching also developing. I visit a strange behaviour that the head of stack traces is cut of and is not displayed in aLogcat. There are no more parts of the ...
3
votes
3answers
150 views

Unable to pause activity?

I'm new to Android development. I wrote this code and I just can't figure out what's causing my app to crash. It's telling me that the activity wasn't able to be paused. I'm sure it's something I'm ...
0
votes
1answer
39 views

How do i get rid of these Log cat errors..?

m getting following errors on running my android app...pls help me out its not making any sense.. 04-02 23:01:33.375: E/AndroidRuntime(4779): FATAL EXCEPTION: main 04-02 23:01:33.375: ...

1 2 3 4 5 8