[android-developers] Re: could i get email recieve notification from intents?

2009-07-28 Thread Dianne Hackborn
No plans at this time. On Tue, Jul 28, 2009 at 9:32 PM, Desu Vinod Kumar wrote: > Hi > any body know that when they are going to update these feature.. > please help if u know this thing ... > > thanks a lot i advance... > > On Tue, Jul 28, 2009 at 9:34 PM, Jack Ha wrote: > >> >> No, you

[android-developers] " Creating a file in AFS with NativeBinary and Android App"

2009-07-28 Thread raj.10788
Hi, I have a applications which will do the follwing taks. 1. It contain's the native binary with it. Then it will llod that native binary to AFS. 2. Then it should call or execute that native binary. But when I do that one. The native binary is working fine. But the problem cmoes out here. T

[android-developers] Re: Press Back key programmatically

2009-07-28 Thread Saurav Mukherjee
use this.dispatchKeyEvent(new Keyevent(..)..); hope this helps... cheers! On Wed, Jul 29, 2009 at 1:21 AM, Peacemoon wrote: > > i want to trigger the onKeyDown listener programmatically but don't > know which method i should call? > Does anyone know? > Thanks > > > --~--~-~--~~-

[android-developers] Re: Experimental Bluetooth Library

2009-07-28 Thread Marc Lester Tan
Can't wait to try this on wiimote. Anyone tried it already? does it work? -Marc On Wed, Jul 22, 2009 at 2:55 PM, Stefano Sanna (gerdavax) < gerda...@gmail.com> wrote: > > Hi all. > > I've written a simple library that provides access to some Bluetooth > features: local device properties, remote

[android-developers] Application as a broadcast receiver

2009-07-28 Thread Sudeep
Hi, If I am broadcasting an Intent from an activity Can we make another application as a receiver.so that it will get invoked when that specific intent is broadcasted. Thanks, Sudeep --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

[android-developers] Re: How to get all table names in SQL database

2009-07-28 Thread guishenl...@gmail.com
I've solved this problem by: public final static String SQL_GET_ALL_TABLES = "SELECT name FROM " + "sqlite_master WHERE type='table' ORDER BY name"; Cursor cur = dataBase.rawQuery(this.SQL_GET_ALL_TABLES, null); The table names can be obtained from cur. Thank all the people abov

[android-developers] Re: How to get all table names in SQL database

2009-07-28 Thread Marco Nelissen
If the database was created by you, shouldn't you already know which tables are in it? On Tue, Jul 28, 2009 at 6:18 PM, guishenl...@gmail.com < guishenl...@gmail.com> wrote: > > I want to get the tables programmatically not in the command line. And > the database is created by myself not the cont

[android-developers] Re: Attach multiple images

2009-07-28 Thread SrilankanKK
On Jul 28, 8:50 am, Jack Ha wrote: > As far as I know, it only supports one attachment as Intent.putExtra() > will replace any existing value for the given key. > > -- > Jack Ha > Open Source Development Center > ・T・ ・ ・Mobile・ stick together > > The views, opinions and statements in this email

[android-developers] Re: Android service always alive..

2009-07-28 Thread Archana
Hi, I am facing onlowmemory problem in my app... Its working for few minutes and automatically exiting... I am using lots of view in my app,so is it because of that.? I am getting error like this. Low Memory: No more background processes Can anybody tell me how to solve this. Thanks Archana

[android-developers] Re: could i get email recieve notification from intents?

2009-07-28 Thread Desu Vinod Kumar
Hi any body know that when they are going to update these feature.. please help if u know this thing ... thanks a lot i advance... On Tue, Jul 28, 2009 at 9:34 PM, Jack Ha wrote: > > No, you won't be able to receive new email arrival notification. > > -- > Jack Ha > Open Source Developm

[android-developers] Re: Could I read call_log by Intent?

2009-07-28 Thread Wang He
Up! On 7月28日, 下午6时00分, Wang He wrote: > Ps. > > 1. content://call_log/calls starts > 07-28 17:58:35.930: INFO/ActivityManager(498): Starting activity: > Intent { action=android.intent.action.MAIN flags=0x1020 comp= > {com.android.phone/com.android.phone.DialtactsActivity} } > > 2. content://

[android-developers] Re: How to get all table names in SQL database

2009-07-28 Thread guishenl...@gmail.com
I have tried the method given by Mark in the following way: public final static String SQL_GET_ALL_TABLES = "SELECT name FROM " + "sqlite_master WHERE type='table' ORDER BY name"; dataBase.execSQL(this.SQL_GET_ALL_TABLES, tablenames); But I got exception while running dataBase.ex

[android-developers] Re: video screen disappeared after launch new task

2009-07-28 Thread sleith
any idea about this problem? On Jul 28, 6:38 am, sleith wrote: > here's the code > try clicking that will trigger dial number, and then push back button, > and you will see the video screen disappeared but the sound is playing > thx :D > > public class VideoTest extends Activity { > > pr

[android-developers] ListView and Selectors

2009-07-28 Thread Evan Ruff
Hey Guys, After going through a bunch of posts here I've got a List Activity with a pair of custom selectors that do the alternating row background thing while maintaining the default selector behavior! The trick was figuring out that in the selector, you had to fire a shape in there instead of a

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

2009-07-28 Thread greg
When I try extending the View class to a subclass that will underline portions of the text drawn by ListView, the code compiles okay but results in a runtime exception apparently due to an improper class cast. Does anyone see what I've done wrong or have suggestions about getting access to the Ca

[android-developers] Re: Where can I find good remote Android developers?

2009-07-28 Thread Fred Grott(shareme)
I know a few that have open time right now if you are somewhat sure about your budget range.. Fred Grott http://mobilebytes.wordpress.com On Jul 28, 7:28 pm, Rch wrote: > Hi > > Can any of suggest a place where I can hire remote Android developers. > I want to build an app soon. > > - Rch --~-

[android-developers] How to customize focus navigation in a ViewGroup

2009-07-28 Thread n179911
Hi, I have a View Group and it has 2 focusable Views as its children. I would like know how I can customize how focus is being passed between these 2 Views. In other words, when I press the Down Key or the Up Key in the emulator, i want to control which of these children has focus. I read the Ja

[android-developers] Re: Why force java 1.5?

2009-07-28 Thread Mark Murphy
阿偉 wrote: > This is android-developers group, not android-sdk... > The subject said "discuss developing Android applications using the > Android framework..." > So I think the compiler issue is suitable here. And I don't believe > this is a porting issue. > Am I wrong? I would vote for android-pl

[android-developers] Re: How to get all table names in SQL database

2009-07-28 Thread Mark Murphy
guishenl...@gmail.com wrote: > I want to get the tables programmatically not in the command line. And > the database is created by myself not the contact database. http://www.sqlite.org/faq.html#q7 "So to get a list of all tables in the database, use the following SELECT command: SELECT nam

[android-developers] Re: Why force java 1.5?

2009-07-28 Thread 阿偉
Yes, I'm talking about Android OSP. This is android-developers group, not android-sdk... The subject said "discuss developing Android applications using the Android framework..." So I think the compiler issue is suitable here. And I don't believe this is a porting issue. Am I wrong? Anyway, I'm

[android-developers] Re: Increasing DNS timeout values

2009-07-28 Thread 葉子
Thanks for your remind : ) On 7月28日, 下午7時29分, Mark Murphy wrote: > 葉子 wrote: > > It's easy to find pages about "Increasing DNS timeout values" ,ex: > >http://groups.google.com/group/mailing.postfix.users/browse_thread/th... > > > I found similar variable in the file: > > bionic/libc/private/reso

[android-developers] Re: is it possible to display a multi column list ?

2009-07-28 Thread Mark Murphy
jerryfan2000 wrote: > is there any workaround to simulate similar function? Carefully design the rows that go into the ListView so they all line up properly. Or use GridView. Or use TableLayout in a ScrollView. Or create your own multi-column list widget by subclassing AdapterView and rolling

[android-developers] Re: Where can I find good remote Android developers?

2009-07-28 Thread nEx.Software
Awesome, I always look forward to them. :) On Jul 28, 6:22 pm, Mark Murphy wrote: > nEx.Software wrote: > > That HADO mailing you do is very cool, just wish there more > > opportunities out there. :) > > I have a few queued up for tomorrow's mailing. It's definitely hit or > miss, which is why I

[android-developers] Re: Where can I find good remote Android developers?

2009-07-28 Thread Mark Murphy
nEx.Software wrote: > That HADO mailing you do is very cool, just wish there more > opportunities out there. :) I have a few queued up for tomorrow's mailing. It's definitely hit or miss, which is why I didn't publish one the previous week. -- Mark Murphy (a Commons Guy) http://commonsware.com

[android-developers] Re: How to get all table names in SQL database

2009-07-28 Thread guishenl...@gmail.com
I want to get the tables programmatically not in the command line. And the database is created by myself not the contact database. Could you give me some example code? Thank you very much in advance! On 7月28日, 下午9时46分, "Yusuf T. Mobile" wrote: > It depends if you want all the tables programmatic

[android-developers] Re: Where can I find good remote Android developers?

2009-07-28 Thread dan raaka
try this :) http://bit.ly/hFdCd -Dan On Tue, Jul 28, 2009 at 5:56 PM, Rch wrote: > > Thanks guys, > > i will definitely email to the HADO list. Regarding other websites, i > have to pay to post the job. There seems to be no guarantee there. > > On Jul 28, 5:52 pm, "nEx.Software" > wrote: > > M

[android-developers] Re: Stopping fling in Gallery

2009-07-28 Thread Brady
Well, I've figured out a "good-enough" solution, although if you have a better one I'd still love to hear it! I've extended the Gallery class and overridden the OnFling method. In my new subclass I change the velocityX to be -600.0 or 600.0 (depending on the fling x direction) and then pass that

[android-developers] Getting exception if directional key pad is pressed, pls help

2009-07-28 Thread manohar
Hi all, I am converting a game to android platform. In view class i have onKeyDown and onKeyUp method. Still key press is not recognizing(Using directional pad to navigate menus). i added following entries setFocusable(true); setFocusableInTouchMode(true); after adding this entry i am getting

[android-developers] Re: Where can I find good remote Android developers?

2009-07-28 Thread Rch
Thanks guys, i will definitely email to the HADO list. Regarding other websites, i have to pay to post the job. There seems to be no guarantee there. On Jul 28, 5:52 pm, "nEx.Software" wrote: > Mark, > > That HADO mailing you do is very cool, just wish there more > opportunities out there. :) >

[android-developers] Re: is it possible to display a multi column list ?

2009-07-28 Thread jerryfan2000
is there any workaround to simulate similar function? On Jul 29, 4:29 am, Jack Ha wrote: > There's no built-in data grid component. > > -- > Jack Ha > Open Source Development Center > ・T・ ・ ・Mobile・ stick together > > The views, opinions and statements in this email are those of > the author sol

[android-developers] Re: Where can I find good remote Android developers?

2009-07-28 Thread nEx.Software
Mark, That HADO mailing you do is very cool, just wish there more opportunities out there. :) Rch, I'd be interested go see what type of app you are looking for. On Jul 28, 5:33 pm, Mark Murphy wrote: > Rch wrote: > > Can any of suggest a place where I can hire remote Android developers. > >

[android-developers] Re: Where can I find good remote Android developers?

2009-07-28 Thread Mark Murphy
Rch wrote: > Can any of suggest a place where I can hire remote Android developers. > I want to build an app soon. If you are willing to give me more details, I can spread the word in a upcoming Help a 'Droid Out (HADO) email: http://wiki.andmob.org/hado There is also a job board on anddev.org.

[android-developers] Where can I find good remote Android developers?

2009-07-28 Thread Rch
Hi Can any of suggest a place where I can hire remote Android developers. I want to build an app soon. - Rch --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send ema

[android-developers] Re: Experimental Bluetooth Library

2009-07-28 Thread Kat
Very cool! I just tried the sample application with the HTC myTouch, and it worked perfect. Thanks for sharing the library!! On Jul 24, 7:29 am, Steve wrote: > > I've written a simple library that provides access to some Bluetooth > > features: localdeviceproperties, remotedevicediscovering, pai

[android-developers] Re: Extending the Intent class

2009-07-28 Thread Mark Murphy
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 possible. > Here is the snippets. > > Code for custom intent: > > public class MyIntent extends Intent { > >private MyClass myClass; >

[android-developers] Bitmaps and AppWidgets

2009-07-28 Thread nEx.Software
I know that it is best to keep the number of bitmaps to a minimum, especially when working with app widgets, but I have a situation where I cannot compile my graphics into the apk. That leaves me with passing bitmaps.I am hoping to get some tips to manage this to minimize memory and/or other issue

[android-developers] Stopping fling in Gallery

2009-07-28 Thread Brady
Hi everyone, I'd like to handle a fling gesture in Gallery and stop the animation when the next image is fully displayed on screen. I've successfully captured the fling gesture in my GestureListener. However when I try to call mGallery.clearAnimation() but it doesn't stop the fling. I've looked

[android-developers] Extending the Intent class

2009-07-28 Thread R Ravichandran
I was experimenting with extending the Intent class but don't seem to make it work properly. I am wondering if extending is even possible. Here is the snippets. Code for custom intent: public class MyIntent extends Intent { private MyClass myClass; public MyIntent(String name, MyClass myC

[android-developers] Re: Garbled extracted XML resources

2009-07-28 Thread Isaac Waller
That's what I suspected. Thanks! On Jul 28, 3:32 pm, Romain Guy wrote: > You can't "fix" it because it's not an issue. XML files are compiled > to binary XML for faster parsing on the device. It's the same data, > but a different format. > > On Tue, Jul 28, 2009 at 3:27 PM, Isaac Waller wrote: >

[android-developers] Re: Garbled extracted XML resources

2009-07-28 Thread dan raaka
thatz because it is compiled :) use 'appt' to peek into the xml. http://developer.android.com/guide/developing/tools/aapt.html -Dan On Tue, Jul 28, 2009 at 3:27 PM, Isaac Waller wrote: > > Hello, > When I extract a XML file from res/layout in an APK file it is garbled > up. How can I fix this

[android-developers] Re: Garbled extracted XML resources

2009-07-28 Thread Romain Guy
You can't "fix" it because it's not an issue. XML files are compiled to binary XML for faster parsing on the device. It's the same data, but a different format. On Tue, Jul 28, 2009 at 3:27 PM, Isaac Waller wrote: > > Hello, > When I extract a XML file from res/layout in an APK file it is garbled

[android-developers] Garbled extracted XML resources

2009-07-28 Thread Isaac Waller
Hello, When I extract a XML file from res/layout in an APK file it is garbled up. How can I fix this? Thanks, Isaac --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, sen

[android-developers] Canvas.drawBitmapMesh()

2009-07-28 Thread Jason Proctor
i'm using Canvas.drawBitmapMesh() to warp images and the like but i'm not 100% sure what's going on with the transform. can someone point me to a primer on this? Googling for various things hasn't brought anything up. thanks much -- jason.software.particle --~--~-~--~~-

[android-developers] Re: Anyway one have experience with INJECT_EVENT ?

2009-07-28 Thread Mark Murphy
flohier wrote: > I'd like my app simulate key events. > > There's a permission that suggests that it's possible to do so > (INJECT_EVENT). > > Does anyone has experience doing this ? Use the Instrumentation framework as part of the Android JUnit extensions in android.test to simulate key events

[android-developers] Re: QVGA screen resolution applications

2009-07-28 Thread skink
On Jul 27, 11:54 pm, Dianne Hackborn wrote: > As of today, the platform does not support QVGA devices, so you do not need > to worry about that.  Whenever that situation may be changing, we will give > advance warning to tell developers how to update to handle such screens, but > clearly we wil

[android-developers] Re: Launching a Service at the startup

2009-07-28 Thread R Ravichandran
Thanks for the idea. I think I will go with this keeping in mind the concerns raised by Diane in this email thread. On Thu, Jul 23, 2009 at 11:48 AM, Mark Murphy wrote: > > > I have a need to create a background service that starts up during the > > system boot up, and keeps running until the

[android-developers] Re: How to obtain resources with a given locale?

2009-07-28 Thread Jack Ha
There isn't a way to do that since it is for the end-user to control. -- 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-

[android-developers] Anyway one have experience with INJECT_EVENT ?

2009-07-28 Thread flohier
I'd like my app simulate key events. There's a permission that suggests that it's possible to do so (INJECT_EVENT). Does anyone has experience doing this ? Thanks, --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "An

[android-developers] Re: CameraPreview: Out of memory

2009-07-28 Thread Richard Schilling
So, I made sure I'm calling stopPreview followed by release(). And, that's working fine. But, I also wanted to share with people what other things I had to do in order to integrate the camera surface view into my application. I create an activity that serves as the application's main screen. I

[android-developers] How to obtain resources with a given locale?

2009-07-28 Thread efu
I have different text packaged into my app for different locale. The Resource.getString(int resid) method automatically returns me the string for the CURRENT locale of the phone. Is there a way I can specifically obtain resources while passing in a locale? For example, there isn't such method as:

[android-developers] Re: is it possible to display a multi column list ?

2009-07-28 Thread Jack Ha
There's no built-in data grid component. -- 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 USA, Inc. On Jul 28,

[android-developers] Re: CameraPreview: Out of memory

2009-07-28 Thread Richard Schilling
I am doing this as well. I still get the out of memory errors. Here's my setup - 1. I create a "main menu activity" that shows an introductory screen. There's a big START button on that screen. When pressed, it opens a second activity with the camera preview SurfaceView on it. 2. When the seco

[android-developers] Re: bad compass and sensor data (stuck data).

2009-07-28 Thread Richard Schilling
There are lots of reasons sensors, especially digital compasses fall out of calibration. It's just part of the behavior we have to deal with. What I would like to know is how the Google dev team for Sky Map handles these conditions. Cheers, Richard On Jul 23, 7:55 am, Rud wrote: > I was wor

[android-developers] Re: serialization is taking too long, what can I do in terms of the activity life cycle

2009-07-28 Thread Dan Bornstein
On Mon, Jul 27, 2009 at 9:24 PM, Dianne Hackborn wrote: > On Mon, Jul 27, 2009 at 8:35 PM, rukiman wrote: >> Yes I did mean Java serialization. Any reason why I can't use it >> (apart from it being slow) ? > > Um...  it being super-crazy slow? :) It's also very fragile, in that small innocuous-

[android-developers] Re: Press Back key programmatically

2009-07-28 Thread Marco Nelissen
What is it that you're trying to achieve? If you want your activity to exit, call finish() If you want onKeyDown to be called for some reason, just call onKeyDown() On Tue, Jul 28, 2009 at 12:51 PM, Peacemoon wrote: > > i want to trigger the onKeyDown listener programmatically but don't > know

[android-developers] Press Back key programmatically

2009-07-28 Thread Peacemoon
i want to trigger the onKeyDown listener programmatically but don't know which method i should call? Does anyone know? Thanks --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this

[android-developers] Re: Flipping / Rotating TextView (or layout) upside-down

2009-07-28 Thread jhoffman
Romain, the solution you gave me works perfectly for rotating the layout upside-down. Unfortunately, I now have another problem! After the layout has been rotated, the Views no longer respond to clicks and long clicks. Inside of the RelativeLayout I am rotating, I have a textView that I allow the

[android-developers] View Files on a remove server/PC

2009-07-28 Thread johnny
Is anyone aware of a way to view the directory structure and files on a remote server or PC? Is there an existing app for this? Thanks in advance! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" g

[android-developers] android.R.drawable resources, mutate(), and StateListDrawable question

2009-07-28 Thread Mike
I am trying to create a Drawable from android.R.drawable.list_selector_background and mutate it so that I may change some of the drawables states for the StateListDrawable that is returned. I would like to be able to change the default enabled state drawable for the StateListDrawable to a differe

[android-developers] Fonts of different families and sizes for widgets

2009-07-28 Thread rizwan
hi, I m new to android dev ,can anyone share me the code snippet to play with fonts of different families and sizes for TextView .I have seen many tutorials based on Canvas. but no way to change fonts of Android widgets . Thanks --~--~-~--~~~---~--~~ You received

[android-developers] how to disable android keybaord by default

2009-07-28 Thread Morris
Hi All: The default settings of Android Keyboard is enabled(settings -> local&text -> android keyboard -->check). I would like to disable (unchecked) it by default. I couldn't know how and where to modify the code to let it be disabled by default at my first time when I open the android system.

[android-developers] Re: Using SDk provided images

2009-07-28 Thread Dianne Hackborn
The issue isn't with the icons being renamed (they can't be, they are part of the public API). It is that you can count on different devices having different looks for these icons, so unless your applications able to -only- use the icons available in the system and none of its own, on an increasin

[android-developers] Re: display thumbnail images from sdcard

2009-07-28 Thread Jack Ha
Your code seems to work fine. Did you see any errors in the logcat output? Did you specify the sdcard image? -- 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

[android-developers] Re: Can't find file with OpenFile

2009-07-28 Thread Lorenz
ok Thanks.. On Jul 28, 6:42 pm, Marco Nelissen wrote: > On Tue, Jul 28, 2009 at 9:29 AM, Lorenz wrote: > > > THanks Charlie, and thanks to Mark, now I've a new problem, I'm very > > sorry but I'm a "beginners" of Android , I'm not able to read a file!! > > You might want to try the android-begi

[android-developers] Re: Spent 3 weeks building 'Launcher'(Home) application. Please help. T_T

2009-07-28 Thread alucard20004
Hi. Thank you for the fast reply. build the Android source tree from where I got Launcher's source ? I assume that can't be done in Windows, correct? according to this message from http://source.android.com/download : "To build the Android source files, you will need to use Linux or Mac OS. Bu

[android-developers] Re: Spent 3 weeks building 'Launcher'(Home) application. Please help. T_T

2009-07-28 Thread Dianne Hackborn
Also, you really need to take the version of the code that matches the version of the platform it is to run on (i.e., cupcake for 1.5). You'll cause yourself lots of extra trouble trying to back-port a more recent version of code to an older version of the platform; this is probably the reason for

[android-developers] Re: Can't find file with OpenFile

2009-07-28 Thread Marco Nelissen
On Tue, Jul 28, 2009 at 9:29 AM, Lorenz wrote: > > THanks Charlie, and thanks to Mark, now I've a new problem, I'm very > sorry but I'm a "beginners" of Android , I'm not able to read a file!! You might want to try the android-beginners group. --~--~-~--~~~---~--~--

[android-developers] Re: IMplementing flood fill algorithm on the bitmap

2009-07-28 Thread karthikr
Hi Guys, I have been trying very hard to get the flood fill algorithm implemented. But its taking a long time, can someone help me with some examples or some guidelins for the same? Regards, R.Karthik On Jul 23, 8:31 pm, karthikr wrote: > Hi Guys, > > Any help on the same? > > Thanks in adva

[android-developers] Re: Spent 3 weeks building 'Launcher'(Home) application. Please help. T_T

2009-07-28 Thread Romain Guy
The source code works but cannot be compiled with the SDK. You need to build the Android source tree from where you got Launcher's source code and build Launcher in that tree. On Tue, Jul 28, 2009 at 9:37 AM, alucard20004 wrote: > > (Please excuse me for my imperfect English.) > > Hi. this is me:

[android-developers] Spent 3 weeks building 'Launcher'(Home) application. Please help. T_T

2009-07-28 Thread alucard20004
(Please excuse me for my imperfect English.) Hi. this is me: - My skill : 80% artist / 20% programming. - Now 6 months into Android development. - My goal is to use my art skills to customize the Launcher application. Current situation: (please forgive this long story) 1. I'm trying to build t

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

2009-07-28 Thread nEx.Software
Jeff, is there some way to change the dial at runtime? On Jul 13, 3:51 pm, Jeff Sharkey wrote: > > Is there any way to make thedialdynamic? That's a crucial part of > > the app I'm trying to build. > > Yep, assign a drawable to "android:dial" just like the other > attributes.  Here's the exact l

[android-developers] Re: Can't find file with OpenFile

2009-07-28 Thread Lorenz
THanks Charlie, and thanks to Mark, now I've a new problem, I'm very sorry but I'm a "beginners" of Android , I'm not able to read a file!! First of all I've found the file in the File explorer, but I can see only the icon and can't open it ,it seems also tha the file Data.dat is empty, as a matte

[android-developers] Re: Sqlite problem, urgent request!

2009-07-28 Thread Hong
has this LIMIT clause as argument been implemented yet? thanks On Thu, Apr 10, 2008 at 4:55 PM, Megha Joshi wrote: >  Hi, > >  A future release of the SDK will provide a SQLiteDatabase.query() which > takes LIMIT clause as an argument. >  For now you can use the use execSQL() method directly and

[android-developers] Re: MediaScannerConnection cant connect!

2009-07-28 Thread Marco Nelissen
On Tue, Jul 28, 2009 at 5:55 AM, SurtaX wrote: > > I am trying to use MediaScannerConnection to update content provider > of a newly downloaded MP3. However no matter what I do it does not > seem to be able to connect. I have even put this chunk of code into > onCreate and hardcoded to path of an

[android-developers] Re: Managed Cursor, Providers, and Exceptions

2009-07-28 Thread Hong
I think this is your code here: $MyCursorHelper$MyContentObserver.onChange(CursorTreeAdapter.java:503) Looks like when you switching between activities and multiple data population tasks are going on, they have conflicting Cursor state in your onChange method. You might want to use a static fla

[android-developers] Re: could i get email recieve notification from intents?

2009-07-28 Thread Jack Ha
No, you won't be able to receive new email arrival notification. -- 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-Mobil

[android-developers] Re: how to avoid activity restart at keyboard open or close

2009-07-28 Thread Jack Ha
I don't believe you can avoid that. Your code just needs to handle it correctly. -- 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

[android-developers] How to use Arial font with Webview

2009-07-28 Thread Peacemoon
I user a webview control in my app to display some local data (load loadData method) . Now i want to display some unicode characters and i have used tag: something herer . But it seems that webview can not find the Arial font because i can only see UFO - Characters . Do i have to copy arial.ttf t

[android-developers] Re: Attach multiple images

2009-07-28 Thread quill
I don't think the current email application support this. Just my opinion. :-) On 7月28日, 下午7时31分, SrilankanKK wrote: > Hi > > i have put this question on several time on the Developer forum. But i > didn't get any answer. > > I build an email application using intents. I can send a email wit

[android-developers] Re: Attach multiple images

2009-07-28 Thread Jack Ha
As far as I know, it only supports one attachment as Intent.putExtra() will replace any existing value for the given key. -- 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 ca

[android-developers] Re: update for syncML (client) and android

2009-07-28 Thread angelo
funambol do have a second release of the syncml client which did do contacts,events and tasks but I couldnt get it to work with my companys syncml server (the paths were incorrect).. Unfortunatly my knowledge of ant and all the deployment tools aint good enough to "rewrite" the urls and try.. :-(

[android-developers] Re: MediaScannerConnection cant connect!

2009-07-28 Thread quill
Use MediaScannerConnectionClient. If you don't know how to use, search MediaScannerConnectionClient in this forum. On 7月28日, 下午8时55分, SurtaX wrote: > I am trying to use MediaScannerConnection to update content provider > of a newly downloaded MP3. However no matter what I do it does not > seem t

[android-developers] Re: Correct intent to launch gallery / video camera

2009-07-28 Thread Jack Ha
VideoCamera doesn't exist before Cupcake. -- 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 USA, Inc. On Jul 28

[android-developers] Re: How to simulate a TrackBall Event in emulator?

2009-07-28 Thread Nightwolf
Use event.getX() and event.getY(). Values are > 0 for one direction and < 0 for another. On Jul 27, 10:48 pm, hap 497 wrote: > On Sat, Jul 25, 2009 at 2:49 AM, lucky4me wrote: > > > See "Controlling the Emulator" > > >http://developer.android.com/guide/developing/tools/emulator.html#con... > >

[android-developers] Re: Unicode characters via resource element

2009-07-28 Thread Jason Van Anden
Is no one biting because I used "no avail" twice? On Mon, Jul 27, 2009 at 1:21 PM, Jason Van Anden wrote: > I posted this in beginner to no avail. Perhaps this is one for developers > ... > > I want to use unicode characters in a toast. I can do this via code. > > I am not having any luck assoc

[android-developers] How to Set Dialog Orientation

2009-07-28 Thread doubleslash
My underlying actitvity is set to landscape orientation, but when I show the dialog, I'd like it to be in portrait (vertical) orientation. I set the orientation in my layout to be vertical but that didn't help. The Dialog class doesn't have a method for such a thing. Can someone help? --~--~-

[android-developers] is it possible to display a multi column list ?

2009-07-28 Thread jerryfan2000
Hi, I am looking for a way to create a Microsoft data grid style list in android. But I am wondering is there any available built in component capable of doing this job such as listview? Thanks --~--~-~--~~~---~--~~ You received this message because you are subscrib

[android-developers] Re: Log with Production App

2009-07-28 Thread mjc147
I know its not the same, but is this a more recommended approach than to wrap each log with a call to Log.isLoggable()? I know this would not have the benefits (like app size) you mentioned, but, since I've had problems with the isLoggable() method anyway, it seems like a simple and effective app

[android-developers] how to avoid activity restart at keyboard open or close

2009-07-28 Thread Sundar
Hi, I have fixed the activity screen orientation to portrait on AndroidManifest.xml file. When I open or close the keyboard the activity gets restarted. How to avoid this restart? Thanks in advance. --~--~-~--~~~---~--~~ You received this message because you are s

[android-developers] Correct intent to launch gallery / video camera

2009-07-28 Thread admin.androidsl...@googlemail.com
My application has buttons to launch gallery and video camera apps but the below code only seems to work on phones with the standard Cupcake build : // For Gallery Intent intent = new Intent(); intent.setClassName("com.android.camera", "com.android.camera.GalleryPicker"); intent.setFlags(

[android-developers] Re: Any updates on ADC-2?

2009-07-28 Thread Zsolt Váradi
On Tue, Jul 28, 2009 at 3:42 PM, Maps.Huge.Info (Maps API Guru) wrote: > There is no ambiguity, the SDK is required. > > -Jonn Coryat It's not like you had any other choice for application development. But the original question was about using the NDK with the SDK, and it's still not answered. Z

[android-developers] Re: How to get all table names in SQL database

2009-07-28 Thread Yusuf T. Mobile
It depends if you want all the tables programmatically or if you can do it in the command line. Sujay's answer was from the command line. So starting a few steps back, you type: > adb shell # cd /data/data # cd com.android.providers.contacts # cd databases # sqlite3 contacts.db SQLite version 3.

[android-developers] Re: Can't find file with OpenFile

2009-07-28 Thread Charlie Collins
Window->Show View->Android->File Explorer Or you can use the DDMS file explorer: http://developer.android.com/guide/developing/tools/ddms.html. Or you can use "adb shell" to connect and browse around manually (ls / data/data - for example): http://developer.android.com/guide/developing/tools/a

[android-developers] Re: Any updates on ADC-2?

2009-07-28 Thread Maps.Huge.Info (Maps API Guru)
The terms are fairly plain and obvious if you read them: "a. SUBMISSION OF ENTRIES: To qualify for a Prize, an "Entry" to the Challenge consists of an original application that is written using a version of the Android Software Development Kit ("SDK") (available at http://developer.android.com) t

[android-developers] Facebook api for Android

2009-07-28 Thread luyen
Our member has a question about Facebook api for Android, can some one give us a help: Quote: hi Guyz, I m developing an application in which on a single click of button will redirect me to my facebook account where i can upload my personalised images . I m finding it difficult to do it as still

[android-developers] Re: How can i access the home screen to show gif anim there..?

2009-07-28 Thread rollbak
Hello, You need to extend a class from *BroadcastReceiver* and then add it to a reciever tag in your AndroidManifest.xml public class SMSReceiver extends BroadcastReceiver{...} And then instead of making a toast or a notification, you should launch your act

[android-developers] Re: How can i access the home screen to show gif anim there..?

2009-07-28 Thread Desu Vinod Kumar
Hi thanks for ur response when we close the app also it should animate upto when we dissmiss that gif image upto that it should animate it possible... On Tue, Jul 28, 2009 at 6:38 PM, rollbak wrote: > > Hello, > > You need to extend a class from *BroadcastReceiver* and then add it to > a recieve

[android-developers] Re: Any updates on ADC-2?

2009-07-28 Thread jmhermelin
May we have an official answer from google ? On 15 juil, 18:20, "Maps.Huge.Info (Maps API Guru)" wrote: > Looks like the app has to be written with the SDK. See the official > terms and conditions for the exact wording. > > My application works only in the US, I wonder if that will doom it's > p

[android-developers] Re: Using SDk provided images

2009-07-28 Thread Mark Murphy
String wrote: > On Jul 28, 12:22 pm, Mark Murphy wrote: > >>> android.R.drawable.ic_menu_preferences. >> I suggested that once on this list, and a member of the core Android >> team pointed out that this is a really bad idea, since those resource >> values might change, or the underlying graphic

[android-developers] APNG supported

2009-07-28 Thread Fred Grott(shareme)
For those in the dark APNG is animated PNG graphics files. I was wondering if Android SDK supported APNG files.. Fred Grott http://mobilebytes.wordpess.com --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android De

  1   2   >