Thanks

I have tried an android phone
Okay let me ask this  how then to you correctly test a ListView  with a scroll  
on the emulator ??
What is the correct method ?

Thanks again

On Mar 27, 2011, at 8:28 AM, Mark Murphy wrote:

> Android does not use scrollbars for more than a momentary display of
> position. This is by design. The concept of a scrollbar as being the
> mechanism for scrolling is for mouse-based UIs. Touchscreens scroll
> via gestures sliding the whole thing up and down.
> 
> I strongly encourage you to use some touchscreen hardware -- whether
> or not it is an Android phone -- before you start attempting to write
> Android applications.
> 
> On Sun, Mar 27, 2011 at 8:11 AM, New Developer <secur...@isscp.com> wrote:
>> I have the following in the XML
>> <TableLayout android:id="@+id/TableLayout01"
>>     android:layout_width="fill_parent"
>>     android:layout_height="fill_parent"
>>     android:scrollbars="vertical"
>>     android:scrollbarSize="20dp"
>>     android:scrollbarAlwaysDrawVerticalTrack="true"
>>     android:stretchColumns="*">
>>     <TableRow>
>>       <ListView
>>         android:id="@+id/main_list"
>>         android:layout_width="wrap_content"
>>         android:layout_height="wrap_content"
>>         android:smoothScrollbar="true"
>>         android:fastScrollEnabled="true"
>>         android:scrollbars="vertical"
>>         android:scrollbarStyle="insideInset"
>>         android:scrollbarSize="20dip"
>>         android:textColor="#00ee00"></ListView>
>>     </TableRow>
>>   </TableLayout>
>> I add the items dynamically from a database using
>> private ListView  listView = null;
>> listView = (ListView) findViewById(R.id.main_list);
>> listView.setChoiceMode(ListView.CHOICE_MODE_MULTIPLE);
>> It shows a very narrow scrollbar.
>> But the list does not scroll and the scroll bar has no effect, which I click
>> the scrollbar to move it
>> the scrollbar fades away.  any Ideas ?
>> 
>> Thanks in advance
>> 
>> --
>> 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 options, visit this group at
>> http://groups.google.com/group/android-developers?hl=en
> 
> 
> 
> -- 
> Mark Murphy (a Commons Guy)
> http://commonsware.com | http://github.com/commonsguy
> http://commonsware.com/blog | http://twitter.com/commonsguy
> 
> Android Training in Oslo: http://bit.ly/fjBo24
> 
> -- 
> 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 options, visit this group at
> http://groups.google.com/group/android-developers?hl=en

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to