Questions tagged [ddms]

DDMS is an Android SDK tool that provides port-forwarding services, screen capture on the device, thread and heap information on the device, logcat, process, and radio state information, incoming call and SMS spoofing, location data spoofing, and more.

The DDMS (Dalvik Debug Monitor Server) is a tool that comes with the android SDK. It provides port-forwarding services, screen capture on the device, thread and heap information on the device, logcat, process, and radio state information, incoming call and SMS spoofing, location data spoofing, and more.

More information about DDMS is at http://developer.android.com/tools/debugging/ddms.html

615 questions
0
votes
1 answer

Android: memory/resource leak

I have a memory allocation error while running an android app I am developing. This only happens when I rotate the screen repeatedly, each rotation resulting in a little more memory being leached until the app crashes. I was kind of reluctant to…
PsychoMantis
  • 993
  • 2
  • 13
  • 29
0
votes
1 answer

DDMS Debugging: Android app (I'm developing) causes device (ONLY Nexus 5) to hang and must restart when using ZXING and Dialog

I'm developing an android app. I'm using ZXING fragment open source barcode scanning. I have an option to manually input the barcode. So when the user press the manual input button I open a dialog with edit text. Before the dialog appears I pause…
bentzy
  • 1,244
  • 2
  • 15
  • 31
0
votes
1 answer

On Android, impossible to use DDMS method profiling on emulators or devices

I have a problem when I try to use method profiling on my Windows 7 64 bits platform. When I do so, this kills a bunch process on any emulator or real device I use, including the one I want to profile. Or nothing happens at all (see trace below) Is…
Xhelas
  • 36
  • 4
0
votes
1 answer

Can't find CSV file in DDMS view?

I have a CSV file I am creating with the following code: package com.tukajo.ioiograph; import java.io.BufferedWriter; import java.io.File; import java.io.FileWriter; import java.io.IOException; import java.util.ArrayList; import…
Timothy Frisch
  • 2,995
  • 2
  • 30
  • 64
0
votes
1 answer

How to access files in Emulator SD Card using File Explorer?

I have written a file "myData.txt" to the emulator SD card, and I can find it in mnt/sdcard/download using file explorer. Is there a way to check if I have written correctly to the file without reading it again in my Android program? How about…
migs
  • 289
  • 5
  • 14
0
votes
1 answer

DDMS Won't Show Debug Output

I am currently taking an Android course and I just learned about DDMS and debugging with Logcat. However, the problem I have is that there are no outputs being shown on DDMS whenever I run the program on the emulator (using Eclipse IDE) Here is my…
freddiev4
  • 2,501
  • 2
  • 26
  • 46
0
votes
1 answer

HTC one just updated and now wont connect to DDMS

I don't know why, but all my drivers are up to date and my HTC one won't connect. Recently my HTC one updated and now when i connect it to my mac, i see it start charging. I even see the USB connection icon show up but DDMS and ADB both don't see…
erik
  • 4,946
  • 13
  • 70
  • 120
0
votes
1 answer

There's something weird about my sql query

I have a table named kategori like this : _id | nama 1 | Percakapan Umum 2 | Angka And I try to SELECT with a simple query like this select * from kategori where nama = 'Angka' And it returns 0 rows as shown as this message 0 Rows…
0
votes
2 answers

My Activity cannot be connected with my Database

I have an activity named Awal.java and the code : public class Awal extends Activity implements OnItemClickListener { private Cursor kategori; private MyDatabase db; private List ktg; @Override protected void…
0
votes
2 answers

Folder don't see in DDMS whereas folder was created Android

I don't understand why i can't see the folder that i had created in the DDMS of Eclipse. At the beginning of my activity, i call this method : public void createFolderSignature(){ File signaturePointFolder = new…
Thomas Trabelsi
  • 330
  • 1
  • 8
  • 21
0
votes
1 answer

Data folder not opening in File Explorer

A very brief question: I'm trying to locate my SQLite database in DDMS by navigating to /data/data/com.application.package/databases/database_name. I can locate the data folder in my File Explorer, but I apparently cannot open it to reveal its…
user3694391
  • 133
  • 1
  • 2
  • 12
0
votes
3 answers

Where does Eclipse on a PC store the database?

I have Eclipse installed on a Windows 7 PC and I'm writing my app there, using an emulator. In DDMS within Eclipse, I can see the database my app has created BUT it is shown in a UNIX directory structure, as I might find it on an Android device, not…
Nelmo
  • 195
  • 1
  • 3
  • 13
0
votes
1 answer

Native memory leak detection android

Where can I find libc_malloc_debug_leak.so and libc_malloc_debug_qemu.so for different android versions (Ice cream sandwich, jelly bean, KitKat) and different devices (Galaxy Nexus, Nexus 7, Nexus 10) ?
Naresh Kumar
  • 277
  • 4
  • 18
0
votes
1 answer

I cannot view any folders (or it shows it as empty) in my ddms - at data/data - even though the file path saves to that location

How can I fix this so that I can see a) my text file that is saved in data/data and b) a database that I have saved in that location?
Larry Stent
  • 99
  • 2
  • 9
0
votes
1 answer

cannot find Window -> Preferences -> Android -> DDMS -> ADB Connection Timeout (ms)

I'm new to android development and trying to install my first hello world app to a phone vis USB and getting Failed to install HelloWorld.apk on device 'HT0A6PY04566': timeout So after searching it seems I should try to increase the timeout as per…
KevInSol
  • 2,560
  • 4
  • 32
  • 46