[android-developers] Re: how to set android font style to bold

2009-03-20 Thread Kacza
int.html#setFakeBoldText(boolean) Regards Kacza --~--~-~--~~~---~--~~ 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 unsub

[android-developers] Re: SeekBar does not reach the end

2009-03-10 Thread Kacza
Ok I guess I solved the mystery: It depends on seekbar resolution (max value). I set max to 100 and now everything looks fine. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to thi

[android-developers] SeekBar does not reach the end

2009-03-09 Thread Kacza
Hello, I have an options panel that allows setting of keyboard sensivity. I use SeekBar to get the sensivity but it never reaches the max end. There is the code: final SeekBar seekBarKeyboardSens = (SeekBar)findViewById (R.id.SeekBarKeyboardSens); seekBarKeyboardSens.setMax(10); seekBarKeyboardS

[android-developers] Re: Load two different views simultaneously in a screen

2009-03-05 Thread Kacza
On 5 Mar, 14:50, And-Rider wrote: > I want to create a single screen with two different views .And i want > to refresh one view without disturbing the second view. Hi, the first thing that comes to my mind is to create a LinearLayout, put two views into it and refresh only one when needed. clas