Thursday, July 7, 2011

[android-developers] Re: ScrollBar in Android not working ???

The following, both in XML and code, work like a charm for me. Should
work for you also :-)

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content">

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/
android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >

</LinearLayout>

</ScrollView>


Or in code

LinearLayout linLayout = new LinearLayout(this);
linLayout.setOrientation(LinearLayout.VERTICAL);

ScrollView scroll = new ScrollView(this);
scroll.addView( linLayout, new LayoutParams(LayoutParams.FILL_PARENT,
LayoutParams.WRAP_CONTENT) );
addContentView(scroll, new LayoutParams(LayoutParams.FILL_PARENT,
LayoutParams.WRAP_CONTENT));

----------
Ali Chousein
Geo-Filtered Assistant
http://geo-filtered-assistant.blogspot.com/
Cisco Android marketplace (Chosen)
https://marketplace.cisco.com/apphq/products/510

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

No comments:

Post a Comment