[android-developers] Re: AsyncTask blocking UI thread

2012-08-20 Thread warenix
Here's an example use of onProgressUpdate() which solves your problem. http://www.codingforandroid.com/2011/06/basic-asynctask-with-progress-bar.html On Monday, August 20, 2012 11:34:07 PM UTC+8, Wolfgang wrote: > > Hey guys, > > I am trying to add a ProgressDialog to show the progress of my As

[android-developers] Re: Textview Instead of ImageView

2011-11-25 Thread warenix
magznumber contorls what to show in your switch statement. Make sure the value of it is 2 if you want to show text. Use debugger or logcat to find out the values at runtime. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this gr

[android-developers] Re: Clickable ImageView

2011-08-15 Thread warenix
You have a typo misstake here: team_background = (ImageView) findViewById(R.id.home_background); ... -- 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 f

回覆:Re: [android-developers] 回覆:Re: 回覆:facebook

2011-05-30 Thread warenix
the hash key is very tricky as your eclipse debug keystore may be different to your release keystore. so you will have two different hash keys, one for debug & the other for release. my practice is to use a dummy facebook app id during debug. and create a real facebook app id for the release.

[android-developers] 回覆:Re: 回覆:facebook

2011-05-30 Thread warenix
Hi Ali, Quoted from https://github.com/facebook/facebook-android-sdk Testing Here are some tips to help test your application: - You will need to have the Facebook application in your test environment. The SDK includes a developer release of the Facebook application that can be

[android-developers] 回覆:facebook

2011-05-29 Thread warenix
no, you don't need to put app secret. authorization of your app will be done by "official" app installed. a pop up browser window will be shown. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-d

回覆:Re: [android-developers] ??:facebook and twitter

2011-05-17 Thread warenix
Please refer to this web page on configuring eclipse http://www.wikihow.com/Add-JARs-to-Project-Build-Paths-in-Eclipse-%28Java%29 or simply google search "eclipse external jar" should give you enough information. -- You received this message because you are subscribed to the Google Groups "Andr

[android-developers] 回覆:facebook and twitter

2011-05-17 Thread warenix
you don't have to install twitter & facebook app but the java library & sdk for facebook & twitter. you can check them: twitter4j , facebook sdk -- You received this message because you are subscribed to the

[android-developers] 回覆:Hello, Android troubles

2011-05-04 Thread warenix
did you compile your code in Eclipse or in command line console? look like you didn't include the android sdk in your class path -- 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@google

[android-developers] Re: TweetDeck android app like column view

2010-08-31 Thread warenix
quot; could be a page in the paradigm I'm using.  Grab the > source and customize as you see fit! > > On Aug 26, 8:11 am, warenix wrote: > > > > > > > > > I found an approach by extending the gallery widget. > > the look and feel is quite similar to what i

[android-developers] Re: TweetDeck android app like column view

2010-08-26 Thread warenix
I found an approach by extending the gallery widget. the look and feel is quite similar to what i want. On 8月21日, 下午11時34分, warenix wrote: > Hi! The add/remove columns UI of TweetDeck android app is very > promising. But I have no idea how to make one like that. > > If I

[android-developers] TweetDeck android app like column view

2010-08-21 Thread warenix
Hi! The add/remove columns UI of TweetDeck android app is very promising. But I have no idea how to make one like that. If I make it with HorizontalScrollView, and the children with layout_width set to "fill_parent" I can't scroll horizontally

[android-developers] can we light up the trackball led while the screen is still on

2010-05-27 Thread warenix
Hi developers, With froyo and notification api, I can set the trackball led with specified color. But the trackball only glows when I turn off the screen. I would like to let user to preview the notification color in app, so I need the screen to be on. I am finding solution for that, any idea? O