GridLayout is similar by concept to the table layout, placing object into multiple rows and columns so that all cells in the same column usually have the same width.
0
votes
1answer
16 views
css grid uneven height without jQuery Masonry plugin
Is it possible to have uneven height grid in CSS?
I have taken this illustration from a different question, but the answer to that question was "Use Masonry".
So I want to achieve the result in ...
0
votes
2answers
31 views
Get the widget at a particular row and column in a Swing GridLayout
I'm developing a swing applet which features a JPanel with a GridLayout.
The row and columns of the widgets placed into this layout are of significance to the widgets. Currently, I do not keep a ...
2
votes
2answers
32 views
Resizing panels in a GridLayout
I want this:
My frame is a GridLayout (3,2), and all I can have is this:
I put the button in a panel, I think it's easier. But how can I change the size of the grid?
1
vote
1answer
30 views
JPanel: extra spaces between borders of nested GridLayout tables
I'm working on my first Java Swing project (really my first GUI project, unless you count client-side web programming), and I'm having an aesthetic issue. I'm making a Sudoku board in a JPanel. The ...
0
votes
0answers
21 views
Creating 15-tile game on android, do I use GridLayout or GridView?
I'm working on the classic 15-tile game for Android and I'm having a little confusion regarding how I should represent the grid. I've read that the one difference between the GridView and GridLayout ...
0
votes
0answers
37 views
How can I resolve “No resource identifier found” for attributes in my Android project?
I'm trying to implement a simple GridLayout in Xamarin Studio, as outlined in this example:
...
0
votes
1answer
23 views
accessing gridLayout grids
So I'm using borderLayout panel with a girdLayout for the Center Position, I have added some objects to my gridLayout but latter on I would like to add some more information to the same grids.
...
1
vote
2answers
63 views
Why does GridBagLayout provide strange result?
I want the various components to spread out and fill the entire window.
Have you tried anything else? Yes, I tried GridLayout but then the buttons look huge. I also tried pack() which made the ...
0
votes
3answers
50 views
Java keeps giving me my coordinates multiplied by 93
When I set X and Y values for my array of JButtons, I get back the correct values only multiplied by 93. I can solve the problem by dividing the value by 93 but I would rather find out where the bug ...
0
votes
1answer
24 views
How do I give a gridLayout the ability to scroll vertically and horizontally at the start of the application in android?
So imagine a view with 9 tiles that looks something like this:
(tile1) (tile2) (tile3)
(tile4) (tile5) (tile6)
(tile7) (tile8) (tile9)
One tile takes up most of the screen. I have this set up ...
0
votes
0answers
48 views
Diagonal lines of squares in grids
I have a python grid class in which I am trying to create a method to get the diagonal line of tiles that a certain tile belongs to. I have succeeded in doing this for going down from left to right in ...
0
votes
1answer
14 views
WPF layout problems using Grid and ListBox
I'm (sort of) a newbie in WPF. And I'm stuck with this layout. The Viewbox is displayed fine and so is the space (30%) for ListBox but I can't see ListBox in that space. Following is my XAML, just ...
0
votes
2answers
52 views
Moving Component in GridLayout
I have a 30x30 GridLayout of JPanels. So each Cell in the 30x30 Frame is a JPanel with an Image. Aka Tiles on a map.
I need to move my character (red JPanel) around this map on keyPress.
How can I ...
0
votes
1answer
100 views
GridLayout vs TableLayout
I'm unsure as to what the differences between the two of them are and which I should use for my purpouses?
What I'm trying to do is create a custom virtual numpad with text inputs and that can ...
0
votes
1answer
50 views
Trying to create tiled scrolling icons, should I use GridView or GridLayout?
This is what I have so far:
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/linearLayout1"
...
-1
votes
0answers
44 views
Java grid with JButtons first button only responds once [closed]
I have a grid that includes a JButton in each grid spot. When clicking on a JButton the button will "swap" places with another button in the grid. Everything is working fine, except for the first ...
5
votes
3answers
88 views
How to use MouseListener to find a specific cell in a grid
I'm trying to create a Java game with a 10 x 10 grid made up of cells.
The Grid looks liks this:
public class Grid extends JPanel implements MouseListener {
public static final int GRID_SIZE = ...
0
votes
1answer
39 views
One of my Panels is not showing
What's wrong with my code? The panel named 'leftPanel' is not showing up when i run the program whereas 'flightPanel
import javax.swing.*;
import java.awt.*;
import ...
1
vote
1answer
97 views
(Java) Using GridLayout (possibly GridBagLayout) on a 2D array of JPanels
I am trying to make a program that allows the user to change the colour of JPanels through mouse interaction. I have the array of JPanels all up and running (5x5) BUT they expand to fit the entire ...
0
votes
1answer
37 views
Java GUI - remove all components and redraw
I have a grid layout JPanel, with many icons drawn on it. I need the icons to change after the player moves because the map changes. Here's the method I came up with:
public void initGridIcons(JPanel ...
0
votes
0answers
37 views
Correctly implementing onMeasure() when extending a ViewGroup
One of Android samples (FixedGridLayout) extends a ViewGroup to allow for custom transitions when new items are added to a grid. The code works as expected, but does implement scrolling. I thus ...
-1
votes
1answer
53 views
Adding ImageIcon to a specific JPanel in an array
I have started over with my chessgame, and are now facing new problems. Like I tried to explain in the title of the question;
I made 64 squares, like a chessboard normally would have. They are given ...
1
vote
1answer
100 views
Beginner: JButton/Gridlayout (Similar to Minesweeper)
I am a beginner with Java and eventually I would like to create code for a robot I am making for a senior project. I am planning for the robot to set up dominoes in a specified pattern to then be ...
2
votes
1answer
72 views
Possible to add offset to the right of an element in a Zurb Foundation 4 grid?
According to Foundation's docs on the grid component, I can essentially make 1 or more grid columns a space using their offset classes:
<div class="row">
<div class="large-1 ...
0
votes
0answers
52 views
Control the size of patches in Gridlayout when using QuiltView lib
I started doing Android development about a year ago and ever since I started developing ive wanted to create a layout with all different size boxes that would fit together snuggly w. out any gaps. My ...
1
vote
1answer
74 views
spans adding up to parent in bootstrap not working if in well
<div class="row">
<div class="span8">
<div class="well well-large">
<h3>Place an Order</h3>
<div class="row">
...
0
votes
0answers
128 views
Getting the bootstrap grid elements to span multiple columns
Let's say I have this:
<div class="row-fluid">
<div class="span4"> Content </div>
<div class="span2"> Some more content </div>
</div>
Is there a way to ...
0
votes
0answers
43 views
Getting object information after dragging - Android
Well... I took this code: http://www.vogella.com/articles/AndroidDragAndDrop/article.html and I just changed it to use a GridLayout.
I add some buttons dinamically to the GridLayout in this way:
...
0
votes
1answer
110 views
Set GridLayout background colours dynamically Android
I have a GridLayout of 8x8 cells and I want to control each one's background colour dynamically. I have written most of my java code and am confident I can get it to give me an array with 64 colours ...
0
votes
2answers
152 views
Drag and drop items around GridLayout - Android
I have a GridLayout with some items in it. Nothing special on it.
I just would like to know if I can drag items around and make the other items automatically arrange themselves.
It's like Android ...
0
votes
1answer
42 views
Assistance with JFrame
I need some assistance with an assignment that deals with Jframes. The assignment says "For questions 27 to 31, consider the following class:
import javax.swing.*;
import java.awt.*;
import ...
0
votes
2answers
125 views
Android GridLayout and EditText
one picture is worth ten thousand words. : ) The right corner is not displayed correctly. Thank you!
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
...
2
votes
1answer
134 views
How to set column and row of elements in GridLayout in Android
I have a GridLayout containing several ImageButtons such as
<ImageButton
android:id="@+id/btnColor00"
android:layout_column="0"
android:layout_row="0" />
The layout ...
0
votes
2answers
59 views
Referencing a contentPane in an actionPerformed method
I'm creating a load button and want it to populate a 9x9 gridlayout content pane nested inside the CENTER panel of a border layout (main window). This method is located inside the PAGE_START section ...
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
...
0
votes
2answers
67 views
How to create dynamically JButton value in DesignGridLayout library?
i create grid layout using DesignGridLayout java library (here).
in the sampe if create 3 column layout. using this code :
layout.row().add(new JButton("Button 1")).add(new JButton("Button ...
0
votes
1answer
101 views
android layout-v14
I know that you can use -v14 extension for various folders like xml. I thought that I can use it as well for layout, e.g. layout-14. I want to use a grid layout folder older api levels I would like to ...
0
votes
0answers
62 views
A Grid or Framework that uses [a] inline blocks not floats [b] rems for width and typog [c] SASS [d] is 1200 px wide
Is there, perhaps, a table of all of the different grid systems and what they feature?
0
votes
1answer
32 views
how to put one gridlayout on top of the other?
I designed two keyboard and I added a button that, when clicked, will switch between these keyboards.
I want to place these two keyboard on top of each other when i am designing so the user can click ...
0
votes
2answers
178 views
Problems aligning text field input using GridLayout
I want to make a form using java frame. I have two fields Name and Age. After entering the details, when the button is clicked, the entered data must be displayed as shown below, but I am not sure how ...
0
votes
1answer
399 views
Android, Horizontal and Vertical Scroll for GridLayout
I'm having trouble getting a GridLayout to scroll horizontally.
I found a similar question Gridlayout + ScrollView. I tried that method, but the result was this
Image link (Sorry, don't have the rep ...
0
votes
0answers
40 views
android GridLayout in low API verison
I have a problem with android GridLayout.I try to create sport playoff grid.
When I use GridLayout I got a correct result.
But when I try to use this lib forGridLayout<com.gridlayout.GridLayout ...
2
votes
1answer
158 views
Changing colors of GridLayout elements
Note: this question may look a bit like another I've posted a few weeks ago. Back then I was not working with adding the buttons as arrays, thats what makes it more difficult for me this time.
I'm ...
0
votes
1answer
116 views
Android View's Position on Gridlayout
I placed EditText, TextView, ImageView in a GridLayout.
(My goal is to make an app like an Image Editor or OpenOffice Draw)
When I type a long text in EditText, its size is growing as I type ...
-4
votes
1answer
79 views
Java Swing gridLayout issue [closed]
I just cant get this to appear the way i want, im exhausted trying gridlayout, gridbaglayout, borderlayout etc...
plz i need help
this is what i did so far
panneauEst = new JPanel(new ...
0
votes
1answer
34 views
Trouble with GridLayout
I'm trying to create a form with Java, but I get a NullPointerException. This is my code:
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class Inscripcion extends JFrame ...
0
votes
1answer
298 views
How do I show a value from model association in an ExtJS grid?
I am trying to draw a grid where each line is a stock's performance for a single day. In my data structures, I have a Date, a Stock, and a Stock Price resource. The store attached to my grid is the ...
0
votes
1answer
45 views
UltimateGrid: Multi-row text in heading
I'm working on a complex grid layout, and UltimateGrid is my choice.
I have set a multi-row heading, then I have joined some cells in heading vertically.
Now, I'm looking for a way to set multi-line ...
0
votes
0answers
63 views
Are there negative consequences to using a custom Foundation grid with many (54) columns?
I'm looking to align many different items very precisely on lots of different vertical columns.
I'm 200 miles down the road using Zurb's Foundation framework, so switching to something else at this ...
2
votes
1answer
139 views
Making a CSS Grid without float
As the title would suggest I need to make a CSS Grid without losing float, since that would interfere with the Waypoints JS Plugin...
Anyway, I stumbled upon display: inline-block; but if the boxes ...







