[android-beginners] Re: SampleSoftKeyboard

2009-05-23 Thread Mr.No

Ive overriden the onTouch method and tryed to start the ime service,
but it dont worked.
how do i set it in the settings?

On 23 Mai, 04:10, Rotem Or rote...@gmail.com wrote:
 youhave to set the keyboard in the settings
 as your used keyboard

 when you clikc the text view it will open the one you set by default

 2009/5/22 Mr.No f.hi...@arcor.de



  Hello,
  im trying to understand the SoftKeyboard example in the SDK 1.5.
  I've opened the project and added a activity with a EditText in
  center.
  How do i set the example IME to the EditText field?

 --
 Thanks
 Rotem Or
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Beginners group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] SampleSoftKeyboard

2009-05-22 Thread Mr.No

Hello,
im trying to understand the SoftKeyboard example in the SDK 1.5.
I've opened the project and added a activity with a EditText in
center.
How do i set the example IME to the EditText field?
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Beginners group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] Re: EditText appearance

2009-03-12 Thread Mr.No

Can i assigne a colorstate list to the background?
And how do i change the bordercolor when the edittext gains the focus,
without placing a backgroundimage?

Tseng schrieb:
 You could create a colorstate list (xml file in res/drawable), for
 example
 http://developer.android.com/reference/android/content/res/ColorStateList.html

 Here is an example i used for textcolors. Should work for HintColors
 too!

 res/drawabale/myedittextcolors.xml:

 ?xml version=1.0 encoding=utf-8?
 selector xmlns:android=http://schemas.android.com/apk/res/android;
 item
   android:state_focused=true
   android:state_pressed=false
   android:color=@android:color/secondary_text_dark /
 item
   android:state_focused=true
   android:state_pressed=true
   android:color=@android:color/secondary_text_dark /
 item
   android:state_focused=false
   android:state_pressed=true
   android:color=@android:color/secondary_text_dark /
 item
   android:color=@android:color/secondary_text_dark /
 /selector

 Now you only have to assign it to your EditText widget.

 Edit the XML and change

 android:textColorHint=#FF

 to

 android:textColorHint=@drawable/myedittextcolors

 and it should work. This is usefull if you want to have different
 colors depending on the state of the edittext (i.e. if its focused,
 clicked, etc).

 For one color,
 use android:textColorHint=#FF or android:textColorHint=@color/
 mycustomcolor if you have defined your color in /res/values/
 colors.xml







 On Mar 10, 11:30 am, Mr.No f.hi...@arcor.de wrote:
  Hello,
  how do i change the size, style, typeface of a hint?
  If the EditText gains the focus the border-color changes to orange,
  how do i set a other color?
 
  rgds
         Mr.No
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Beginners group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] Re: EditText appearance

2009-03-12 Thread Mr.No

thx a lot :)

On 10 Mrz., 11:30, Mr.No f.hi...@arcor.de wrote:
 Hello,
 how do i change the size, style, typeface of a hint?
 If the EditText gains the focus the border-color changes to orange,
 how do i set a other color?

 rgds
        Mr.No
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Beginners group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] EditText appearance

2009-03-10 Thread Mr.No

Hello,
how do i change the size, style, typeface of a hint?
If the EditText gains the focus the border-color changes to orange,
how do i set a other color?

rgds
   Mr.No
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Beginners group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] Android App.Theme

2009-03-05 Thread Mr.No

Hello,
how i place the title of my app in center?
and how i put a image as a title?

rgds
   Mr.No
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Beginners group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] EditText Unicode or Latin-1

2009-03-05 Thread Mr.No

How do i enable Unicode in for my EditText,
if i enter ö,ä,ü he shows me [ +- ect...

rgds
mr.no
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Beginners group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] Re: gadget

2009-03-03 Thread Mr.No

It is possible to do that automaticly?
Somebody knows when gadgets are possible?

rgds
  Mr.Who?

On 2 Mrz., 22:17, Kather Jailani jail...@gmail.com wrote:
 Yes you can, press ,hold the app icon then it will show the desktp and u can
 drop the icon , to delete select and hold the icon on desktop trashcan will
 shown on where the menu is shown and drag to it

 On Mar 2, 2009 4:36 AM, Mr.No f.hi...@arcor.de wrote:

 Hello,
 it is possible to put your own app on the android desktop?
 like the googe searchbar on the desktop, if you switch the desktop to
 right?

 rgds
     Mr.No
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Beginners group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] gadget

2009-03-02 Thread Mr.No

Hello,
it is possible to put your own app on the android desktop?
like the googe searchbar on the desktop, if you switch the desktop to
right?

rgds
 Mr.No


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Beginners group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] Re: gadget

2009-03-02 Thread Mr.No



On 2 Mrz., 12:33, deepdr...@googlemail.com
deepdr...@googlemail.com wrote:
 Hi Mr. No,

 no, currently you can only use the given gadgets. You can not add more
 3rd party or your own gadgets to the home screen.

 http://www.deepdroid.com

 On 2 Mrz., 11:35, Mr.No f.hi...@arcor.de wrote:

  Hello,
  it is possible to put your own app on the android desktop?
  like the googe searchbar on the desktop, if you switch the desktop to
  right?

  rgds
       Mr.No


I mean like this http://www.pic-upload.de/view-1605992/g1.jpg.html

rgds Mr.No


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Beginners group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] Re: gadget

2009-03-02 Thread Mr.No

and as a graphiclink on the desktop?

rgds
 Mr.No
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Beginners group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] HttpResponse

2009-03-02 Thread Mr.No

Hello,
where i find the Content(message body) of a HttpResponse?
rgds Mr.No
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Beginners group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---