The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
42 views

Issue with resolving components - scope

private void initialize() { frame = new JFrame(); frame.setBounds(100, 100, 450, 300); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.getContentPane().setLayout(null); ...
0
votes
3answers
61 views

swing component not visible

Ive been trying for 2 days to make an app and I'm stuck in the incipient phase, i.e. the UI. Swing is so difficult that I can't even display the components. Can anyone help me, please? I have a ...
0
votes
2answers
65 views

Java Swing Button not appearing on the form

I am having trouble with my form having a it grid of buttons to appear. The form is supposed to display a grid of buttons that will be used as a platform for a simple battleship game. This is the ...
1
vote
1answer
104 views

How to inflate new copies of an ImageView object on a layout?

What I am trying to do is create N (in this case 9) copies of the ImageView object R.id.tile, place each of them at different coordinates on the layout, and give each its own unique identifier. ...
1
vote
1answer
79 views

Using String arrays to assign file names to ImageIcons (Java)

Hi i'm having problems when trying to use an array to read in image file names to be assigned to an array of Image Icons. It compiles fine but when i launch the application the images don't seems to ...
0
votes
3answers
130 views

Java Swing JLabel Text longer than bounds

I have a problem with Java Swing JLabel. The text i want to display on the JLabel exceeds the bounds of the JLabel. I want to display it via a Marqueeeffect. I already implemented the effect but when ...
0
votes
3answers
71 views

JScrollPane not appearing, elements overflowing

Working on an assignment right now and I'm essentially writing my first GUI. Everything is working fine except my scrollbar- upon adding it not only will it not display, but even after I've commented ...
0
votes
2answers
62 views

Adding a JTabbedPane to a JTabbedPane error

Getting this error: Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException at Project.reportpane.addComponent(reportpane.java:69) I'm unable to add the rptinvestment ...
0
votes
1answer
283 views

Java Swing: move JButton on click

I'm in the process of learning to use swing components starting with the buttons. I'm trying to get a few buttons to move after clicking one of them. To set the initial location of the buttons, I have ...
0
votes
1answer
55 views

scaling up the contents whenver window size increases or decreases

Is there any possibilities to scale the contents of the J Frame For Example : if im giving the initial setSize(800,1000) in which i placed the textfields,labels,buttons etc..as per the size 800,1000 ...
0
votes
1answer
107 views

dompdf absolte positioned elemnts pagebreak

I have a dynamically generated page made up of some divs and tables and other elements inside those divs, all absolutely positioned. The lower divs can potentially have more contents in them, like ...
0
votes
0answers
165 views

Android : How To Move Widget Dynamically on Custom Absolute Layout

I have a problem moving my widget. I created a custom Absolute Layout to implement drag and drop object, I can't set the position of my widget. Can someone explain to me how to move it? Here my ...
2
votes
1answer
275 views

location and size of jtextarea in jscrollpane is not set

I am working on the editor. I am using Java swing for it. I have embedded a JTextArea with JScrollPane. i want to position the jtextarea of particular size at the middle of JScrollPane. To do this I ...
0
votes
4answers
207 views

Dynamically growing JPanel with BoxLayout (on a null layout)

I have a JPanel with a vertical BoxLayout on top of a JPanel with a null layout. I would like the JPanel with the BoxLayout to grow as the components are being added. See this code: public static ...
2
votes
1answer
117 views

Java JPanels don't Appear in JFrame in Linux

I'm working an application that queries a database and pulls that information onto a couple of JPanels that I have added to a JFrame. Every 30 seconds I set one's visibility to false, and the other's ...
1
vote
1answer
124 views

positioning picture on GUI JFrame in java

I was wondering if there is a quick and easy way of trying to position an image at a particular position in GUI. In addition to this is it possible to put Jlables/Buttons on this picture. That picture ...
0
votes
0answers
88 views

how to re-size components in main panel in JFrame if window is maximized

i have developed a window using Swing package which consists of mainpanel(JPanel). this mainpanel is added to the JFrame and again mainpanel contains multiple number of JPanels. i used ...
0
votes
1answer
67 views

Inflate Button exactly at centre of the touch point on DragEvent.ACTION_DROP on AbsoluteLayout

I want the button to be inflated with its centre point = touch point. At the time of inflating, m doing as follows: control = inflater.inflate(R.layout.button, (ViewGroup) ...
1
vote
1answer
386 views

Component on JPanel not showing when setLayout(null)

Someone can tell why the combobox is not showing ? I have a Controller: public class TestController extends JPanel { TestView cgView; public TestController() { setLayout(null); ...
1
vote
1answer
137 views

How to resize components within JFrame when JFrame is resized?

RESOLVED I've looked around for a while now and I can't seem to figure out how to do this. I have lots of components within my JFrame and I am able to resize my JFrame. When I resize the JFrame I ...
1
vote
2answers
173 views

Java JTable head not showing

Have a table i wanna show in a panel when i click on a button. I am able to get the table to show, but i am not able to the header to show. Have also tried usning the JscrollPane, but here nothing ...
0
votes
3answers
441 views

Adding multiple jpanels to container, adding space/border between?

I am creating a program which has three jpanels: one container, and inside the container is two jpanels, one that is going to hold buttons and one which will hold the content. Ive got them both ...
3
votes
2answers
294 views

Space between buttons and window

I have this code right here, and the idea is to have two buttons in a main window alongside a text area, which I have not added yet. After trying to use GridBagLayout and ripping off my hair in the ...
0
votes
1answer
299 views

AbsoluteLayout lost in NetBeans

I made a Java application with AbsoluteLayout using NetBeans on a Machine then I moved project data files to another machine, there I got Reference Problem message for some libraries including ...
0
votes
1answer
156 views

ImageIcon in JLabel not working

I've been struggling with this problem for weeks to no avail. Other Java forums have not been able to help me with this so I'm hoping I can find someone here with new eyes. I have a JFrame in which, ...
2
votes
2answers
129 views

Getting data from JTextField that is one of several local variables

So I am reading a file and I get the amount of lines in that file. Based on that I generate my interface. Now I need to have the ability to edit valus trougth UI . Rows is the variable that has how ...
1
vote
1answer
652 views

JScrollPane with JPanel inside doesn't show scroll bar when picture is bigger

I'm making an utility to define footholds in a map for my game and i am displaying the preview of the map inside a JPanel that's inside a JScrollPane. I would like to be able to scroll when the map is ...
3
votes
2answers
399 views

non resizable window border and positioning

If i create non-resizable JFrames, and windows Aero is enabled setLocation does not seem to take account of the window border correctly. In the following code I would expect the second frame to be ...
0
votes
0answers
103 views

Button not responding on click

I am working with AbsoluteLayout in which I had placed one ImageView. At runtime I am animating the AbsoluteLayout to scale and translate due to which image inside the layout also gets animated. I ...
0
votes
2answers
239 views

How can we use a variable in R.id

The content of xml are <AbsoluteLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/MainFrame" android:layout_width="match_parent" ...
0
votes
2answers
344 views

Set Specific Coordinates in a Relative Layout

Is there any way to set an ImageView's exact coordinates in a relative layout? I found things related to "absolute layout", but I am informed that it is deprecated? How can I set the position of ...
0
votes
4answers
211 views

css: absolute position doesn't favour right and bottom value?

I want to absolute position an iframe and define it's left, top, right, bottom offset: #x { position: fixed; left: 10px; top: 10px; right: 10px; bottom: 10px; width: auto; ...
0
votes
4answers
85 views

How to position views in android without using the deprecated AbsolutoyLayout

I want to position several views on the screen , AbsoluteLayout makes it. but it is deprecated . I have tried to use framelayout with setMargin() function programmaticlly. But it doesn't work!
2
votes
2answers
2k views

How to absolutely position a JPanel over another JPanel with setLayout(null) and a background image?

I'm working with JFrames in Java, specifically with absolutely positioned elements that need to overlap. I understand that to overlay components, one should make a JPanel (with setOpacity(false);), ...
1
vote
1answer
175 views

Alternative to AbsoluteLayout in “multi layer” layouts

I am developing an android app with a layout that includes buttons arranged around a circular element. As the corners of said element would overlap with other buttons, the recommended layout types ...
0
votes
3answers
153 views

setBounds of JComponent to pixel width of a string

I have this inner class: private class Plats extends JComponent{ private String namn; Plats(int x, int y, String n){ namn=n; setBounds(x-10, y-10, 150, 40); ...
0
votes
3answers
2k views

Hiding div behind its parent?

<div class="content-wrapper"> <div class="popup"> <div class="close"> </div> </div> </div> .content-wrapper is relatively positioned and ...
0
votes
1answer
261 views

How can I use ScrollView and AbsoluteLayout in one xml?

I have a problem to include lots of pictures and buttons in the xml, I have tried to ScrollView but pictures and buttons can not be made ​​up as I wanted. How can i use ScrollView and AbsoluteLayout ...
1
vote
4answers
524 views

Using scrollbars with absolute layout in Swing

I am not able to use scroll bars with absolute layout in Swing. I don't wish to use this layout but I have to display dynamic objects on my panel on click of a button and align them using setBounds ...
0
votes
1answer
485 views

How to add a component into a JComponent with absolute positioning?

Here is my current settings: private JComponent upperContent = new GeneralContent(); private JComponent lowerContent = new GeneralContent(); // GeneralContent extends JComponent ...
2
votes
1answer
2k views

How to move a button programmatically in an absolute layout

i make a test application in eclipse with adt plugin. I want when a button is clicked to move it in a random position in the screen, i found some example around the internet by nothing works Button ...
2
votes
2answers
101 views

UI Change in Swing application across platforms

My Swing Application's GUI is built using Window Builder Pro GUI editor. Layouts used are MigLayout and AbsoluteLayout. Application is developed using Windows Machine, So UI is well aligned and neat ...
0
votes
2answers
724 views

css Column/Grid-Layout: position or float. Any alternatives to that?

As far as i know and understood, there are two possibilities to build a colum-layout or grid-layout or to position elements in a more complex way with css: 1)position:absolute/relative; ...
0
votes
2answers
3k views

ImageView within an AbsoluteLayout, How to set x, y coordinates of the ImageView?

What I'm trying to do is create a poorman's version of a gps map. I've setup a "map" picture as the background of an AbsoluteLayout, and then created a tiny 20x20 square picture that I need to move to ...
0
votes
1answer
139 views

Can not move my custom component based on HGroup

I have created a custom component based on spark.components.HGroup and it works mostly as needed, but I have this minor problem: I can not move it. Maybe someone will look at my simplified test case ...
1
vote
2answers
2k views

Android: how to change layout_x, layout_y in an AbsoluteLayout dynamically?

I have a fixed background-image and showing another image on top of it. Here is the xml- <AbsoluteLayout xmlns:android="http://schemas.android.com/apk/res/android" ...
1
vote
2answers
275 views

Alternative to AbsoluteLayout

the question "What is a usefull alternative to AbsoluteLayout?" seems to be a question which is often asked, but never really answered. My situation is as follows: I want to position Circles (for the ...
0
votes
2answers
1k views

Android To make part of the visible screen scrollable

I searched net to find the answer for my following problem. But no answer found. I myself tried several ways, but I am still a novice at Android. What I found on net related to scrolling is official ...
1
vote
1answer
1k views

Monodroid - Drag View with Touch event?

I want to drag a view. Until now i tried it with a LinearLayout and margins and with a AbsoluteLayout. AbsoluteLayout example: button.Touch = (clickedView, motionEvent) => { Button b = ...
0
votes
1answer
476 views

Android: Scale fixed Layout down

i want to scale my android application, basically i developed it for 800x480 display with a AbsoluteLayout. This is necessary for my Application, i can't change it. Now the Problem: When i start my ...

1 2