[android-developers] ADT 16 crashes

2012-02-07 Thread theSmith
Eclipse 3.6.2 ADT 16.0.1 OSX 10.6.8 I'm in the process of creating a new library project out of a previous project and am now trying to create a project that depends on it. This isn't the first time I've used Libraries and have several that work just fine. When trying to build the project (not

[android-developers] Re: ADT 16 crashes

2012-02-07 Thread theSmith
Never mind. This is related to custom attributes in a library project which is still unsupported. On Feb 7, 5:28 pm, theSmith chris.smith...@gmail.com wrote: Eclipse 3.6.2 ADT 16.0.1 OSX 10.6.8 I'm in the process of creating a new library project out of a previous project and am now

[android-developers] Re: Fragment Support forward compatibility?

2011-05-22 Thread theSmith
Did the recent update to the ACL fix the issues with aminations? -theSmith On Apr 15, 4:50 am, alevapi alexis.vapil...@gmail.com wrote: in the current static library animations are broken. I have a fix that will be available in a later update When do you think the fixed version

[android-developers] Re: Submit Android form data to the web via POST

2010-06-09 Thread theSmith
I saw your entry on stackoverflow too. http://stackoverflow.com/questions/245/submit-form-with-post-data-in-android-app I would suggest using the Apache libraries (all the http client, get/ post, response stuff) and parsing the data your self. If they just wanted a webview the user might as

[android-developers] Re: Submit Android form data to the web via POST

2010-06-09 Thread theSmith
= httpClient.execute(httpRequest); -%- On Jun 9, 6:44 pm, theSmith chris.smith...@gmail.com wrote: I saw your entry on stackoverflow too.http://stackoverflow.com/questions/245/submit-form-with-post-data... I would suggest using the Apache

[android-developers] Re: Is there a library for either choosing a photo or taking one with the camera?

2010-05-16 Thread theSmith
You don't really need a library for this, in fact i would recommend against it. What you want to do is use Android's intent based system for these actions. Intents will let you fire off another app to complete a task for you (like taking a picture) and then you can get that picture back as a

[android-developers] Re: Which device is best for testing development?

2010-05-08 Thread theSmith
The emulator is absolutely not good enough lol. Even with a high end computer it is still slower than an actual device (because its doing hardware emulation). If you want some serious performance out of your game then get a Nexus One, Droid or Incredible. Otherwise feel free to pick up whatever.

[android-developers] Re: how to save a temporary file to /cache

2010-04-22 Thread theSmith
Paul, You cannot write to the top level 'cache' directory. You must write to the 'cache' directory in you application's package structure. I'm not using C so I can't give you an example there, but from java you can use your application's context to get the cache dir and use an io stream to write

[android-developers] Re: how is update performed !

2010-04-17 Thread theSmith
The old version isn't so much as uninstalled as it is updated. All external resources like shared preferences, databases etc (your app's / data/ folder) are not removed. If you have something on the sd card it is not removed. Everything else gets removed and updated, including all the drawables

[android-developers] Re: How do know when user launches application

2010-04-08 Thread theSmith
When the launcher is clicked, the current activity is always brought up if it exists. So if you wanted to return to the parent activity you would have to either finish the other activities on the stack or relaunch the original activity. I can determine this by simply setting a boolean when your

[android-developers] Re: connecting to internet via app

2010-04-07 Thread theSmith
What do you mean enable? If you mean bypass the permission, then no. But if you application has the internet permission then you can connect several different ways. Either using the apache http library or I believe you can also use sockets (but I never have). Using the apache library I know it

[android-developers] Re: How to save both Image and Text with SQLiteDatabase? And how to binding this images to a simpleCursorAdapter?

2010-04-07 Thread theSmith
David, Why would you want to save the image in the sqLite database? I feel like you are using up an unnessary amount of valuable storage space on the device. Wouldn't a better solution be to save the image to the SD card and only save the location of the image to the database?

[android-developers] Re: Copy a Table

2010-04-06 Thread theSmith
I believe this is what you want. DROP TABLE character2 SELECT * INTO character2 FROM character3 --- Creator of My College Life http://mycollegelife.org On Apr 6, 9:50 pm, Jason LeBlanc jasonalebl...@gmail.com wrote: Try these search terms. Not sure if they are supported by SQLite

[android-developers] Re: Example that prints 1 2 3 4 on A A A A?

2010-02-15 Thread theSmith
Google search is your friend, and so are the docs. http://developer.android.com/intl/de/reference/android/app/Activity.html#onKeyDown%28int,%20android.view.KeyEvent%29 Didn't test it but something like this @Override public boolean onKeyDown(int key, KeyEvent ev) { switch(key) {

[android-developers] Re: Is there a way to measure the time-consumings of all my functions in percent after a game?

2010-02-07 Thread theSmith
for Android http://www.youtube.com/watch?v=U4Bk5rmIpicfeature=player_embedded Debugging Arts of the Ninja Master http://www.youtube.com/watch?v=Dgnx0E7m1GQfeature=player_embedded In the second video go to ~22:30 and he starts covering how to use traceview -theSmith On Feb 7, 8:37 am, Mark Murphy

[android-developers] Re: Widget on Top

2010-02-03 Thread theSmith
No, widgets are only displayed on the homescreen. -theSmith On Feb 3, 4:42 pm, David david.b.raistr...@gmail.com wrote: I'm banging my head on the wall.  I have a small temperature/date/time widget.  When I touch the widget it changes from current temp to current date to current time

[android-developers] Re: Binding list views to large data sets

2010-02-02 Thread theSmith
On Feb 2, 3:31 pm, THill thill.dr...@gmail.com wrote: Thanks Mark. Use the LIMIT and OFFSET terms on your SELECT statement to obtain data in smaller chunks. Create a wrapping adapter (like my EndlessAdapter) that only loads chunks when the user scrolls to the bottom of thelistand

[android-developers] Re: apps that require other paid apps

2010-02-02 Thread theSmith
you should be using a published intent like the google ones (although they aren't all listed here) http://developer.android.com/intl/de/guide/appendix/g-app-intents.html If you don't your app may break if that intent changes. -theSmith On Feb 2, 8:16 pm, tansaku tans...@gmail.com wrote: Hi

[android-developers] Re: Remote Log

2010-02-01 Thread theSmith
file, I've seen at least one in the market. Can you use a service (free) like Flurry? They allow you to do some pretty cool stuff very easily. Why exactly are you doing this 'for development only'? If you're doing it during development can't you just look at your own logs using logcat? -theSmith

[android-developers] Re: bug reporting

2010-02-01 Thread theSmith
can stuff into a broadcast... For example I would at least want a full stack trace and cause trace from the exception that occurred, and this can easily be 20+ lines. -theSmith On Jan 30, 11:30 pm, laphroaig15 laphroai...@gmail.com wrote: I'd finished up my first android application, a simple

[android-developers] Re: ANDROID_ID always null on devices

2010-02-01 Thread theSmith
it is the code and not the devices themselves... -theSmith Looks like there's something wrong with the app compilation maybe? On Jan 29, 11:44 am, Mark Murphy mmur...@commonsware.com wrote: I was hoping I was missing a permission or something like that. I am not aware of a permission needed

[android-developers] Re: bug reporting

2010-02-01 Thread theSmith
access to what? Do they need their own accounts? (I'm not familiar with JIRA) -theSmith Broadcasting seems to be working.  Maybe I'll try generating a deep stack overflow to get a gauge on the upper bounds on the stacktrace. It might be a big chunk of info, but hopefully the system won't

[android-developers] Re: Layout problems: AbsoluteLayout deprecated, how to do it now?

2010-01-30 Thread theSmith
pixels) to the sides of the buttons. For small screen devices you probably want to create a new layout with smaller buttons so it displays properly. -theSmith The other problem with my AbsoluteLayout was that my main page of the game looks like this on smaller devices:http://digle.de/friends

[android-developers] Re: ANDROID_ID always null on devices

2010-01-28 Thread theSmith
is supposed to be unique. Also there is no reason that this shouldn't be working on those devices, can anyone confirm this on those devices? -theSmith } On Thu, Jan 28, 2010 at 6:14 AM, flsobral flsob...@gmail.com wrote: Hello. I'm trying to get the ANDROID_ID on two different devices

[android-developers] Re: How do I kill a blocking thread?

2010-01-28 Thread theSmith
Send it an interrupt and handle it appropriately. http://articles.techrepublic.com.com/5100-10878_11-5144546.html -theSmith On Jan 28, 3:59 pm, redders redders6...@googlemail.com wrote: I have a thread listening on a TCP port. When there's nothing coming in on that port, the thread blocks

[android-developers] Re: list - need suggestion

2010-01-27 Thread theSmith
(Intent.FLAG_ACTIVITY_NEW_TASK);             startActivity(startActivity);         }     } } On Tue, Jan 26, 2010 at 5:28 PM, theSmith chris.smith...@gmail.com wrote: On Jan 25, 11:48 pm, android beginner android.beginne...@gmail.com wrote: so, each sub-lists should be created as list activity. On selecting any

[android-developers] Re: list - need suggestion

2010-01-25 Thread theSmith
that on pressing escape key, I can navigate backwards. Android does this automatically, and I assume you mean the 'back' key. Each new activity is launched ontop of the older ones allowing you to navigate backwards down the stack. -theSmith Thanks On Tue, Jan 26, 2010 at 9:11 AM, saad bouchehboun bsaad1

[android-developers] Custom Buttons containing layouts

2010-01-21 Thread theSmith
on where I should get started? -theSmith -- 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 group, send email to android-developers+unsubscr

[android-developers] Re: Can't see comments for Android 2.0 version of app

2010-01-20 Thread theSmith
of your application if the version is 2.0 or higher, then call the appropriate contact function for that version. Your app will run fine as long as you don't call api functions that don't exist. -theSmith Thanks, -Gregg -- You received this message because you are subscribed to the Google Groups

[android-developers] Re: Can't see comments for Android 2.0 version of app

2010-01-20 Thread theSmith
Target the highest available version, so 7 for 2.1 So you have to change the build path in eclipse to reflect that. -theSmith On Jan 20, 3:10 pm, Gregg Reno gregg.r...@gmail.com wrote: Thanks!  http://www.androlib.com/had the info I was looking for, buthttp://www.androidzoom.com/looks out

[android-developers] Re: Saving the contents of an array

2010-01-19 Thread theSmith
You may want to consider using the shared preferences instead of writing to a file, its pretty simple to use. http://developer.android.com/reference/android/content/SharedPreferences.html -theSmith On Jan 19, 8:25 pm, Jeffrey jeffisagen...@gmail.com wrote: How do I save the contents of an array

[android-developers] Re: ATTENTION ANDROID TEAM: Take back control of Android.

2010-01-18 Thread theSmith
, despite the fact that most would still work perfectly fine. -theSmith On Jan 18, 5:48 am, Christine christine.kar...@gmail.com wrote: I agree with Mark that older apps, like 1.6 apps, run happily on newer sdks. Most apps can do without the newer features, if you accept that sometimes you have to do

[android-developers] Re: HashMap, ArrayList and fastest way to iterate Collections on Android (+other ways to make it run like a wild horse)

2010-01-17 Thread theSmith
These tools are covered in some detail in the 'Debugging Arts of the Ninja Masters' video -theSmith On Jan 17, 8:17 am, Mika mts...@googlemail.com wrote: Simple question, what is the fastest way to iterate through collections on Android? I generally use collection.iterator(); and the iterator.next

[android-developers] Re: Thoughts on lawyers and self protection

2010-01-16 Thread theSmith
warrant that kind of protection. -theSmith On Jan 16, 1:12 pm, Wayne Wenthin wa...@fuligin.com wrote: LLC's are pretty cheap to form.   I have 1 LLC that I'm a partner in and 1 sole proprietorship.   The software is not published under the LLC though. But if you are worried that your app may make

[android-developers] Re: Android Pirate Site

2010-01-16 Thread theSmith
apple have piracy issues like this on the iPhone? -theSmith On Jan 16, 12:09 pm, MakeMobile makemobileinnovati...@gmail.com wrote: I've been in the business for quite some time, and I know that drill. But I do not accept your reply as a useful response to this problem. This problem is damaging

[android-developers] Thoughts on lawyers and self protection

2010-01-16 Thread theSmith
have protection like a LLC to protect yourself from being sued into oblivion? Also what licenses are freely available that might be of interest? -theSmith -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

[android-developers] Re: Android Pirate Site

2010-01-16 Thread theSmith
Would it be feasible to authicate the app with a google checkout number like copilot does? On Jan 16, 1:55 pm, MakeMobile makemobileinnovati...@gmail.com wrote: On Jan 16, 1:08 pm, Wayne Wenthin wa...@fuligin.com wrote: My question is why would google do anything.  These are your apps.  You

[android-developers] Re: Android Pirate Site

2010-01-16 Thread theSmith
@david I believe there must be, I know flurry assigns an unique id to each user, so I'm guessing its using a hardware identifier, I'm going to look through the docs now On Jan 16, 2:19 pm, David Sauter del...@gmail.com wrote: More importantly - do Android devices have unique hardware identifiers

[android-developers] Re: Creating custom button looks?

2010-01-15 Thread theSmith
use an imagebutton On Jan 15, 1:35 pm, Tommy droi...@gmail.com wrote: Hey, Is there a way to create a custom button style? Say I want a round button do I simply take the pre-made round graphic and make it the background of the button or will the button still be a rectangle? -- You received

[android-developers] Re: Creating custom button looks?

2010-01-15 Thread theSmith
If you need multiple hit areas you may want to consider using several images to create 'one' button. For example a d-pad could be 5 imagebuttons, u/d/l/r and the middle. This approach will most likely save you quite a headache. -theSmith On Jan 15, 4:22 pm, Moto medicalsou...@gmail.com wrote

[android-developers] Re: Updating a unique AppWidgetProvider from a Service

2010-01-14 Thread theSmith
. Regards Lyndon On Jan 3, 4:17 pm, theSmith chris.smith...@gmail.com wrote: To follow up on my own question, heres how I did it. I went from a service to an IntentService and in the onHandleIntent (Intent intent) I handle the update requests. To get the individual id's I put them

[android-developers] Re: One service to rule them all

2010-01-09 Thread theSmith
the user to install the newest version. (either through the market or straight from the server. The browser sends .apk downloads to the application manager if I remember correctly) -theSmith On Jan 9, 9:46 am, Mark Murphy mmur...@commonsware.com wrote: Eric Crump wrote: -Is it possible to push new

[android-developers] Re: EditText.getText() not working

2010-01-09 Thread theSmith
using findViewById() 81 times seems more demanding than creating them at runtime to me. There is always an Exception thrown if your app is crashing, look at the logcat in the 'DDMS' view in Eclipse. If you only see a runtime exception then you need to get the cause from the exception. Surround

[android-developers] Re: Marketplace

2010-01-09 Thread theSmith
to be updated. But like I said, this is all just me speculating. -theSmith On Jan 9, 9:08 am, Business Talk roman.businesst...@gmail.com wrote: thank, so your guess is that the market application synchs at least partial information? For example, 'Featured' application information, and/or partial

[android-developers] Re: How should I set up my app? Database for flash cards?

2010-01-09 Thread theSmith
Very feasible, I would use a database to hold the images filenames but actually store the images on the sd card. Changing the text of a textView is like one call, very easy. -theSmith On Jan 9, 1:05 pm, Breezy mbre...@gmail.com wrote: I'm about to begin work on a simple app that is just flash

[android-developers] Re: Marketplace

2010-01-08 Thread theSmith
Do you mean like 'how/when does the market place check for app updates?' And my best guess is that it might happen during a sync (since the market place requires background data to be turned on) I don't really know much about the backend frame work stuff though. -theSmith On Jan 8, 11:16 pm

[android-developers] Re: Who wants Multi-touch in all Android versions?

2010-01-07 Thread theSmith
Scott, Please publish your code, I would love to take a look at it :-) -theSmith On Jan 7, 12:48 pm, Dan Sherman impact...@gmail.com wrote: I'd love to see this as well :) On Thu, Jan 7, 2010 at 9:30 AM, Dianne Hackborn hack...@android.com wrote: Well I would really like to see this, given

[android-developers] Re: Enhancement to Emulator

2010-01-07 Thread theSmith
Noting what David said, you are better off using a development device like the google dev phone 1. -theSmith On Jan 7, 1:49 pm, David Turner di...@android.com wrote: On Thu, Jan 7, 2010 at 10:36 AM, Thisara Rupasinghe thisara...@gmail.comwrote: Hi all, Im trying to write an application

[android-developers] Re: How to use the Object android.widget.AdapterView.getItemAtPosition(int position)

2010-01-07 Thread theSmith
. Read the docs, the blog, watch the google I/O videos, then maybe I'll answer some more intelligent questions. -theSmith On Jan 7, 2:30 am, Manoj linkex.ma...@gmail.com wrote: Sir I am doing the same thing what you are tell but i am not getting the way tousethe returned object by getItemAtPosition

[android-developers] Re: How to use the Object android.widget.AdapterView.getItemAtPosition(int position)

2010-01-06 Thread theSmith
on your knowledge of the android documentation http://developer.android.com/guide/index.html There are plenty of examples that will help you get started. -theSmith On Jan 6, 3:47 am, Manoj linkex.ma...@gmail.com wrote: Hi, I am new for Android development. I want to use Object

[android-developers] Re: No Adobe Flash support for Eclair!?!

2010-01-05 Thread theSmith
Well well well. you all should find this interesting. Man I love CES. http://www.engadget.com/2010/01/05/nexus-one-previewed-with-flash-10-1-beta-careful-what-you-wish/ Looks like we're going to need a addon flash blocker on android soon... -theSmith On Jan 4, 11:48 am, chris harper ch393

[android-developers] Re: Updating a unique AppWidgetProvider from a Service

2010-01-03 Thread theSmith
to the IntentService with context.startService(i). Everything is working perfectly now. -theSmith On Jan 1, 10:12 pm, theSmith chris.smith...@gmail.com wrote: Here is my issue, I want to be able to update a specific AppWidgetProvider (home screen widget) from a custom service class.  I have

[android-developers] Re: Best HTTP Request Method

2010-01-01 Thread theSmith
the writing to external storage permission in your manifest. // start tracing to /sdcard/calc.trace Debug.startMethodTracing(calc); // ... // stop tracing Debug.stopMethodTracing(); Traceview http://developer.android.com/guide/developing/tools/traceview.html -theSmith On Jan 1, 7

[android-developers] Updating a unique AppWidgetProvider from a Service

2010-01-01 Thread theSmith
suggestions? -theSmith -- 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 group, send email to android-developers+unsubscr...@googlegroups.com For more

[android-developers] Re: Reminder: IRC office hours tomorrow

2009-12-29 Thread theSmith
Thanks for those Megha. Is there any plan to add responses to the 12/17 and 12/22 meetings? I find this an excellent resource issues/problems/insight that I think should be available. -theSmith On Dec 18, 5:39 pm, Megha Joshi mjo...@google.com wrote: Check out the answers to questions from

[android-developers] Re: How can i stop a thread in a Activity?

2009-12-29 Thread theSmith
, if it's false the thread will exit accordingly. Also in my app's onStop() method I make sure to check to see if the thread is running and stop it if it is. -theSmith On Dec 18, 5:44 pm, Streets Of Boston flyingdutc...@gmail.com wrote: Calling interrupt() only works if your thread

[android-developers] Re: How can i stop a thread in a Activity?

2009-12-29 Thread theSmith
That would work also, you just have to remember that function calls are never free and the GC on android is annoying enough as it is, no need to give it more stuff to do. -theSmith On Dec 29, 1:43 pm, jotobjects jotobje...@gmail.com wrote: Why not just call Thread.isInterrupted() instead

[android-developers] Re: blocking UI thread when Yes/No AlertDialog is displayed

2009-12-29 Thread theSmith
is necessary and put it in the onClick listeners. Its really that simple -theSmith - TreKing - Chicago transit tracking app for Android-powered deviceshttp://sites.google.com/site/rezmobileapps/treking

[android-developers] Re: How to hack the activity stack of your application ?

2009-12-28 Thread theSmith
a new service with it. -theSmith On Dec 28, 10:35 am, André Oriani aori...@gmail.com wrote: Hi all, Differently from most application, the state of my application is not controlled by its stack of activities but by the state of a background service. Here is my problem. Suppose I have a task

[android-developers] Re: No Adobe Flash support for Eclair!?!

2009-12-28 Thread theSmith
As Mark said, unless you have a Hero, which has flash built it, this will not work. On Dec 28, 1:38 pm, chris harper ch393...@gmail.com wrote: Thank you Mark for the clarification it is greatly appreciated. With so many different sources on the internet it is somewhat difficult to know what

[android-developers] Re: Droid 2.1?

2009-12-28 Thread theSmith
Not to burst your bubble, but my apps have seen the Google Nexus One and 2.1 for about a month now (found them looking through my Flurry stats). As for the Droid build part, well I guess we we're all expecting it to come eventually. Any one heard of an official release date? On Dec 28, 12:48 

[android-developers] Re: Devphone discount?

2009-12-28 Thread theSmith
None that I've heard of, but you can always buy a cheap G1 and root it if you want to. (root access is the only advantage of having a dev phone correct?) -theSmith On Dec 28, 10:51 am, QAH qah...@gmail.com wrote: Hello everyone! I am a highschool student and I really love programming. I would

[android-developers] Re: How to hack the activity stack of your application ?

2009-12-28 Thread theSmith
structure) . - They are killed ( SIGKILL) , they won't have time to save anything neither to excute onDestroy.  The problem will happen when process are launched again ( so no memory abou what happened before, just the stack of activity because framework does the job) On Dec 28, 2:56 pm, theSmith

[android-developers] Re: Reminder: IRC office hours tomorrow

2009-12-16 Thread theSmith
Megha, Is there a transcript of previous office hours (just one I believe) / future office hours? By transcript I mean exactly what was said during the session, available for those who were unable to actually be on IRC at that time. Thanks, Chris On Dec 14, 7:02 pm, Megha Joshi

[android-developers] Re: Back-porting from Android 2.0 to Android 1.5

2009-12-15 Thread theSmith
@Diane My mistake, since I started developing when 1.6 was released I thought the search manager was the new QSB from 1.6 @AJ My app is crashing too because of the QSR terms in the searchable.xml The problem then becomes how can you access them from 1.6+ without them being seen in 1.5? On Dec

[android-developers] Re: androidplayground.net

2009-12-13 Thread theSmith
How did you guys set up alerts? Im confused by what you mean by this. -smith On Dec 12, 7:24 pm, iPaul Pro mr.paulbu...@gmail.com wrote: @Andrel - Thats exactly how I found out about this. On Dec 12, 6:57 pm, Andrei gml...@gmail.com wrote: I would advise to everybody to create Google alert

[android-developers] Re: List view with textviews and imageview, best practices

2009-12-10 Thread theSmith
, but using a separate thread that loads the images should do the trick, as it will not lock up the UI thread. -theSmith On Dec 10, 4:19 am, Patrick Plaatje patrick.plaa...@ndcvbk.nl wrote: Hi All, i'm developing an application which has an listview. I'm currently creating the list item view

[android-developers] Re: New to Android

2009-12-10 Thread theSmith
://code.google.com/events/io/2009/sessions.html#mobile And the newbie videos http://developer.android.com/videos/index.html#v=opZ69P-0Jbc -theSmith On Dec 8, 10:33 pm, smithkjnc smithk...@gmail.com wrote: Hello. I am new to the Android coding but not to programming as I learned on Pascal a LONG time ago

[android-developers] Re: Back-porting from Android 2.0 to Android 1.5

2009-12-08 Thread theSmith
Should we just create our own search activity or is there one available in 1.5? As far as I know the global search feature is only 1.6+. When creating our own activity, how would we capture the search key (hard) being pressed on a device? -Chris On Dec 7, 6:25 pm, Dianne Hackborn

[android-developers] Re: Emulator on Linux 10 times slower than on Windows

2009-12-05 Thread theSmith
My emulators behave just fine under 9.10 Karmic Kola, unless I start method tracing, then it really slows down. Are you using the java sun jdk and not the open jdk? On Dec 5, 11:12 am, Mark Murphy mmur...@commonsware.com wrote: I'm using a dual boot configuration with Windows XP and Ubuntu

[android-developers] Re: Can other applications use the share function of Facebook for Android?

2009-12-04 Thread theSmith
intents you have used to share via facebook. i'm also looking for this and share via twitter, ... Thanks, Wouter On Nov 27, 7:43 am, theSmith chris.smith...@gmail.com wrote: My application is able to detect thefacebookapp (if its installed) and will attempt toshareviafacebook

[android-developers] Re: Can other applications use the share function of Facebook for Android?

2009-12-04 Thread theSmith
with others);                                 startActivity(share); It opens mail and messaging correcty with the text. What do you mean with implement it this way? On Dec 4, 4:51 pm, theSmith chris.smith...@gmail.com wrote: Im not using intents here actually, its the intent chooser

[android-developers] Re: Can other applications use the share function of Facebook for Android?

2009-12-04 Thread theSmith
wouterg...@gmail.com wrote: All the other apps except of facebook and bloo (facebook) are working with my EXTRA_TEXT. Really sucks that this isn't working for facebook. And it's a lot of work to make facebook client to post status update? Wouter On Dec 4, 5:38 pm, theSmith chris.smith

[android-developers] Re: Can other applications use the share function of Facebook for Android?

2009-11-28 Thread theSmith
there is no documentation for its Intents and this is the limiting factor for me. -theSmith On Oct 28, 6:08 am, feeling3_4 lanwen.ban...@gmail.com wrote: Hi, guys Facebookfor Android is great, but I just wonder that whether my application can use the share function of it. Or, does the Facebook for Android

[android-developers] Re: Detect/intercept screen turning off

2009-11-28 Thread theSmith
Im not sure you can catch it from turning off, but you can setup a broadcast receiver to let you know when that happens. Your receiver must be defined in java (not xml) and look for the ACTION_SCREEN_OFF broadcast. Hope that helps, theSmith On Nov 27, 6:47 am, David Given d...@cowlark.com

[android-developers] Re: Android SDK 2.0 Features.

2009-11-28 Thread theSmith
A little google search goes a long way... http://developer.android.com/sdk/android-2.0-highlights.html http://developer.android.com/sdk/android-2.0.html#api http://developer.android.com/sdk/api_diff/5/changes.html The second one is the one you'll be most interested in I think. -theSmith On Nov