Android Development Tools (ADT) is a plugin for the Eclipse IDE that is designed to give you a powerful, integrated environment in which to build Android applications.

learn more… | top users | synonyms

-1
votes
0answers
16 views

ADT - application doesn't show on the phone, never starts [closed]

I'm trying to run examples from Android SDK, but I'm failing somehow. Console shows: [2013-05-09 13:58:13 - BasicGLSurfaceViewActivity] ------------------------------ [2013-05-09 13:58:13 - ...
0
votes
1answer
36 views

Text scale up to fit a TextView and an EditText

I want to fit the text size of a TextView and an EditText to to match their bounds. I searched a bit and found the code below. So I created a new class with the code below: package com.example.test; ...
-2
votes
0answers
18 views

Ubuntu Crash when i add an imageview in layout editor on Eclipse [closed]

When I add an ImageView in layout editor on Eclipse ADT Ubuntu crash! I tested with Unity and Gnome Classic. I don't know what is the problem because i don't know the error. Is there any log to view ...
0
votes
0answers
17 views

ADT logcat displayes weird message /sbin/sh: can't fork

I am completly new to this. I installed ADT just to get log while I am testing an mobile app. From what I see there are some cool filters that I think will help me but I have this problem. I run adb ...
0
votes
1answer
40 views

Android device is seen by eclipse but application won't start

I'm new to android programming so I was trying an application the other day and when I hit "Run" in eclipse, a prompt shows up and I choose my device from there and it starts launching it. The ...
0
votes
0answers
16 views

Eclipse ADT: Impossibly weird boolean behavior

I'm having trouble changing variable values while at a breakpoint in debug mode. As a test, I have a simple loop with a boolean that gets toggled every pass: booleanTest = !booleanTest; Works ...
0
votes
1answer
25 views

Using ADT and SDK manager, attach android source code to eclipse

After installing ADT, I used SDK Manager to download the source codes for the latest android API. Now when I run the Eclipse version that was provided with the ADT, I still can't see the android ...
0
votes
0answers
18 views

how to fix xml issues after adt upgrade to 21.0.0

I inherited an adt project that was developed in ganymede for java developers with adt plugin 20.0.3. I grabbed it from vss and imported it into my fresh install of adt 21.1.0 (the android bundle). ...
0
votes
0answers
33 views

Choosing device out of Bluetooth paired devices and connecting

I'm making an Android app for a chatsystem between 2 android devices. I've run into a bit of a wall now. My app is currently a simple system with a large textbox (for the chat history) an EDITTEXT, ...
0
votes
0answers
16 views

android emulate starting Panic fail on UBUNTU 12.0

I have been looking for a solution for a fail on starting android emulator. I have read some solutions for windows, but in this case, I have ubuntu 12.10. The error says: Emulator] PANIC: Could not ...
0
votes
2answers
32 views

Cannot create new Android Application Project

So, I'm trying to start a new Android project, but I can't get through the first step. Everything looks good to me, but the 'Next' button just won't light up for me. Of note, the 'Theme' menu starts ...
0
votes
0answers
15 views

Task window doesn't open upon task activation using Mylyn in Eclipse ADT

The relevant file editors open when I activate a task in Eclipse, but the task window/editor for the activated task itself does not open. I'm using the Eclipse ADT, and the activated task window would ...
-1
votes
1answer
33 views

Error when running adt bundle on Ubuntu 13.04 (Solved)

when I run Eclipse on Ubuntu I faced with the following error i'm sorry for bad speak english image :bayanbox.ir/id/5851514597346971673?view
0
votes
0answers
13 views

Eclipse (Android) no longer showing available methods or args with ctrl-space

I feel like an idiot, but I just set up a virgin installation of the latest Android SDK + cobundled Eclipse on a new computer, and now I can't get ctrl-space auto-suggestion to work. Here are some ...
1
vote
1answer
18 views

Disable Lint warning “The view name suggests this is a number but it does not include a numeric inputType”

I've searched through the list of warnings in the Lint Error Checking preferences but can't find it. The list is a bit too long to check every warning to see if it's the one I want, and filtering the ...
1
vote
0answers
58 views

Layout looking the same across all devices using RelativeLayout

I'm using API 10. I want to make my layout looking the same across all devices. I can achieve that by using LinearLayout with weights. It works perfectly. As seen on the image below, this is exactly ...
-4
votes
0answers
29 views

How to get ADT user input? [closed]

How to get user input in ADT? in eclipse it is String name=input.nextLine("Enter your name" ); but i need to put it in android ADT? could you please help me how to get user input in adt? Thank you,
0
votes
1answer
28 views

Resizing an image to look the same across all devices

I read the http://developer.android.com/guide/practices/screens_support.html and I understood only a few things. So, I have an ImageView with android:src = "@drawable/logo". The logo.png is placed ...
0
votes
1answer
27 views

ADT: Avoid duplicating code in package with dependency on another deployed package?

When I have e.g. a custom service and a custom activity in the same ADT project, then I can use this in the service, to start my activity: Intent i = new Intent(context, MyCustomActivity.class); ...
0
votes
0answers
22 views

Creating a Customized plugin for Android development in Eclipse

So I want to create a custom project template for eclipse, i.e. I want the user to be able to click file->new project-> my custom template... to start a project. I've found that to create this type ...
0
votes
3answers
33 views

External Java Jar is not working in Android ADT 21

I have created a java project in Eclipse and create a runnable jar. I am trying to use in a android app but it is showing classDefNotFound Error. Moreover, I tried every thing as solution as mentioned ...
-4
votes
0answers
27 views

Plague inc. android game. What tools did they use to create such game? [closed]

I was playing a game called Plague Inc. and I was wondering what tools did they use to develop it. From where I stand as a noob, I can't figure out how did they make the layout, being the same across ...
0
votes
1answer
59 views

Android Device Chooser not showing my device but adb and Eclipse do

I am trying to run my android app in an attached device (Sony Ericson Xperia X10). The device is recognized by adb [fonoro@localhost platform-tools]$ ./adb devices List of devices attached ...
0
votes
1answer
44 views

How to create an animated GIF from JPEGs in Android (development)

I am looking for a simple tutorial how to create an animated GIF in a native Android application. The source files should be JPEG (from camera or what ever) and the output should be saved as GIF on ...
-5
votes
2answers
46 views

Alternatives to Eclipse for Layout XML editing? [closed]

Are there any other free tools out there that can be used to edit the Layout XML files. I need code completion. The Layout editor in the most recent version of Eclipse/ADT is not working.
-1
votes
0answers
32 views

Is there any way to contact Google's ADT developers/support? [closed]

I have a rather large project that was mostly developed using a previous version of Eclipse and the ADT. This past February, I updated to Juno and the latest ADT. I have had tons of problems since ...
0
votes
1answer
27 views

Invalid APK file while loading default app

I wanted to try to make an Android app, so i downloaded the entire dev pack. Everything seems to work fine, but when i try to launch the app (i haven't modified anything, it just has the default code ...
0
votes
0answers
16 views

Android 3rd Party Addon Repositories w/ ADT 21.1.0

I have seen around this site as well as the internet, that Samsung (and I am assuming other companies) have released virtual device libraries as a third party addon. I have been searching all over for ...
0
votes
0answers
12 views

Adding Background images in ADT

I really need help (am a newbie to ADT/Eclipse), I set up a back ground image by placing the image first in the res/drawable folder and then proceeded to place it in my application usind the: ...
0
votes
1answer
58 views

how to let dalvik dump whole app heap memory when OOM happens

I am a beginner for Android develop. And currently I am looking for an automatic way to dump memory when out of memory error happens. I read that adding -XX:+HeapDumpOnOutOfMemoryError ...
1
vote
1answer
36 views

Tutorials about building XML layouts that look equally across all devices using ADT [closed]

I don't know how to produce the same layout across all devices. If I use LinearLayout and use weight the problem is solved, but two new problems occur: 1) I get a warning on Eclipse that nested Views ...
0
votes
1answer
37 views

Android - Currently running activity

I want to make an Android service that will run in the background and be able to get the name of the currently running activity. Does anyone know how to do this?
0
votes
0answers
23 views

Android - have service notified when app is opened

I'm trying to make a widget for Android 2.3+ that will show when the last time the user had Facebook open was. I know that one way to get this information is to use the android.permission.GET_TASKS ...
0
votes
3answers
48 views

KILL “Android.process.xxx” processes

It is possible to kill "Android.process.xxx" system processes programmatically WITHOUT root permissions (e.g. "Android.process.media")? By the way I'm trying to develop (with ADT v21.1) an app with ...
0
votes
1answer
32 views

How to preserve the ending values of an animation?

I use API 10. I have an ImageView nested inside of a LinearLayout. The ImageView has an OnClickListener (or an OnTouchListener, I'm sure which one I ll use at the end). The ImageView is centered on ...
2
votes
0answers
60 views

ADT Bundle for mac is damaged

I download the ADT Bundle for mac and save it under /development. When I try to open eclipse, my mac says "Eclipse" is damaged and can't be opened. You should move it to the Trash. I trash the whole ...
0
votes
0answers
31 views

Android Project Not Importing in ADT. Changed APK to zip, unpacked and can't make project from existing source

I am working with another developer that gave me some links to APKs that I can look at before we start looking. He told me I could rename them to zips and then extract them. That worked. Now I want to ...
5
votes
1answer
66 views

“Connection with adb was interrupted.” Have tried EVERYTHING

Connection with adb was interrupted. 0 attempts have been made to reconnect. You may want to manually restart adb from the Devices view. I keep getting this error message EVERY TIME I try to ...
0
votes
1answer
48 views

Having the extra same layout across all devices. How?

I want to make a game with exact the same Layout across all devices. I'm familiar with dp, wrap_content and fill_parent. But they don't produce the EXACT same Layout. Is there a way to make the width ...
0
votes
0answers
51 views

ADT Demo - UI for each tab of a tabbed activity Issue

I've decided after using HTML5 for so long and having got a reasonable understanding of it to wade in to Java for Android. Using the Wizard in Eclipse ( Scrollable Tabs + Swipe ) and the ADT I've ...
0
votes
0answers
20 views

ADT logcat displaying all null characters under ubuntu

The ADT logcat output seems to be outputting all null characters (the ones that look like [] ). I've already copied all the fonts from window$ (C:\Windows\Fonts*) to my universal fonts folder ...
0
votes
0answers
37 views

Playing a small resolution video on a higher resolution Device, in fullscreen mode

I have a 480x360 mp4 video nested inside a fullscreen VideoView. What I want is to play it on a higher resolution physical device on fullscreen. I don't mind if the video gets distorted by stretching ...
2
votes
1answer
58 views

ADT and jdts - Configuring with SQL Server 2012

I'm trying to get the ADT bundle (Eclipse) to connect to an SQL-Server 2012 database. This is what I'm trying through SQL Explorer: And I am getting this error: I have a user called 'admin' ...
-5
votes
0answers
93 views

Android NDK upgrading from 8d to 8e project not compiling error: undefined reference to [closed]

I have a working project for a few month now using NDK version 8d. ive updated my ndk to 8e and now the project is not compiling Note : the samples projects of the ndk works fine so its not ...
0
votes
1answer
82 views

error (1, -2147483648) Cannot Play this Video

I am trying to play an .mp4 video file, which I have added in a raw folder. The result is that I always get an error (1, -2147483648)in LogCat. After some research I notice this is caused by an ...
0
votes
1answer
71 views

Animated backround for my android activity using Eclipse and ADT

I want to create a background that covers the whole screen of my Activity. Just like: android:background="@drawable/background" But I want this background to be animated (60 frames), looping and ...
0
votes
2answers
45 views

Eclipse won't export apk file after updating ADT?

I updated my ADT plugin within Eclipse IDE on April 13th and now it won't export my projects with the apk file extension. Can someone please help me fix this? I can't figure out what's wrong. Thank ...
3
votes
2answers
76 views

How to naming correct Package name?

I already read, -> Creating an Android Project ( http://developer.android.com/training/basics/firstapp/creating-project.html ) -> Unique Package Names ( ...
0
votes
0answers
15 views

How to debug an ADT exit code: 5?

I am running ADT to package my project and every so often I get an ADT error code 5 (See below). This usually goes away after a few minutes with no changes what so ever. On adobe's site error code 5 ...
0
votes
2answers
114 views

How to find zombies in Ada?

Im trying to use the System.Adress_image to list all the adress of the allocated objects in the program. However I can only print the adress for variables that I have. For example I have a stack and ...

1 2 3 4 5 22
15 30 50 per page