[android-developers] Re: HTTPS GET/POST Methods don't work with HttpClient(4) - Bug or my fault?

2008-07-21 Thread code_android_festival_way
Yeah Twitter is working just fine but it is HTTP. (I've done a Twitter client as well and got no problems) The example has no authentication because Twitter doesn't need an authentication for the public timeline. (I know the example) The HTTPS approach should work like the normal HTTP thing but I

[android-developers] Re: Looking for a TextView with hyperlinks

2008-07-21 Thread Evan JIANG
See APIDemos - Text - LinkyText Regards, Evan JIANG On Tue, Jul 22, 2008 at 10:53 AM, Gavin Bong <[EMAIL PROTECTED]> wrote: > > Has anyone opensourced a TextView that will render urls as clickable > links (fire up WebKit on receiving a clickc event) ? If not, I'll > write one myself. > > Thanks

[android-developers] Looking for a TextView with hyperlinks

2008-07-21 Thread Gavin Bong
Has anyone opensourced a TextView that will render urls as clickable links (fire up WebKit on receiving a clickc event) ? If not, I'll write one myself. Thanks Gavin --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "A

[android-developers] Re: How to control the image size in a ListView?

2008-07-21 Thread Fräntz Miccoli
I implement the ListAdaper : I may have implement or extend the array adapter but i'm not sure. I don't use any layout file (I got problem with it). I've made my own view through code extending AbsoluteLayout. You just have to create your components in the constructor and add them to your object.

[android-developers] Re: How to access content of a package in the other packages?

2008-07-21 Thread sacoskun
Hello Nan. YE, For the classes that you are going to add in a .jar file and use them as .jar imports, you can use your own static R class as an inner class in your view. For instance; public static class R { public static class style{ public static

[android-developers] wish list for phone

2008-07-21 Thread john
I am dying for a phone that has a iphone like touch screen on the front and a keypad with touch capabilities on the back (like the razor). running my finger on the back would scroll, would be able to see where my finger was on the back if using like a keypad (would show up on a display key pad o

[android-developers] Re: HTTPS GET/POST Methods don't work with HttpClient(4) - Bug or my fault?

2008-07-21 Thread Mark Murphy
> Could someone tell me what I have to change in here? A Google search for: android twitter client turned up: http://sleepydroid.blogspot.com/2008/06/consuming-xml-from-twitter.html In there, the author is not using HTTP Authentication nor an https:// URL. I've never written to Twitter API,

[android-developers] HTTPS GET/POST Methods don't work with HttpClient(4) - Bug or my fault?

2008-07-21 Thread code_android_festival_way
Hello guys! After having recognized how to do the basic HTTP authentication I get an error with the HTTPS authentication. I know that there might be some problems with the HTTPS connection of the HttpClient after reading through the groups here. But they are always dealing with certificate errors

[android-developers] Re: gallery issues

2008-07-21 Thread Mark Murphy
> 1) My gallery is an element in a list view right now... Ow. > but once I > scroll down to select the gallery in the list, I can't scroll up and > down the list anymore (the gallery hijacks the "up" and "down" keys). It's probably a question of focus. There may be ways to hack around it by man

[android-developers] gallery issues

2008-07-21 Thread kingkung
Whoever answers these questions first gets a free gPhone* courtesy of me. 1) My gallery is an element in a list view right now... but once I scroll down to select the gallery in the list, I can't scroll up and down the list anymore (the gallery hijacks the "up" and "down" keys). 2) When I implem

[android-developers] Re: Animation between Activites

2008-07-21 Thread hackbod
Sorry, animations across activities are controlled by the system, they can't be customized by an application. On Jul 21, 6:50 am, Fräntz Miccoli <[EMAIL PROTECTED]> wrote: > Hello, > > I've an application composed of four activity containing each one only > one view and my goal is to put some tra

[android-developers] Re: Basic HTTP authentication with M5 SDK - What is the right way to do it?

2008-07-21 Thread Mark Murphy
code_android_festival_way wrote: > Hello guys! > > I'm trying to achieve a basic HTTP authentication. After hours of try > and error I'd like to ask you what is the right way at the moment to > achieve that. > > Here is my source code at the moment: > > http://rafb.net/p/ii4mMi16.html > > This

[android-developers] Re: How to control the image size in a ListView?

2008-07-21 Thread Guillaume Perrot
Ok Frantz but this doesn't answer me why Pierre's code doesn't work. To understand Pierre's problem I have to see Pierre's code. On 21 juil, 15:41, Fräntz Miccoli <[EMAIL PROTECTED]> wrote: > Look at my codeGuillaume, this exactly what I've done. > > On 21 juil, 11:15,GuillaumePerrot<[EMAIL PROTE

[android-developers] Re: I have made new application - Calculator for android

2008-07-21 Thread Minos
I've done transliting my site :). here is english version of the site: http://www.newnauka.com/index_eng.html The calculator is in the Programs part. On 21 июл, 16:22, Minos <[EMAIL PROTECTED]> wrote: > OH, please forgive me... I absolutelly forget about it... > My appologise... > in 30 minutes

[android-developers] Animation between Activites

2008-07-21 Thread Fräntz Miccoli
Hello, I've an application composed of four activity containing each one only one view and my goal is to put some transition between each couple of activity. For calling an activity, I use a simple intent code : Intent i = new Intent(); i.setClass(FirstActivity.current, SecondActivity.class); st

[android-developers] Re: How to control the image size in a ListView?

2008-07-21 Thread Fräntz Miccoli
Look at my code Guillaume, this exactly what I've done. On 21 juil, 11:15, Guillaume Perrot <[EMAIL PROTECTED]> wrote: > Hi, Pierre. > It was not that layout file I was thinking of but rather the one you > may have used with an ArrayAdapter to render each list entry. > > On 21 juil, 10:50, Pierre

[android-developers] Re: I have made new application - Calculator for android

2008-07-21 Thread Minos
OH, please forgive me... I absolutelly forget about it... My appologise... in 30 minutes everithing will be corrected. Thank you for marking this. Good luck On Jul 21, 9:10 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > You could build that website in english. > I don't understand a thing

[android-developers] Re: How to control the image size in a ListView?

2008-07-21 Thread Pierre
Hi, Guillaume Perrot, Thanks for you reply. Here is my layout for the ImageList: http://schemas.android.com/apk/res/ android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent"> Hope that you can help me more! Pierre On

[android-developers] Re: How to control the image size in a ListView?

2008-07-21 Thread Guillaume Perrot
Hi, Pierre. It was not that layout file I was thinking of but rather the one you may have used with an ArrayAdapter to render each list entry. On 21 juil, 10:50, Pierre <[EMAIL PROTECTED]> wrote: > Hi,GuillaumePerrot, > > Thanks for you reply. > Here is my layout for the ImageList: > > > http://