Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
8answers
123 views

How to make sure that momentum is kept after a major development milestone?

My team (4 people) have just reached a major milestone in our development, putting us at about 2/3 finished, but I guess the stress has caught up to everyone and all the gears have ground to a near ...
2
votes
1answer
397 views

Android Image Capture Saving Small Sizes on Milestone

I've written a simple app that opens the camera and supplies a path for saving any captured images. The code basically looks like this: File file = new File( Environment.getExternalStorage() + ...
2
votes
3answers
4k views

onDestroy() won't get called after this.finish()

I'm wondering why the Motorola Milestone with 2.1-update1 behaves differently from the Emulator or e.g. the Nexus One. I am trying to exit my app with: @Override protected void onPause() { ...
1
vote
1answer
147 views

has anybody the trac report to get all tickets without milestone?

i'm looking for the TracQuery for the trac report to get all tickets without assigned milestone listed. have you already composed this query, if yes, would you share it? thx in advance.
1
vote
0answers
231 views

Cannot update my motorola to 2.2 froyo

I'm trying to update my motorola droid from 2.1 update-1 to 2.2. when I go to settings->about phone->system update it says there is update available I download it and after restarting when it starts ...
1
vote
1answer
85 views

How Implement a system to determine if a milestone has been reached

I have a table named stats player_id team_id match_date goal assist` 1 8 2010-01-01 1 1 1 8 2010-01-01 2 0 1 9 2010-01-01 0 5 ...
1
vote
2answers
3k views

Can't access Motorola Milestone on Ubuntu 9.10 via adb (HTC Magic works perfectly fine)

I've two phones, the HTC Magic and since today also the Motorola Milestone. While the Magic works perfectly, I'm not able to access the Milestone via USB (adb devices). Here are my log outputs and ...
1
vote
5answers
481 views

Application version or milestone Naming Schemes

I'm looking for "schemes" for application version or milestone naming. I'd like to find a naming scheme that suits my current project but I think we should gather here the more interesting schemes to ...
0
votes
1answer
84 views

How to solve java.lang.NoSuchMethodError: android.content.pm.PackageManager.currentToCanonicalPackageNames

I got this exception 01-03 00:28:43.465 E/AndroidRuntime(13556): java.lang.NoSuchMethodError: android.content.pm.PackageManager.currentToCanonicalPackageNames 01-03 00:28:43.465 ...
0
votes
3answers
97 views

Proper way to use versions and milestones

What's intended purpose of versions and milestones in trac? How to use them? How is milestone different to version?
0
votes
2answers
142 views

Android: Milestone and Galaxy have same resolution / dpi qualifiers for drawable, how to differentiate?

I'm developing an application that I'm testing on both the Motorola Milestone and the Galaxy Tab 10.1. My issue is that I'm trying to get my icons to scale properly by attaching qualifiers after the ...
0
votes
0answers
474 views

Motorola Milestone Android - Bluetooth Issue - Paired but not connected [closed]

im using a Motorola Milestone. I have tried to connect to various bluetooth devices (laptops/other android phone) with this phone but none of them work. I can pair them But after pairing it says ...
0
votes
1answer
57 views

how to obtain currentstatus(and other milestones) of wikipedia articles?

I am using Python and MySQL to query mediawiki database to get the currenstatus of articles (i.e. whether the article is FA, GA, GAN etc.) but have been unable to do so. I know currentstatus is ...
0
votes
1answer
107 views

maximum number of primitives on FBO

Is there a limit on maximum number of primitives to be rendered on FBO per frame? If so, is there any glGet or any other API to find out the maximum number of primitives allowed per frame? I draw a ...
0
votes
1answer
166 views

Target in HTML how to open in Adobe Flash Player

So here I was creating an HTML menupage for a presentation that uses flash animations. I am using this code : <a href="url" target="_blank></a> Now as you seem the target="_blank" opens ...
0
votes
1answer
297 views

Git Repo Problem

I was trying to build a android release. I found this code: mkdir cm4mm cd cm4mm repo init -u git://github.com/nadlabak/android.git -b gingerbread repo sync vendor/cyanogen/get-rommanager . ...
0
votes
1answer
270 views

WiFi gets jammed in “turning off” state

Hi I am developing an application for controlling the WiFi interface and I have found a problem: WiFi interface gets jammed on the Xperia X10 Mini (I tested on three devices of the same model). ...
0
votes
1answer
190 views

A problem with image capture on Motorola Milestone

Below is the simple code fragment to illustrate the problem. Why the value of the field "tag" logged in method "onActivityResult" not being "tag_modified"? I also tried others async call of ...
0
votes
0answers
132 views

motorola milestone image pick failing

I am calling Intent intent = new Intent(); intent.setType("image/*"); intent.putExtra("noFaceDetection", true); intent.putExtra("outputX", 80); intent.putExtra("outputY", 80); ...
0
votes
0answers
295 views

How to map physical key codes to KeyEvent constants for secondary key mapping on devices with limited keyboards

Obviously my google-fu isn't good today as I can't find a solution to a simple problem. Some Android phones like the Droid/Milestone don't have a full keyboard, notably the numeric keys are absent ...
0
votes
1answer
222 views

OpenGL textures fails on Motorola Milestone

I have troubles with OpenGL textures on Motorola Milestone with 2.1 firmware. Each call to glGenTextures fails with error GL_INVALID_OPERATION and sets the id with random numbers. The exact same ...
0
votes
5answers
107 views

tool to demonstrate software progress

I want to demonstrate how much progress has been made on our project for the client. We have a number of milestones and multiple features for each milestone. What I think would work is if we could ...
0
votes
2answers
975 views

Android (Milestone/Droid): View.OnKeyListener not working correctly?

I am using a simple EditText and register an View.OnKeyListener. Some GUI changes should happen (fading in/out of views) when certain conditions for the EditView text apply. In the emulator, this ...