The layout tag is for questions about the placement, alignment and justification of objects with respect to a containing element.
0
votes
0answers
9 views
Android: Layout background gets disappear in Android 4.0+ for some reasons
I have created RelativeLayout containing TextViews and a EditText, I am using tabs and assume this layout is the part of the tab B while there are total four tabs i.e A,B,C and D. when I shift from A ...
0
votes
1answer
27 views
Use relative layout in java code
I m making and app which allows the user to change the interface by moving items like buttons, erasing them and adding new. So i need to know how i can change the layout properties (like toRightOf) of ...
0
votes
1answer
10 views
About deleting, removing widgets and layouts in Qt 4
(I use Qt 4.7, Windows 7, 64bit).
I created a custom table. Each row is a horizontal layout with widgets.
The rows are kept in a QList for easy access, and the children too. The rows are also added ...
0
votes
1answer
18 views
NoActionBar equivalent on Sherlock ActionBar
I want to hide the action bar of my activity. If I were to do it using android's libs I guess that this line on the manifest would do the job:
...
0
votes
1answer
64 views
Algorithm to calculate values based on width and height (coordinates and size)
What I want is might be separated into several or one methods, whatever is best.
I have four values that are set (as fields):
Width of image the whole image (canvas so to speak)
Height of the whole ...
0
votes
1answer
19 views
Android listview with expandable list view item
I want to have a listview menu with few clickable elements and the last element must be an expandable list view item. I mean when i click the last element, an additional positions should be expanded.
...
0
votes
1answer
23 views
Android layouts - programmatically setting value for a custom layout components
I have defined a simple custom layout that includes a text view and an image view. in my main layout I want to use this layout several times and I want to add value to these text and image views in my ...
-2
votes
1answer
27 views
Overlay map while using layout in R
I defined a layout to plot three different plots as:
layout(matrix(c(1,2,3,4),2,2,byrow = TRUE), TRUE)
After that I call the three plots that I want to produce:
image.plot(...)
plot(...)
plot(...)
...
2
votes
1answer
32 views
how to create an alphabet letter selector that spans an entire div width
I am creating a website and need to filter contacts by letter.
i will be using a horizontal bar containing each letter in the alphabet
I am currently using a ul and li with the inline function to ...
0
votes
1answer
25 views
Html positioning gap between divs
im having a html layout issue below is the code, when you open the page there is a space between the menu bar and the grey box I would like to get rid of the space so there is only a small gap between ...
2
votes
5answers
40 views
Website layout advice
I'm working on a website that fits perfectly in the browser window. Below is a basic blueprint of the website layout:
So far, the Red area is just display:block. The Green area is also display:block ...
0
votes
0answers
13 views
Qt Layout restore does not work properly
We have a complex GUI based app, mainly consisting of QMainWindow, which includes many QDockWidget based window. Each customer has several layouts saved in correspondent .ini files via QSettings.
The ...
0
votes
2answers
28 views
emulator output different from layout view in android
In the layout view my calculator program looks like this
But when I run my program, it looks like this
Why is this happening?
This is the layout file code:
<RelativeLayout ...
0
votes
0answers
29 views
Andorid Linear Layout shape as background
I use the following shape as a background for various layouts to logically group data within my app...
<?xml version="1.0" encoding="utf-8"?>
<shape ...
0
votes
2answers
24 views
Inline-block elements expanding space below
Creating a page layout using inline-block elements (vertically aligned to the top). The only issue, is that inline-block elements below another set of inline block elements will not fold into open ...