Re: [android-developers] Scroll View for Android

2012-07-25 Thread Justin Anderson
What about a GridView? Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Wed, Jul 25, 2012 at 7:46 AM, Larry Meadors wrote: > Add a scroll view to your layout. Add a layout to that. Add buttons to > the layout. > > On Wed, Jul 25, 2012 at 7:17 AM, Dan Uff

Re: [android-developers] Scroll View for Android

2012-07-25 Thread Larry Meadors
Add a scroll view to your layout. Add a layout to that. Add buttons to the layout. On Wed, Jul 25, 2012 at 7:17 AM, Dan Uff wrote: > Thanks for your comment. > > As I said, I am new to this platform (I also write for iOS) and am looking > for answers for a customer who wants a layout such as the

Re: [android-developers] Scroll View for Android

2012-07-25 Thread Dan Uff
Thanks for your comment. As I said, I am new to this platform (I also write for iOS) and am looking for answers for a customer who wants a layout such as the one I said, or would you (or anyone else) have another suggestion? I have to have at least 32 choices on the screen. Thanks, Dan Uff O

Re: [android-developers] Scroll View for Android

2012-07-25 Thread abhijeet tomar
Suppose your mobile screen height is very less and you have to show many items than what will you do? that time you have to use scroll view.in scroll view you have to add a single layout and you can scroll this view. -- You received this message because you are subscribed to the Google Groups "An

[android-developers] Scroll View for Android

2012-07-25 Thread Dan Uff
Hi all, I am new to Android so please forgive me if this questions sounds basic. I need to create a list of buttons that are contained in a scroll view. Can anyone give me an example or point me in the right direction to learn about doing this? Thanks, Dan Uff -- You received this message be

[android-developers] Scroll position is not the same when orientation changes.

2012-03-08 Thread Put_tiMe
I have a scroll view activity under which I have lot's of UI objects. Now let's say when the activity starts up, the view is right on top. Now if I change the orientation of the phone, I observe that my activity has automatically scrolled to a different position. I don't want the scroll positi

Re: [android-developers] Scroll View

2012-01-24 Thread Marcelo Henrique
xml logcat http://schemas.android.com/apk/res/android";> 2012/1/24 TreKing > On Mon, Jan 23, 2012 at 9:18 AM, Oliviu Vais wrote: > >> What am i doing wrong? > > > Well you didn't really explain what the problem is. "I'm trying to do X" > is not a problem. > > What have you debugged a

Re: [android-developers] Scroll View

2012-01-24 Thread TreKing
On Mon, Jan 23, 2012 at 9:18 AM, Oliviu Vais wrote: > What am i doing wrong? Well you didn't really explain what the problem is. "I'm trying to do X" is not a problem. What have you debugged and learned so far? What is actually not working?

[android-developers] Scroll View

2012-01-23 Thread Oliviu Vais
I am trying to scroll a HorizontalScrollView by 2 buttons, one left, one right. What am i doing wrong? Which one to choose? sw - scroll view public boolean onTouch(View v, MotionEvent event) { // TODO Auto-generated method stub switch(v.getId()){ case

[android-developers] Scroll View

2012-01-23 Thread Oliviu Vais
I am trying to scroll a HorizontalScrollView by 2 buttons, one left, one right. What am i doing wrong? Which one to choose? sw - scroll view public boolean onTouch(View v, MotionEvent event) { // TODO Auto-generated method stub switch(v.getId()){ ca

[android-developers] scroll smoothly?????

2012-01-23 Thread Rajesh Patil
hi, i use ebookdroid open source project in this project they are using scroller for scrolling the page and canvas for draw the page . bt prob is that when i scroll the page that time the white page appear firstly and then render the page n then show the pdf page.in this case i create bitmap and st

[android-developers] Scroll not working on 'div's with overflow:auto set

2011-09-13 Thread archana
Hi, In my web-application, we need to use the 'overflow:auto' property to enable scrolling in multi-page documents. Any scrolling functions from javascript stops working when a 'div' has the the overflow set to 'auto'. The scrolling starts working if the overflow is changed to 'hidden'. We tr

[android-developers] scroll notice

2011-09-12 Thread bob
How do I receive notification of scroll events for a WebView? -- 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-dev

RE: [android-developers] Scroll view scrolling

2010-12-14 Thread hanika
hi Thanks & Regards, cid:image002.jpg@01CA2AEF.10F60770 Vijay Patel Test Engineer Elitecore Technologies Ltd. 904, Silicon tower, off C.G Road, Ahmedabad-380 006 Gujarat (INDIA), Tel: +91-79-66065606 | HYPERLINK "mailto:vijay.pa...@elitecore.com"vijay.pa...@elitecore.com HYPERLINK "ht

[android-developers] Scroll view scrolling

2010-12-13 Thread pedr0
Hi at all, I am currently developing an activity which allow user to send a feedback, the layout is composed in this way: When users focus the second edittext field the keyboard hide field and users cannot see what are typing.. I try to force the scroll of my view in onFocusChange() functions

Re: [android-developers] Scroll View

2010-11-23 Thread TreKing
On Thu, Nov 18, 2010 at 4:39 PM, rajeev R wrote: > There is no XML file for this activity.How to add scrolling option here. > Add a ScrollView and shove whatever ViewGroup you want to scroll into it. P.S. - Pasting a whole lot of code with no context does not help ;-) -

[android-developers] Scroll View

2010-11-22 Thread rajeev R
package test.Test; import android.app.Activity; import android.app.SearchManager.OnCancelListener; import android.content.Context; import android.content.Intent; import android.graphics.drawable.Drawable; import android.os.Bundle; import android.util.Log; import android.view.View; import android.vi

[android-developers] scroll refresh

2010-11-08 Thread emorse
This worked for me with a refreshDrawableState() call after the fullScroll call: e.g.: textQuote = (ScrollView)findViewById(R.id.formscrollview); textQuote.fullScroll(ScrollView.FOCUS_UP); textQuote.refreshDrawableState(); -- You received this message because you are subscribed to the Google Gro

[android-developers] scroll not support with javascript in webview

2010-07-21 Thread wang xin
hi ~, -- To Be Greate... -- 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.c

[android-developers] scroll a listview

2010-05-27 Thread bijay
hello I have one problem that after i added the items to the listview,it is not working means it is not scrolling.it only shows the items but not scrolled.can we scroll that listview explicitely. regards

[android-developers] scroll view and TableLayout

2010-04-29 Thread rahulp
Hi I have a Scrollview Table Layout. In which i have a header column and another header row. I want to scroll the table without scrolling the headers. Ie i want to selectively stop scrolling of the top row and first column. Can anyone please hel[p me out.. PLEASE i need this to work -- You recei

Re: [android-developers] Scroll text inside the button

2010-04-14 Thread murali raju
No On Wed, Apr 14, 2010 at 4:28 PM, Mayank Agarwal wrote: > > Hi, > > > Is it possible to scroll the text inside the button. > > > Thanks and Regards, > Mayank > > -- > You received this message because you are subscribed to the Google > Groups "Android Developers" group. > To post to this group

[android-developers] Scroll text in button which is in tabview

2010-04-14 Thread Mayank Agarwal
Hello Experts, Is it possible to scroll text inside the button which is embedded in the tab view.I have tried a lot but not able to get something. Thanks and Regards, Mayank -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this

[android-developers] Scroll text inside the button

2010-04-14 Thread Mayank Agarwal
Hi, Is it possible to scroll the text inside the button. Thanks and Regards, Mayank -- 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,

[android-developers] scroll a layout in all direction (and zooming)

2010-03-12 Thread JayhC
hello, I want to make an app where i can scroll the layout/view in all directions (both horizontally and vertically at the same time, like in the browser app). Maybe with GestureListener? I already managed to read and test tutorials about scrolling large images but i want to scroll the whole layo

Re: [android-developers] Scroll Position in BaseAdapter?

2010-03-09 Thread a a
Maybe you can read the "Gmail" apk on the android2.0. That maybe help you. -- 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

[android-developers] Scroll Position in BaseAdapter?

2010-03-08 Thread javame_android
Hi, I am using BaseAdapter for displaying the list. This list is fetched by calling a Web Service. At a time only 20 records are returned. Now, when the scroll of the BaseAdapter reaches the last record then the application should fetch more records from the server. So, what I want to know is how

[android-developers] Scroll a Gallery widget?

2009-12-27 Thread Mark Wyszomierski
Hi, Is it possible to scroll a Gallery widget programatically? I see Gallery inherits scrollTo() and scrollBy(), but that scrolls the entire widget itself, not its content. Is there some obvious way to do this that I'm missing, my searches are coming up empty? I don't want to have to do a copy/pa

[android-developers] Scroll Event in Android

2009-11-04 Thread Maxood
I am developing an app in which i am using random numbers to retrieve data from my database and drawable from an array. Here is my code: public class Facts extends Activity { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) {

[android-developers] Scroll to content position in WebView

2009-10-12 Thread info.sktechnol...@gmail.com
I have a WebView which has been loaded with local content using loadData(String data, String mimeType, String encoding). I want this to initially display with a given substring of the first parameter visible. This is, I want to scroll to a position given the content at that position. If necessa

[android-developers] Scroll view reset to top

2009-07-29 Thread amiz
My layout has a scroll view, a linear layout, an image view and a button below the image which needs to be scrolled down. I load a new image each time the button is clicked. All of this works, the problem is when a new image is loaded the scroll bar is at the bottom and the user has to scroll u

[android-developers] Scroll view determine maximum scrollY value

2009-04-23 Thread sergey.drygan...@gmail.com
How to determine maximum ScrollY value for ScrollView? --~--~-~--~~~---~--~~ 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 unsubscri

[android-developers] Scroll and drag a TileView widget around by finger / touch

2009-03-31 Thread acrosser
In the Android API examples there is a Snake game. This game uses a class called SnakeView, which inherits from TileView. I am doing something very similar to this. I am inheriting from TileView to create a class (SkyView), which will become a square board for a board game (similar to the board f

[android-developers] Scroll range

2008-10-22 Thread Shade
Hello! How can i get scroll height and scroll width of the View? getWidth() and getHeight() return View's size getScrollX() / getScrollY() - scroll offset. Other functions just measure scroll bar. Thank you! Michael PrinterShare team --~--~-~--~~~---~--~~ You rec

[android-developers] scroll

2008-06-21 Thread Jeremy Villalobos
How do you catch a scroll event ? like a mouse-drag in other window frameworks I've being looking into this for hours and cannot figure it out. I got onTouchEvent to work, but it is not good enought to do scrolling with it I am inheriting View class to create a custom control. thanks for any hel