Tagged Questions
-2
votes
5answers
44 views
Java Simple Layout [closed]
What is the best library to use in Java for a simple layout.
Here is an image of what I am wanting to have on the form.
I am looking for the most simplest layout library, that also has good ...
0
votes
4answers
36 views
Easiest Java layout process
In Java, what is the easiest way to do the following layout:
A Label and a Textfield, side by side in the centre at the top of a Panel
A Label and a Textfield side by side (as above) but on the next ...
0
votes
1answer
79 views
GridLayout with component fixed Width and Height?
I have main Panel and I'm adding components dynamically into that one.
Main Panel has GridLayout limited to 3 columns and 0 rows (0 rows will allow rows to grow infinitely), but the problem is that I ...
0
votes
3answers
31 views
removeView() on the child's parent
I'm getting
E/AndroidRuntime(855): Caused by: java.lang.IllegalStateException:
The specified child already has a parent. You must call removeView()
on the child's parent first.
The code I'm ...
1
vote
3answers
95 views
findViewById(R.id.something) in a non-activity class
In my activity I go through a bunch of controls(input fields), and create a
for(ControlTemplate field: fieldMap.get(string))
{
View view = field.getFieldControl(true, this);
l.addView(view, ...
2
votes
5answers
137 views
Java GUI Layouts
Could somebody tell me which java layout I need to use to achieve the layout below:
I am currently playing out with the FlowLayout however I can’t get the entry fields to line up beside the output ...
0
votes
1answer
39 views
Connecting xml to programmatic layout in Android
I have a custom layout java file that I create and add views to like this:
PredicateLayout layout = new PredicateLayout(this);
for (int i = 0; i < someNumberThatChangesEveryTime; i++)
{ ...
1
vote
2answers
51 views
JScrollPane and sizing issues
I am having quite a problem in regards to a proper way to handle 'packing' a JPanel and allowing a scroll bar.
Code:
public ProjectSelector() {
super(new BorderLayout());
final String ...
-5
votes
1answer
94 views
Advanced Android UI designs [closed]
I know how to make basic android layout designs but i was thinking of knowing really good ones so if anyone can help me with the following layouts:
1. FilpBoard layout from the FlipBoard app.
2. This ...
0
votes
1answer
81 views
Dynamically create list of jpanels swing/java
I am attempting to create panel, PluginListPanel (extending JPanel), which will show a list of plugin panels which will respect the preferred height of the plugin's panel, but will force the width. I ...
0
votes
1answer
47 views
Tkinter: Getting an image above buttons in grid layout
i'm new to tkinter and I was trying to make a GUI where there was an image at the top with an area of 4 buttons underneath that image which would be a method of selecting answers. However with the ...
1
vote
0answers
33 views
Creating Android overlays for displaying Walk-through
This is what I've done to implement CommonsWare's answer in the following question:
How do I create a help overlay like you see in a few Android apps and ICS?
But it fails. There are no errors but ...
0
votes
0answers
35 views
NetBeans 7.3 customise/Edit Toolbar positions
I have create new TopComonent for a client and then added new icon click action to the main toolbar and in view folder from main menu drop down list. But my problem is that what every position I set ...
1
vote
1answer
61 views
Python tkinter grid layout problems
I'm creating a very simple UI using Tkinter and python, but I'm having trouble sizing GUI elements and using the grid format to place them correctly. Here's a first-order approximation of what I'm ...
0
votes
2answers
81 views
JAVA GUI Layout - what is best layout for 6 buttons placed vertically with spaces?
I have been recently creating some GUI's for my program. However for my next GUI I want to know what is the best way to create a frame as follows:
It will have a title, Hotel Menu and then under it I ...
0
votes
1answer
34 views
Positioning using GridBagLayout
As you can see in my output below, the label is displayed on top of my "next piece" grid. I know why this is happening (because my grid bag constraints are at the same location) but if I increase the ...
-1
votes
2answers
85 views
How do I arrange items on a GUI using a layout? [closed]
My code has a class that extends a JFrame. When the code is launched it opens a window with some labels, a couple of textboxes, and a drop down menu. I have been told that the proper way to set the ...
0
votes
1answer
39 views
GUI Layout Addition
public void testDialog()
{
JPanel myPanel = new JPanel(new GridBagLayout());
GridBagConstraints grid = new GridBagConstraints();
grid.gridx=0; //Moves Things across
...
1
vote
1answer
241 views
Android Phone and Tablet UI
I have made one app which is working fine for both Tablets and Phones. But as we know we should have a different layout for tablets( such as bigger font and images etc).
My question is how to provide ...
-3
votes
1answer
73 views
Android 4+ doesnt show the the options menu in a grid layout [closed]
I've some troubles in Android 4+ with menu because it displays menu item in a list. But I can't a way to set it displaying in a grid-like layout as it used to be, i tried ...
-7
votes
1answer
34 views
music store layout [closed]
Am working on a music store, that is suppose to sell music album and tracks, like the image below. how can i develop one like the image below. i need an example or a tutorial guide. thank you
0
votes
1answer
92 views
Android - UI XML to Java Code - Dynamic - LayoutParams Button with Weight
Hi there guys I a trying to manage a UI programmatically, I will add some rows to a Table, but the number of the rows are not always the same.. So I am trying to do this via code, programatically so ...
0
votes
2answers
34 views
ImageView should have the same height as the layout on the right
I would like the imageview to have the same height as the LinearLayout on the right.
I don't want to fix any height and I would like to keep the image aspect ratio.
<LinearLayout
...
0
votes
3answers
140 views
Putting button on top of image in JPanel?
I have been working on a main menu screen. I use a card layout because I have a splash screen that shows up before the main menu screen. Once the user clicks the "Continue" button on the splash ...
0
votes
1answer
147 views
Using LayoutInflater to add the same view multiple times below each other
i've been working on a simple UI which displays a few photos and some other info!
I have a simple layout for displaying each photo in a box and I wanted to add this layout dinamicaly multiple times ...
2
votes
1answer
57 views
Making components fill maximum whitespace depending on changing sizes
I'm developing a UI in C# in Visual Studio 2012 using Windows Forms, and I'm trying to make it such that the components in my form fill all the whitespace possible. The thing is, the user should be ...
0
votes
1answer
97 views
How to make new widgets fill available space?
I am having some trouble making a new QT widget fill all the available space.
I want to add a widget (a QGLWidget) to the verticle layout (mVisual) and have the layout resize so that mVisual ...
4
votes
2answers
83 views
Which LayoutManager should I use?
Please see the image attached. I'm a beginner at Java GUI and was hoping someone could guide me in choosing a Layout Manager for GUI like this. I know I might have to use nested layoutmanagers, but ...
0
votes
1answer
37 views
How do I make an resizable layout in SWT with standard sizes
I'm currently trying to make an application using SWT, I want to have something like in Finder where I can resize the different composites by dragging the edges. I also want to be able to set default ...
0
votes
1answer
70 views
Android: how to implement irregular buttons next to each other?
I want to implement an interface with some irregular buttons, like this:
Is this possible in Android with regular button componentes, or do I need to use another approach (like using images and ...
1
vote
1answer
76 views
Algorithm similar to bin packing
I have been experimenting with bin packing algorithms for data visualizations, but none are quite doing what I want to accomplish. Essentially, I am trying to think of an algorithm to represent a set ...
0
votes
0answers
22 views
UI for App With Many Textfields (ios)
I create absolutely horrible UIs for my apps and I'd like to improve that. The app that I'm working on now has a couple of screens that have multiple text fields. One screen will just barely hold ...
0
votes
0answers
15 views
How to setup 3 resizable panels to fill available space?
I'm implementing custom UI which has 3 resizable panels with splitters in between:
[ A ]|[ B ]|[ C ]
Splitters need to resize panels. If there are 2 panels on one side they resize proportionally.
...
1
vote
0answers
69 views
Once again about resizing window to the size of its children in QT
A similar question has already been asked, but no clear answer was given, so I'll ask again.
Say we have a QMainWindow, and a QScrollArea inside. I resize the QScrollArea in the program and I want the ...
-3
votes
1answer
497 views
BMI calculator in GUI Java; [closed]
I wanted to create a BMI calculator using GUI in Java. I'm very new to GUI and even Java. The calculator is suppose to display BMI with advice and even time and date. However, only the BMI is display ...
1
vote
2answers
205 views
Java Layout Proportions: Creating a scalable square Panel
I am making a GUI component to represent something like a Chess board in a window. Normally it will be a grid of 8x8 squares, although some variants require a 10x8 board etc. The first step is to make ...
0
votes
0answers
23 views
UI Layout creation tool (Open Source) [closed]
I would like to create a tool to design a layout for one of my survey application. Ideally the tool should provide users with some predefined controls which can be dragged and dropped to the canvas, ...
1
vote
3answers
69 views
Create Swing GUI with vertically stacked sections
I want to create a GUI in Swing which contains two vertical sections:
+-----------------------+
| labels,textfields |
| and buttons |
+-----------------------+
| |
...
0
votes
0answers
59 views
Layout for user reviews in Android? [closed]
I have to add a section to my App.In this section users can leave them reviews.My question is in about design of this section.I searched in google,but finally I founded a layout that looked like this:
...
1
vote
1answer
313 views
System.Windows.Visibility Collapsed vs Hidden
I have a control with Visibility set to "Collapsed" and a ToggleButton that changes the visibility between Visibility.Collapsed and Visibility.Hidden. According to the MSDN Documentation there ...
0
votes
1answer
39 views
wxCollapsiblePane forces frame resize
I have a wxCollapsiblePane and a wxGrid in a wxFrame. Every time I collapse or expand the wxCollapsiblePane, the entire frame is resized. What I want is for the wxGrid to grow and shrink instead, ...
0
votes
2answers
425 views
Android HorizontalScrollView does not display all the child views
I have an android activity which contains a horizontal list view. Below is the layout for it:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout ...
0
votes
1answer
17 views
Lout Manager for re-sizing of panels
I am making a gui application where I need a wide panel on one side of the frame, and a thinner panel on the other. The panels are the same height, but when I re-size them I want them to keep a ...
1
vote
0answers
36 views
Test my android app in a custom display like a 7 " mdpi?
How can I test my android app in custom displays like a 7" mdpi display or 10" hdpi display ? in eclipse only can test the predefined devices and when I try to put a custom dpi or screen size only ...
0
votes
4answers
72 views
What Tool for creating, experiencing new layouts and designs?
I am developing WebApps with Backbone, node, jQuery and so on.
In my beginnings I have used Twitter Bootstrap for designs.
Then I started to use own designs which I have created with the Chrome ...
0
votes
1answer
107 views
Array of Images
I'm working on a blackberry project and for that I need to create grid layout. I'm working on "Blackberry java sdk".
I'm using this code
public class GridScreen extends UiApplication {
// main ...
2
votes
5answers
112 views
Layout in Blackberry
I'm new to blackberry development. Is there something like palette as android in blackberry for creating layout?
Or any other best approch to create layout in blackberry?
0
votes
4answers
258 views
Which Layout Manager to use? [closed]
So basically I want to create this sort of a GUI, but because of my inexperience with Java GUIs, I cannot figure out which Layout Manager to use. I've tried Flow, Border, Grid, but none of them ...
1
vote
5answers
607 views
What is the default value of android:text of EditText while the android:text is left undefined?
I'm a beginner in Android development. In my project, I created a TableLayout --I reckon that a GridLayout can do more help, but since I'm not familiar with GridLayout TableLayout was taken -- with ...
111
votes
4answers
59k views
How to get controls in WPF to fill available space?
Some WPF controls (like the Button) seem to happily consume all the availible space in its' container if you don't specify the height it is to have.
And some, like the ones I need to use right now, ...

