0
votes
1answer
53 views

How to create a dynamically-sized JScrollPane w/ JPanel as the client?

In my code, the user can add new buttons to the main JPanel using the menu. The JPanel utilizes the FlowLayout form so that depending on the size of the window, the number or buttons on each row ...
0
votes
0answers
59 views

Java swing making a scrollable program

I've spent the last few hours trying every combination of JScrollPanels trying to make my program scroll, but so far it's been unsuccessful, so I've deleted all of the added code and tried to start ...
0
votes
0answers
17 views

How to slowly Scroll Through Webpage (Opened In a Native Desktop WebBrowser) Using Java

I want to be able to open, lets say a CNN news article, and slowly scroll through it. I perfer to open it in a web browser because my attempts to open a website using JEditorPane yielded negative ...
0
votes
1answer
224 views

Scrolling over large canvas

I need some help understanding the fundamentals of scrolling over items that are drawn to a canvas in Android. Suppose I want to create a timeline where time at 0 is the top of a visualization and as ...
0
votes
2answers
132 views

robot class mouseWheel not working

I have been working with simulating mouse events with the Robot class for a while, and all was well, until I tried to scroll using the mouseWheel function. I just have this simple line: Robot robot ...
2
votes
3answers
102 views

How to always scroll to bottom of text area?

How do I make it so the scroll pane is always located the bottom of the scroll pane where the new data is being written? I can't see the new text coming in as it is written. JTextArea itTextArea = ...
0
votes
1answer
86 views

Scroll bar on GUI

How can I add the vertical scroll bar to this JTextArea box? b6 = new JTextArea (); b6.setBounds(210,100, 170, 240); I have tried to do something more or less like this: b6 = new JTextArea (); ...
0
votes
0answers
52 views

Overriden DefaultTableCellHeaderRenderer doesn't scroll horizontally [closed]

I have made a custom Header for a JTable. The header works fine, but it doens't scroll, when I scroll horizontally in the JTable (whithin a scrollPane). So the JTable moves and the header is static. ...
0
votes
1answer
89 views

“returnRes cannot be resolved to a variable” error in android

I had tested the function of endless Scrolling function in a dummy projects, it works fine but if i paste the same code in my original project m getting "loadMoreListItems cannot be resolved to a ...
0
votes
0answers
55 views

ZK Swipe and Scroll

I have a pager with a Listbox and I am trying to implement the behavior when the user swipes right / left then the page should be changed but also he should be able to scroll. I already tryied to ...
1
vote
3answers
194 views

How to create Circular Horizontal ScrollView

What i need to do is to create a horizontal pipeline in the middle of the Screen in which images are being populated. It is just like a moving horizontal pager. The difficulty is that i am still ...
7
votes
2answers
463 views

Syncing Two ListViews side by side Android

I'm trying to make two side by side ListViews act like a GridView to an extent. The reason I'm not using GridView is because there's no support for a Staggered Look. Anyways, I have the following code ...
0
votes
1answer
144 views

Android / Java Development - Horizontal Scroll View

I am wondering how to make multiple horizontal scroll views in one xml file. Is this a simple adjustment from a normal Scroll View or is this a lot more complex? Thanks
0
votes
2answers
134 views

DockLayoutPanel inside ScrollPanel in GWT

I'm using GWT 2.4 and I'm having a problem with setting up scrollbars for my app working correctly. When I'm trying to zoom the page - no scrollbars are now displayed for the whole page. Currently ...
1
vote
1answer
164 views

Horizontal scrolling of celltable in GWT

In my GWT 2.4 app I'm having cell tables with >10 columns. I'm wondering how to add horizontal scrollbar to these tables because for some screen resolutions some columns are hidden. Thanks for any ...
-1
votes
2answers
100 views

Scrolling numbers java swing JTextField

Im wondering if anyone can help me replicate the below screenshot. im tring to display a counter that will count in increments of 20 up to 100 the will count up 1 on the left hand side number then ...
2
votes
1answer
96 views

Scrollview not scrolling down completely

I'm building a chat-like application that displays text the user inputs to the screen using a scrollview. What I'm doing is auto-scrolling the scrollview down as more text is appended to the screen. ...
0
votes
0answers
116 views

How do I scroll a listview after requestDisallowInterceptTouchEvent in onTouchListener?

EDIT: Essentially the question is how I can swipe on a listview row without ACTION_CANCEL interruptions and then perform the listview scroll AFTERWARDS ( instead of the listview interrupting my ...
4
votes
3answers
660 views

LibGdx How to Scroll using OrthographicCamera?

I have been loocking for 10 hours (literally) and I'm done, I need to ask. Thing is I'm learning How use LibGdx to program Java games. I'm doing a Horizontal Space Ship Game. So, my worst problem ...
0
votes
2answers
109 views

How to scroll a JTable to a specific value?

I have a JTable displaying the contents of a log file, and the first column is a timestamp with milliseconds (e.g. 10:31:54.531). The data is already ordered by this column. I would like to allow the ...
1
vote
1answer
94 views

JTextPane is scrolling its parent Scrollpane to the bottom

Here is a littel SSCCE which shows the weird scrolling behaviour. When you start it, it scrolls down to the bottom of the scrollpane. But I want it to stay on top. So far I found out, this only ...
-4
votes
1answer
125 views

Swing desktop java application scroll [closed]

I am new in swing java application and I am developing a small desktop application that creates jlabels at run time with every button click. The problem is when the jlabels number is too much, I ...
0
votes
1answer
168 views

android tablelayout click row vs scrolling

I have a tablelayout where I need to select a row to do something with it latter. The problem is, when I scroll it selects a new row. What I want it a way to not select a row when I only want to ...
0
votes
0answers
30 views

Java: scrollIntoView function after opening new web page

I want my website to use the scrollIntoView Java function but I need it to happen after a new page is opened. Step By Step: 1st Page: Click img button - it knows ID to scroll down to on 2nd page ...
0
votes
1answer
74 views

Scrollbars inside a JTable cell

I am trying to display HTML text inside a JTable's cell but the scrollbars arent showing up at all. Below is my code... public class TableCellTextRenderer { @Override public Component ...
0
votes
1answer
132 views

TransferHandler, JTable & JScrollPane

The problem is thus: I have a slightly modified JTable implementation inside of a JScrollPane. The JTable then has a TransferHandler registered so that items can be reordered, and inserted into each ...
2
votes
1answer
286 views

GWT force scroll panel to render on manual scroll (with video describing situation)

I'm having trouble manually scrolling of a scrollPanel. The picture below display 3 situations: I have two side by side grids that I have manually made using tree and gwtqueryplugins because of drag ...
0
votes
2answers
169 views

Jtable - scroll to bottom with variable height rows

I'm trying to automatically scroll to the bottom of a JTable (inside a scrollPane) that has variable row height and is getting refreshed periodically. Is there a listener I can override, or an event ...
4
votes
2answers
917 views

How to zoom in to JPanel without moving the center: math or Swing?

I am trying to make a zoomable map with Swing. The map is a JPanel in a JScrollPane. When zoomed in, the map changes size and paint() paints the elements in a different position. This all works great. ...
1
vote
2answers
124 views

Java JScrollPane Detect Scroll Near Bottom

I've been unable to find anything related to my question on the Internet. I have a JScrollPane which adds a JPanel, and the JPanel gets populated with JLabels. Currently, the user scrolls to the ...
0
votes
0answers
82 views

How to make notes on selected text in android

I am working on a WebView in which I want to do like when you select some text then tapping on selected text a Dialog window will appear in that you can write and comment to make note on that ...
1
vote
0answers
127 views

pinchable grid zoom in android

I am been googleing this and there really is a distinct absence of physical information regarding this task... I want to make a grid view in android that uses "tiles" that sorts itself and allows ...
1
vote
1answer
1k views

Page scroll up or down in WebDriver (Selenium 2) using java

I have written the following code in Selenium 1 for page scrolling using java: selenium.getEval("scrollBy(0, 250)"); What is the equivalent code in Selenium 2 (WebDriver)?
0
votes
1answer
302 views

add ScrollView and HorizontalScrollView to a TableLayout

my question is like putting a ScrollView HorizontalScrollView and a table containing TextView Array. This is my main.java: public class tabla extends Activity { SitesList sitesList = null; ...
0
votes
0answers
94 views

Creating a surface to draw on / map editor / canvas

I know and like Java, I hate XML. I'm not good at it. I have a tab widget with three tabs up top. One lists out all of my 'tiles' that I am using for a map editor, 64x64pixels. The second contains ...
2
votes
2answers
154 views

How to scroll horizontally within a single column of a resizeable JTable?

I am making a dialog for the purpose of selecting multiple file paths. My dialog consists of two panels. One for buttons such as "Add" and "Remove", and a second panel containing a JTable wrapped in a ...
0
votes
0answers
76 views

iframe flickers when scrolling

We have an iframe containing a java applet on our webpage. When you scroll or expand the browser window, the iframe flashes/flickers as if its redrawing the contents of the applet. Is there any ...
1
vote
2answers
49 views

JScorllPane Text flying from window

I'm trying to make a JFrame appear that reads each line from a text file into a JLabel and places that JLabel into a JScrollPane, that JScrollPane is then added to the Container for my window. The ...
0
votes
2answers
110 views

Handling horizontal scroll

In a ScrollView, I want to implement horizontal scrolling. To do so, I listen to the MotionEvents sent when fingers touch the screen or move onto it. It works pretty well, except when I unwillingly ...
0
votes
1answer
106 views

Grid View buttons get distorted when scroll is used

public View getView(int position, View convertView, ViewGroup parent) { Button btn; if (convertView == null) { // if it's not recycled, initialize some ...
0
votes
2answers
380 views

how to extract HTML data from a webpage which scrolls down for a fixed number of times?

I want to extract HTML data from a website using JAVA. The problem is the webpage keeps scrolling down once the user reaches the bottom of the page. Number of times it scrolls down is fixed. My JAVA ...
0
votes
0answers
93 views

Manually scroll EditText

I'm having the following issue - I have a customized android EditText. I'm using android:ellipsize="end" and I'm completely handling all the touch events for the edit text because otherwise some ...
2
votes
3answers
4k views

Android Scroller simple example

Can anyone gives me simple example about Scroller class? As I understand, it encapsulates scrolling, so I need start calculating and then manually update must ScrollView to new positions. So I just ...
0
votes
1answer
104 views

Reset TextView position (scrollable) on new text load

My page loads a TextView which is scrollable. Unfortunately the position appears to stick when loading new text into the view, so Text appears offscreen or invisible entirely. Is there a way to reset ...
1
vote
2answers
349 views

JTextField change value automatically while button pressed

I have a jTextField with two JButtons (Up arrow and Down arrow buttons). Clicking the Up arrow button the numeric value in the textfield increases by 1 (++), and clicking the Down arrow button the ...
0
votes
0answers
96 views

applet scroll performance when it is used in browser

I have a simple java applet which contains a master JPanel, a JScrollPanel, several child JPanels and image components in these child panels. Applet is working good and scrolling is quite smooth when ...
2
votes
3answers
122 views

Displaying a scroll bar only when necessary

I'd like to do something like the following: public class MyCustomDialog extends JDialog { public MyCustomDialog() { if (getClientVertScreenSize() < 800) ...
4
votes
1answer
270 views

Scrolling a View by code

I want to programatically scroll a View. So far, I have found two possibilities : scrollTo(x,y) : the top left hand corner of the View corresponds to the point (x,y) of what must be drawn in the ...
3
votes
1answer
149 views

MouseDragScrolling in Java

I want to build a MouseDragScrolling like Android over Java for a big touch screen something like this http://jqueryfordesigners.com/demo/scrollable-timelines.html I have this example ...
0
votes
2answers
525 views

MouseWheelListener block scroll

JEditorPane.addMouseWheelListener(new MouseWheelListener() { public void mouseWheelMoved(MouseWheelEvent e) { } }); When I add these lines - in the JEditorPane scroll stops ...

1 2