[android-developers] Help Activity History Stack...

2009-07-31 Thread Moto
Hello could someone help me out choosing the right flags? I have 3 activities, I want to allow only one of each of the activities to be on the history stack at one time. A>B>C>[GO TO B] gives me A>C>B using FLAG_ACTIVITY_REORDER_TO_FRONT flag. Now the problem is that when I call B from C I wan

[android-developers] Re: About to receive the mms

2009-07-31 Thread PianoPan
Yes, I already add this permission. On Fri, Jul 31, 2009 at 11:47 PM, Jack Ha wrote: > > Do you have the following in your AndroidManifest.xml file? > > > > -- > Jack Ha > Open Source Development Center > ・T・ ・ ・Mobile・ stick together > > The views, opinions and statements in this email are thos

[android-developers] RTSP stack implementation

2009-07-31 Thread Vinay
Hi, I am working on making RTSP url to work on Android. 1. I have used MediaPlayer and VideoView to play the RTSP url but both of them fail to play in G1 Device and emulator. Error is PVMFFailureiin PLAYER_INIT. 2. So I thought of implementing a RTSP client from scratch. I have developed a small

[android-developers] can we record only aac stream?

2009-07-31 Thread manoj
Hi friends, I want to record the audio as aac file. I can able to record raw amr file. In the same I would like to record the aac file. Is it possible to record the audio as aac file? if so how? can any one please suggest me the solution? Thanks, Manoj. --~--~-~--~~~---

[android-developers] Add menu item to Gallery's share BY CODE

2009-07-31 Thread Anthony Xu
Hi All, I must to new a thread. I know how to implement this issue by Menuifest.xml, see also: http://groups.google.com/group/android-developers/browse_thread/thread/62a514363c751464/feecc033d0265606?lnk=gst&q=intentfilter+share#feecc033d0265606 But my question is how to add share menu of Galle

[android-developers] LinearLayout fill the middle

2009-07-31 Thread droidin.net
I have a vertical, set height (300px) LinearLayout (LL) with 3 nested LLs. 1 and 3rd are set with android:layout_height="wrap_content" and the middle one with android:layout_height="fill_parent". To my dismay, 3rd LL get's pushed out with 2nd one filling parent layout right to the bottom. How do I

[android-developers] Re: Faster "Canvas.drawLine()" for rectangular lines?

2009-07-31 Thread mickrobk
Also, canvas.drawLines might be worth looking into http://developer.android.com/reference/android/graphics/Canvas.html#drawLines%28float[],%20android.graphics.Paint%29 On Jul 31, 8:33 pm, mickrobk wrote: > A few ideas: > > you might see significant perfomance benifits by > usinghttp://develope

[android-developers] Re: how to add a line drawing to ListView?

2009-07-31 Thread greg
My mistake causing the problem was in the XML defining the custom row's layout where I typed a tag rather than a tag. That capital 'V' was a mistake I was Very glad to find. I'll certainly be extra careful when typing future XML layout definitions. - Greg On Jul 29, 2:17 pm, greg wrote: > Th

[android-developers] Re: Faster "Canvas.drawLine()" for rectangular lines?

2009-07-31 Thread mickrobk
A few ideas: you might see significant perfomance benifits by using http://developer.android.com/reference/android/graphics/Picture.html to cut down method invocation overhead - if you have a few frames where the lines don't change. it might even be worth it to have it draw offscreen lines so the

[android-developers] Re: Is there any UI can connect to SQLite database?

2009-07-31 Thread 宋庆欣
becasue I find out that it can be readed in emulater by adb.but the UI is quite simple. 1.open cmd,and input "adb shell" 2,go into the folder that the database filles's in.mostly, it could be "data/data//database" 3,input sqlite3 Mark and Roman,Could you tell me how to use the Sqllite manger i

[android-developers] Re: Is there any UI can connect to SQLite database?

2009-07-31 Thread 宋庆欣
Does it need to copy the database file out of the phone? 2009/8/1 Roberts, Mark > I have used both SQLite Manager in Firefox and MesaSQLIte > http://www.desertsandsoftware.com on a Mac. Both work well. > -- > *Mark Roberts* > *Software Developer* > ·T· · ·Mobile· stick together > > The vie

[android-developers] Re: Android BUG....

2009-07-31 Thread dotclick
So what is being said is Google acknowledged the bug but nobody has a clue as to how, when or version it will be resolved 9 months after it was reported. Again, I ANYONE WANTED was an ETA on the dam fix that should take a develop 2 hours to resolve. At this point, I can't refer anyone to use any

[android-developers] Re: Toast or AlertDialog problem

2009-07-31 Thread CraigsRace
You could create your own dialog class which started a thread that calls finish() (back on the EDT) after x seconds. On Aug 1, 8:35 am, Stefan wrote: > Hi, > > i need a alert dialog, which pop ups every time, when the location > changed (after 100 meter for example). > I want to have 2 Buttons i

[android-developers] what is the point of ProviderTestCase2?

2009-07-31 Thread Carl H.
Hello, I am trying to test my Content Provider. I obviously want to test against a mockup db and ProviderTestCase2 seems to do the trick. When tested, the case creates a new db names test.. The schema is all good and the description of the ProviderTestCase2 is what I am looking for. However, I am

[android-developers] Re: Garbage Collector - best practice

2009-07-31 Thread f_heft
Thanks very much, this video is great! Helped me a lot, now this isn't a problem anymore :) On 30 Jul., 17:46, "Yusuf T. Mobile" wrote: > I recommend seeing this lecture from GoogleIO on the same > subject:http://code.google.com/events/io/sessions/WritingRealTimeGamesAndroid... > > To your ques

[android-developers] Linux kernel Include files

2009-07-31 Thread Nima
Hi, We are trying to call the linux kernel APIs enable_irq(), disable_irq () etc directly from the opencore/codecs_v2/video/dec/src .There are lot many compilation errors getting listed. We would like to know whether kernel APIs can be directly called from Opencore??? Has anybody tried like thi

[android-developers] Re: Getting the PERSON_ID based on CallLog.Calls data

2009-07-31 Thread Mark Murphy
G wrote: > Please help cause I'm pulling my hair out over here. How can lookup > the Person based on the info in CallLog.Calls? I've tried matching > Phones.NUMBER to Calls.NUMBER, I've played a little bit with > Phones.NUMBER_KEY (what is the normalized format btw?) and I even > tried doing a LIK

[android-developers] Faster "Canvas.drawLine()" for rectangular lines?

2009-07-31 Thread f_heft
Hello, I'm developing a SurfaceView based, vector-styled game, so I'm using Canvas.drawLine(startX, startY, stopX, stopY, Paint) very often. All those lines are rectangular (startX=stopX or startY=stopY). The TraceViewer shows me, that more than 50% of time are used to draw those lines (about 100

[android-developers] Toast or AlertDialog problem

2009-07-31 Thread Stefan
Hi, i need a alert dialog, which pop ups every time, when the location changed (after 100 meter for example). I want to have 2 Buttons in this dialog: left and right. If the user dont push one of these buttons after some seconds, the dialog should no longer be displayed. So I can't use the AlertD

[android-developers] Getting the PERSON_ID based on CallLog.Calls data

2009-07-31 Thread G
Please help cause I'm pulling my hair out over here. How can lookup the Person based on the info in CallLog.Calls? I've tried matching Phones.NUMBER to Calls.NUMBER, I've played a little bit with Phones.NUMBER_KEY (what is the normalized format btw?) and I even tried doing a LIKE search while repl

[android-developers] Re: left handed user

2009-07-31 Thread Sophie
Thanks, Yusuf, I will! On 31 jul, 16:51, "Yusuf T. Mobile" wrote: > You have a point, Illegal Sophie. I would recommend you post an > Android issue, saying "landscape should work when you rotate left or > right", athttp://code.google.com/p/android/issues/list > > Yusuf Saib > Android > ·T· · ·Mo

[android-developers] Re: everyone likes compliments :*)

2009-07-31 Thread MrChaz
A man walking in a bar On Jul 31, 7:32 pm, greg wrote: > Step 7 of exercise 3 in the Notepad Tutorial at > >    http://developer.android.com/guide/tutorials/notepad/notepad-ex3.html > > mentions that "onPause() and onResume() are also complimentary > methods."  Sadly, when they ran, I didn't rec

[android-developers] Re: invoking the dialer multiple time

2009-07-31 Thread flohier
I was told to suggested to import the ITelephony.aidl file from the kernel and invoke the call() (or answerRingingCall() directly - which is not elegant but seems to be an option. The problem I have trying this is to get a pointer to telephony service form my activity: ITelephony sPhone = ITele

[android-developers] Re: how to use adb tool on SAMSUNG GALAXY?

2009-07-31 Thread mobidroid.com
Hi there, Not much success with the galaxy and adb :( I'm under ubuntu 8.10 here are my question: The step in : http://developer.android.com/intl/de/guide/developing/device.html Talk about creating the file 51: /etc/udev/rules.d/51-android.rules and chmod file 50: chmod a+rx /etc/udev/rules.d/

[android-developers] Enabling/Handling cookies on the Webview

2009-07-31 Thread Kumaravel Kandasami
Hi ! I am trying to enable the cookies for the WebView. The URL that gets loaded into the android.webkit.WebView is using cookies. I am not clear how to integrate android.webkit.CacheManager instance with the webview, if that is the right approach. Any suggestions or reference is appreciated.

[android-developers] Re: .Net support

2009-07-31 Thread admin.androidsl...@googlemail.com
The problem with .NET is it changes too quickly and may not be well suited to phones which require a stable core OS. I have worked extensively on all versions of .NET from 1.0 to 3.5 and every time a new update comes out, all the libraries have changed and in the case of Silverlight, most of the

[android-developers] Re: how to add a progressbar or other widget to some row of the listview??

2009-07-31 Thread Mark Murphy
skyhigh wrote: > I have had the same problem in trying to use the ProgressBar, it > doesn't display a bar, it just blinks. There are two arcs on each end > of the bar (it looks like a horizontal slice taken out of a circle) > and they just fade in and out, alternating which side has the visible >

[android-developers] Re: everyone likes compliments :*)

2009-07-31 Thread Jason Proctor
:-) ah the subtleties of spelling... >Step 7 of exercise 3 in the Notepad Tutorial at > >http://developer.android.com/guide/tutorials/notepad/notepad-ex3.html > >mentions that "onPause() and onResume() are also complimentary >methods." Sadly, when they ran, I didn't receive any. > >- Greg

[android-developers] Re: Using layout includes with layouts that are greedy (want to take the entire screen space)

2009-07-31 Thread Hamy
Hey all, I don't want to waste anyone's time, but (like always) i had a breakthru five minutes after this hit the list. Here is the updated question, that shows the actual root of the problem! I have a layout item (a MapView, in this case) whose height is that of the entire screen, even

[android-developers] Modifying Music application, source is taken from Android source code Options

2009-07-31 Thread Rahul Bhagwat
I'm modifying Music application to add dlna feature. I've taken source code from android source code version1.5, I'm trying to build this code in eclipse but some packages are missing such as android.media.MediaFile; android.media.MediaScanner; I think these are not available in android SDK 1.5_r3

[android-developers] Phone.apk not working with TTS_library_stub

2009-07-31 Thread champ
Hi, I have added TTS_library_stub to Phone(Android Core Application) application and used methods of this library. After building the Phone.apk i installed it in AndroidG1. But Phone functionality stoppped working. My doubts are : 1)Can we add a prebuilt static library to Core Application(here P

[android-developers] Re: Is there any UI can connect to SQLite database?

2009-07-31 Thread Roberts, Mark
I have used both SQLite Manager in Firefox and MesaSQLIte http://www.desertsandsoftware.com on a Mac. Both work well. -- Mark Roberts Software Developer ·T· · ·Mobile· stick together The views, opinions and statements in this email are those of the author solely in their individual capacity, and

[android-developers] How to add thhp headers in Webview?

2009-07-31 Thread Mimu
Hi, I want to use Webkit.Webview to load an url using loadUrl(url), but meanwhile provide the server some additional headers when the http GET is sent out. Is there any way to add headers or change the default headers in Webview so that each time GET method would automatically add my cusomized he

[android-developers] Re: App not visible in Android Market of Samsung Galaxy

2009-07-31 Thread Muzu
Hi, I noticed the same issue. It seems to be related to the device istelf rather then the market nation or firmware version. Here's a small list of apps not available in market for Samsung galaxy, just for reference Accessible paid apps with a free version: - PicSay - Advanced Task Manager - Laby

[android-developers] Re: android-developers - 25 new messages in 16 topics - digest

2009-07-31 Thread Muhammad Ahmad Raza
Hi. Join this link to visit world’s best historical places. Visiting my website you feel that actually you are traveling these places in real. www.love-pak.blogspot.com Ahmad --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Goo

[android-developers] Publishing to Android market - question

2009-07-31 Thread steiljes
I have a question for other developers who may have started publishing android apps already. Once I create Android app, will I have to publish it on each carrier's app store seperately? For e.g. t-Mobile has its own app store and so does Verizon. Will I need to do that individually? Or do I need

[android-developers] Re: Tut (SDK 1.5) Get google account of user

2009-07-31 Thread Sergio
My intent seems to be empty for an errorcode key with a value of 0. Cheers On Jul 26, 10:26 am, ubikdroid wrote: > Hi Karl, > I call getCredentials in my Activity like this: > >         GoogleLoginServiceHelper.getCredentials(this, 54321, >                 null, >                 GoogleLoginServ

[android-developers] .Net support

2009-07-31 Thread smehaffie
If Google was smart it would do the following the following: 1) Make is so it support running native .Net application on it and create SDK for .Net: * This would open up millions of .Net developers so they can create programs for Android without having to learn a new programming language. * Eli

[android-developers] Re: regarding kSOAP web services.

2009-07-31 Thread sagten
I successfully called some relatively complex webservices with kSOAP2. SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME); request.addProperty([PropertyInfo object], [SoapObject object]); SoapSerializationEnvelope envelope = new SoapSerializationEnvelope (SoapEnvelope.VER11); envelope

[android-developers] Re: How to query the number of unread SMS

2009-07-31 Thread kudva
Use this code public static int getUnreadSmsCount(Context context) { String SMS_READ_COLUMN = "read"; String UNREAD_CONDITION = SMS_READ_COLUMN + "=0"; int count = 0; Cursor cursor = context.getContentResolver().query( SMS_INBOX_CONTENT_URI,

[android-developers] Re: how to use adb tool on SAMSUNG GALAXY?

2009-07-31 Thread Johan
Just one question, has anyone successfully gotten "fastboot devices" to show anything in windows (during the tiny time-frame that the phone actually is in fastboot mode)? I only got it to work on my Mac and have heard people doing it using different Linux dists, but never Windows :s --~--~--

[android-developers] enable StreetView

2009-07-31 Thread Juan Pablo Hoyos Sanchez
I have enabled StreetView with .setStreetView(true) but it don´t load, so I don´t know if I have enable other things. thank you. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to t

[android-developers] Re: how to add a progressbar or other widget to some row of the listview??

2009-07-31 Thread skyhigh
I have had the same problem in trying to use the ProgressBar, it doesn't display a bar, it just blinks. There are two arcs on each end of the bar (it looks like a horizontal slice taken out of a circle) and they just fade in and out, alternating which side has the visible arc. I even created a s

[android-developers] Android Dev Phone 1 startup problem

2009-07-31 Thread Matti P
Hi, I upgraded the Dev Phone's firmware to 1.5 (from HTC's site). Phone worked ok after that, but after a while I rebooted it, and now it won't start. "Android" text appears on the screen after reboot or powering up, but it hangs there. I can start the phone to Fastboot- mode and also recovery mo

[android-developers] hybrid peer to peer

2009-07-31 Thread murali krishnan
hi...i have planned to do my final year project in android...i have planned to use JADE in android to develop and hybrid peer to peer applicationi used IEEE paper on JADE with android to create peer to peerso check out this ieee paper before reading my post further...because u can understa

[android-developers] Streaming encoded video via RTP

2009-07-31 Thread Robin Marx
Hello, For a research project we need to capture video on the HTC magic and transmit this video over a network to other devices, both HTC magic's and desktop pc's (which have their own implementations of the codecs). For the transmission over the network we are using some of our own native libra

[android-developers] R.styleable cannot resolved in Eclipse with ADT

2009-07-31 Thread goldenmice
Hello everyone! Today when I develop a app with ADT Eclipse tells me R.styleable cannot resolved The class menu shown after 'R' doesn't have 'styleable' who can tell me how to solve the problem Thanks a lot My OS is windows XP SP3 The Eclipse version is 3.5.0 Maybe I have something wrong with p

[android-developers] Re: Tut (SDK 1.5) Get google account of user

2009-07-31 Thread Sergio
Hi there, Does this work in the emulator? I am always getting null in the intent data Cheers Sergio On Jul 26, 10:26 am, ubikdroid wrote: > Hi Karl, > I call getCredentials in my Activity like this: > >         GoogleLoginServiceHelper.getCredentials(this, 54321, >                 null, >      

[android-developers] Re: TIME_TICK in an AppWidget?

2009-07-31 Thread VodkaWine
Dear String : I want to implmement a digital clock like in the following link. http://retroclock.jsource.nl/ But I have problem in digital clock which synchronize with system time. I use the intent-filter originally, but the method seems impossible. filter.addAction(Intent.ACTION_TIME_TICK);

[android-developers] Re: Folder issues

2009-07-31 Thread Sun-Jin Jang
Hi! Ho-Sunng Just send a mail to android-developers-unsubscr...@googlegroups.com. It's very simple! 2009/7/30 안호성 > > > > > I want unsubscribe Android Developer's Group. > > Please Don't Send These emails any more... > > > > > > > > > > -Original Message- > *From:* "Andrei Bucur" > *To

[android-developers] surprise~~~!

2009-07-31 Thread moore scotta
HTTP://WWW.VIPMALLS.COM wholesale brand name shoes, clothes, jeans, jackets, t-shirts, hoodies ect. such as: jordan, obama af1, obama jordan six rings, air force one, max, dunk sb, gucci, jordan fusion, adidas,adidas zx 700 sport LG Graph, puma, lacoste, ed hardy, evisu, christian audigier, true r

[android-developers] Re: httpclient multipart form upload

2009-07-31 Thread Julien Dupouy
Hey, Instead of including the jars files you can use the http multipart classes defined in android but declared as internal, so you cannot use them directly, you have to download them from the android source code (http://android.git.kernel.org/?p=platform/frameworks/ base.git;a=tree;f=core/java/c

[android-developers] Using layout includes with layouts that are greedy (want to take the entire screen space)

2009-07-31 Thread Hamy
Hi all, I would like to use an in my XML file to add a layout below a MapView(or any other greedy layout). I have been trying for a few hours now, and no luck so far. I was hoping someone could give me a hand. Here is what my XML looks like now: http://schemas.android.com/apk/res/android";

[android-developers] everyone likes compliments :*)

2009-07-31 Thread greg
Step 7 of exercise 3 in the Notepad Tutorial at http://developer.android.com/guide/tutorials/notepad/notepad-ex3.html mentions that "onPause() and onResume() are also complimentary methods." Sadly, when they ran, I didn't receive any. - Greg --~--~-~--~~~---~--~-

[android-developers] Motorola's new flagship phone

2009-07-31 Thread Jackson
The KRZR will be Motorola's new flagship phone, sporting a design that's narrower and sleeker than the ultra-popular RAZR. The phone combines a metallic gloss finish, magnesium, polished chrome and hardened glass, and will be available in both GSM and...Read more at http://www.oneworldgift.com --~

[android-developers] Re: Is there any UI can connect to SQLite database?

2009-07-31 Thread Roman
Use SQLite Manager which is a Firefox plugin. You can easily pull DBs from your device and display DBs with the plugin and also do modification. Furthermore when you need to find out about how to implement queries you can verify your SQLite query with the SQLite Manager. -- Roman Baumgaertner Sr

[android-developers] Re: OpenGL leaking garbage

2009-07-31 Thread Nightwolf
I think things aren't that bad. Take a look at Armadillo Roll. Checking DDMS showed that GC was't invoked during watching demo flyby and playing the game for 3-4 minutes. On Jul 29, 12:57 pm, Paul Thomas wrote: > Thanks for your helpful comments, everybody. > > 2009/7/28 smartpixgames : > > > In

[android-developers] Re: Memory management issues - stop crashing the party!

2009-07-31 Thread fadden
On Jul 30, 8:52 pm, Rud wrote: > Are you running on the emulator or a device? There are some reports > that on the emulator, espeically in debug mode, memory is not GC'd > because the debugger is holding a refernece. I haven't experimented to > see if this is true but it is worth checking into.

[android-developers] Re: A way to get all apps and their activities?

2009-07-31 Thread Marco Nelissen
The package manager has APIs to do this. On Fri, Jul 31, 2009 at 8:52 AM, EboMike wrote: > > Is there a way to get a list of all apps and their activities and > intent filters? Basically, I'd like to know what another app is > "listening to" so I can provide an Intent that matches. (I suppose >

[android-developers] ListView turns black when focused/selected, although I already set cacheColorHint to transparent

2009-07-31 Thread brian.schim...@googlemail.com
Hi there, first of all, sorry for always complaining about ListView. For standard tasks it works perfectly, but in my current project, it seems that I'm just pushing it beyond its limits sometimes, or maybe beyond the limits of my understanding :) My list, which contains transparent items, used t

[android-developers] Re: ARM Architektur

2009-07-31 Thread David Turner
On Fri, Jul 31, 2009 at 5:13 PM, Mr.No wrote: > > Thx. > Second Question: > Is Android missing some of the Linux OS komponents or technologies? > because it was designed for embedded devices. > I'm not sure I understand the question, but I'm tempted to say yes. More specifically, many design de

[android-developers] Re: China to have there own Android Market?

2009-07-31 Thread Marco Nelissen
I know nothing about Ophone, but having your app work on 1.0 seems like a small price to pay for entry in to such a potentially huge market. On Fri, Jul 31, 2009 at 5:49 AM, Fred Grott(shareme) wrote: > > Do not fall for that.. OpHone Sdk is Android 1.0 you have to port it > to Android 1.0 for

[android-developers] Re: China to have there own Android Market?

2009-07-31 Thread Marco Nelissen
On Fri, Jul 31, 2009 at 1:04 AM, CraigsRace wrote: > > I have been contacted by a Chinese company (NetDragon Websoft Inc - > http://ir.netdragon.us). They tell me that the Chinese will not have > access to Googles Android Market, they will only have access to a > separate Chinese Android Market.

[android-developers] Get Device Name

2009-07-31 Thread fala70
Is possible get the device name thanks --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this grou

[android-developers] Re: Is there any UI can connect to SQLite database?

2009-07-31 Thread Marco Nelissen
You could copy the database from the phone to your desktop machine, and then use one of the many windows, mac or linux gui apps to work with sqlite databases. On Fri, Jul 31, 2009 at 9:01 AM, chandlersong wrote: > > Is there any UI can connect to SQLite database? > I hope that I can r

[android-developers] Is there any UI can connect to SQLite database?

2009-07-31 Thread chandlersong
Is there any UI can connect to SQLite database? I hope that I can read the data without writing code.is there any method can make it happened? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Develo

[android-developers] A way to get all apps and their activities?

2009-07-31 Thread EboMike
Is there a way to get a list of all apps and their activities and intent filters? Basically, I'd like to know what another app is "listening to" so I can provide an Intent that matches. (I suppose that this will require an ADP, which is fine). I tried grabbing the AndroidManifest.xml from an .apk

[android-developers] Re: About to receive the mms

2009-07-31 Thread Jack Ha
Do you have the following in your AndroidManifest.xml file? -- Jack Ha Open Source Development Center ・T・ ・ ・Mobile・ stick together The views, opinions and statements in this email are those of the author solely in their individual capacity, and do not necessarily represent those of T-Mobile U

[android-developers] Re: Widgets ( frequent updates )

2009-07-31 Thread Alexey Volovoy
At this moment no - but in new version i've provided ability to refresh content on demand. hopefully it'll solve complains problem On Jul 31, 9:15 am, String wrote: > On Jul 31, 2:46 pm, Alexey Volovoy wrote: > > > Rationale behind frequent updates - if i'm not rotating headlines in > > visible

[android-developers] Re: Widgets ( frequent updates )

2009-07-31 Thread Alexey Volovoy
At this moment no - but in new version i've provided ability to refresh content on demand. hopefully it'll solve complains problem On Jul 31, 9:15 am, String wrote: > On Jul 31, 2:46 pm, Alexey Volovoy wrote: > > > Rationale behind frequent updates - if i'm not rotating headlines in > > visible

[android-developers] Re: why my 2nd App replaces the first one?

2009-07-31 Thread Mark Murphy
zeeshan wrote: > ok so i need to create a separate project with a different package > name for the new app? That should work and is probably a good idea. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy Android Development Wiki: http://wiki.andmob.org --~-

[android-developers] Re: why my 2nd App replaces the first one?

2009-07-31 Thread zeeshan
ok so i need to create a separate project with a different package name for the new app? actually i have a framework whcih loads some images from my assets. for a new app i just changed these assets images. On Jul 31, 4:12 pm, Mark Murphy wrote: > zeeshan wrote: > > Hi Dear, > > > i need a s

[android-developers] Re: Date AND Time Picker

2009-07-31 Thread Jack Ha
There's no built-in date/time combo widget. You can do something like this: http://schemas.android.com/apk/res/android"; android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="wrap_content"> -- Jack Ha Open Source Development

[android-developers] Re: ARM Architektur

2009-07-31 Thread Mr.No
Thx. Second Question: Is Android missing some of the Linux OS komponents or technologies? because it was designed for embedded devices. On 31 Jul., 12:17, David Turner wrote: > On Fri, Jul 31, 2009 at 11:20 AM, Mr.No wrote: > > > Hi, > > the Android OS was designed for the ARM Architecture, am

[android-developers] Re: why my 2nd App replaces the first one?

2009-07-31 Thread Mark Murphy
zeeshan wrote: > Hi Dear, > > i need a separate application when i run my eclipse project again. > i have changed the application icon and name on 2nd run but this > replaced the first application already installed on my android G1. > > > please advise what i need to change on 2nd run to have a

[android-developers] why my 2nd App replaces the first one?

2009-07-31 Thread zeeshan
Hi Dear, i need a separate application when i run my eclipse project again. i have changed the application icon and name on 2nd run but this replaced the first application already installed on my android G1. please advise what i need to change on 2nd run to have a separate application rather th

[android-developers] Re: left handed user

2009-07-31 Thread Yusuf T. Mobile
You have a point, Illegal Sophie. I would recommend you post an Android issue, saying "landscape should work when you rotate left or right", at http://code.google.com/p/android/issues/list Yusuf Saib Android ·T· · ·Mobile· stick together The views, opinions and statements in this email are tho

[android-developers] Re: How to catch event from the virtual keyboard ?

2009-07-31 Thread Azhdar
Hi, thank you for you answer. But what do you mean by : "... or make it larger so the user hits it" ? On Jul 30, 3:42 pm, Dianne Hackborn wrote: > Either set the window flag to have your IME's window consume all touch > events, or make it larger so the user hits it.  Note that there is no wa

[android-developers] Re: Extending the Intent class

2009-07-31 Thread R Ravichandran
Fair enough argument. Perhaps the Intent class could have been made final. On Tue, Jul 28, 2009 at 4:29 PM, Mark Murphy wrote: > > R Ravichandran wrote: > > I was experimenting with extending the Intent class but don't seem to > > make it work properly. I am wondering if extending is even possibl

[android-developers] Re: Dialog cannot fill whole screen

2009-07-31 Thread nEx.Software
Just out of curiosity, why are you using a dialog if you want it to fill the screen? That being said, the content within the dialog will push it to fill the screen if required. Putting things like ListViews with fill_parent seems to do the trick... On Jul 31, 7:33 am, doubleslash wrote: > My dia

[android-developers] Re: Widgets ( frequent updates )

2009-07-31 Thread Alexey Volovoy
At this moment no - but in new version i've provided ability to refresh content on demand. hopefully it'll solve complains problem On Jul 31, 9:15 am, String wrote: > On Jul 31, 2:46 pm, Alexey Volovoy wrote: > > > Rationale behind frequent updates - if i'm not rotating headlines in > > visible

[android-developers] Re: EditText and Virtual Keyboard

2009-07-31 Thread Azhdar
Hi Hazam, could you show us more in detail how you do that ? Thank you ! Azhdar On Jul 10, 3:23 pm, Hazam wrote: > Hi Hong, > thanks for your reply. > I tried that but to no avail. > The reason seems to be that clicks and actions fromvirtualkeyboard > do not follow the same > path that norm

[android-developers] Re: Initial Doubt

2009-07-31 Thread Mark Murphy
Michelle Silva wrote: > It works! Thank you! Only one more doubt: how can i do to capture when > the user press end call key? In your own activity, use onKeyDown() and watch for KeyEvent.KEYCODE_ENDCALL. If, however, you are referring to determining when the user ends the call, you can try a Pho

[android-developers] Re: Initial Doubt

2009-07-31 Thread Michelle Silva
It works! Thank you! Only one more doubt: how can i do to capture when the user press end call key? []s, Michelle. 2009/7/31 Mark Murphy > > Michelle Silva wrote: > > sorry about the four messages, but i received messages from group > > saying that my email wasn't sent. About my doubts,

[android-developers] Dialog cannot fill whole screen

2009-07-31 Thread doubleslash
My dialog shows a relativelayout, which is set to fill_parent in both width and height. However, it doesn't fill the whole screen. I tried settting the window flags to full screen but that didn't help either. Can someone tell me how to do this? --~--~-~--~~~---~--~~

[android-developers] Re: left handed user

2009-07-31 Thread nEx.Software
I am right-handed, and there are many times when I would rather rotate the same way you propose... Specifically for playing games, since most games controls (at least in my day) had the directional pad on the left side, I'd prefer to have the trackball on the left side. Developers can handle this

[android-developers] Re: Initial Doubt

2009-07-31 Thread Mark Murphy
Michelle Silva wrote: > sorry about the four messages, but i received messages from group > saying that my email wasn't sent. About my doubts, i wanna know how can > i do to make a call? When i execute my code, appears Dials screen with > the number dialed in the emulator. I want to make the c

[android-developers] Re: Problem Loading Widget

2009-07-31 Thread nEx.Software
If it eventually loads, then it is highly likely that you have an unsupported view in your initialLayout. I am assuming you are following the background service update methodology (which is commonly used) and you push out updates through that service. I also assume that you have an initialLayout t

[android-developers] Re: Initial Doubt

2009-07-31 Thread Michelle Silva
Hi Mark, sorry about the four messages, but i received messages from group saying that my email wasn't sent. About my doubts, i wanna know how can i do to make a call? When i execute my code, appears Dials screen with the number dialed in the emulator. I want to make the call, count time and a

[android-developers] Re: Widgets ( frequent updates )

2009-07-31 Thread String
On Jul 31, 2:46 pm, Alexey Volovoy wrote: > Rationale behind frequent updates - if i'm not rotating headlines in > visible fashion people complain that widget is "not working". Have you made the update interval user-configurable? I'd like to think this would cut down on such complaints, or at l

[android-developers] Re: Disactive animation on activity start

2009-07-31 Thread arnouf
Done! It's working now. Thanks a lot Diane! Mark, contact me to have the solution :) On 31 juil, 10:30, arnouf wrote: > Hello Diane, > > Thanks, but do I have set my animation style on both activities or > just one? > Activity A is calling Activity B: I have to set animation on Activity > A, Act

[android-developers] Re: Widgets ( frequent updates )

2009-07-31 Thread Alexey Volovoy
that's what i did. it is set to 0. and i'm updating via alarm manager. and i'm scheduling with setInexactRepeating(). Further looking into the log tonight - it's is working, i had some cases with 5-10 minutes without logging an update. Of course my update will join any other update that wakes devi

[android-developers] Re: Initial Doubt

2009-07-31 Thread Mark Murphy
Michelle Silva wrote: >it works! But i want something different... i want to see the > number being dialed and after the call key being pressured. How can i do > this? 1. I have no idea what your question means. 2. You have posted this four times to the same list in 37 minutes. Please st

[android-developers] Re: Widgets ( frequent updates )

2009-07-31 Thread Alexey Volovoy
that's what i did. it is set to 0. and i'm updating via alarm manager. and i'm scheduling with setInexactRepeating(). Further looking into the log tonight - it's is working, i had some cases with 5-10 minutes without logging an update. Of course my update will join any other update that wakes devi

[android-developers] Initial Doubt

2009-07-31 Thread Michelle Silva
Hi Mak, it works! But i want something different... i want to see the number being dialed and after the call key being pressured. How can i do this? []s, Michelle. --~--~-~--~~~---~--~~ You received this message because you are subscribed

[android-developers] Re: convertView with wrong type

2009-07-31 Thread greg
Hi Klaser, Have you watched the video that describes ListView adapters at http://www.youtube.com/watch?v=N6YdwzAvwOA and reviewed the Efficient Adapter (View/List 14) of the ApiDemos? I don't know the details of the problem you are seeing, but it seems possible that the adapter's view recycl

[android-developers] Initial Doubt

2009-07-31 Thread Michelle Silva
Hi Mak, it works! But i want something different... i want to see the number being dialed and after the call key being pressured. How can i do this? []s, Michelle. --~--~-~--~~~---~--~~ You received this message because you are subscribed

[android-developers] Re: Initial Doubt

2009-07-31 Thread Michelle Silva
Hi Mak, it works! But i want something different... i want to see the number being dialed and after the call key being pressured. How can i do this? []s, Michelle. 2009/7/31 Mark Murphy > > Michelle Silva wrote: > > public class MakeCall extends Activity { > > /**

[android-developers] Re: Initial Doubt

2009-07-31 Thread Michelle Silva
Hi Mak, it works! But i want something different... i want to see the number being dialed and after the call key being pressured. How can i do this? []s, Michelle. 2009/7/31 Mark Murphy > > Michelle Silva wrote: > > public class MakeCall extends Activity { > > /**

[android-developers] Re: China to have there own Android Market?

2009-07-31 Thread Fred Grott(shareme)
Do not fall for that.. OpHone Sdk is Android 1.0 you have to port it to Android 1.0 for it work On Jul 31, 3:04 am, CraigsRace wrote: > I have been contacted by a Chinese company (NetDragon Websoft Inc > -http://ir.netdragon.us).  They tell me that the Chinese will not have > access to Goog

  1   2   >