The layout tag is for questions about the placement, alignment and justification of objects with respect to a containing element.
613
votes
90answers
70k views
Why not use tables for layout in HTML? [closed]
It seems to be the general opinion that tables should not be used for layout in HTML.
Why?
I have never (or rarely to be honest) seen good arguments for this. The usual answers are:
It's good to ...
164
votes
6answers
97k views
Standard Android Button with a different color
I'd like to change the color of a standard Android button slightly in order to better match a client's branding. For example, see the "Find a Table" button for the OpenTable application:
The best ...
156
votes
20answers
4k views
Are fluid websites worth making anymore?
I'm making a website now and I am trying to decide if I should make it fluid or not. Fixed width websites are much easier to make and also much easier to make them appear consistent.
To be honest ...
92
votes
7answers
35k views
How to align views at the bottom of the screen?
Here's my layout code;
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
...
92
votes
7answers
90k views
Android: How to get screen dimensions
I created some custom elements and I want to programatically place them to the upper right corner (n pixels from the top edge and m pixels from the right edge) therefore I need to get the screen width ...
73
votes
6answers
23k views
Truncating long strings with CSS: feasible yet?
Is there any good way of truncating text with plain HTML and CSS, so that dynamic content can fit in a fixed-width-and-height layout?
I've been truncating server-side by logical width (i.e. a ...
66
votes
12answers
3k views
How would YOU do this: Tables or CSS?
Part I
This layout can be done quite simply with 2 HTML tables, one nested inside the other, or even with a single table.
It can also be done with CSS, though it might involve a little more ...
58
votes
4answers
30k views
Laying out Views in RelativeLayout programmatically
I'm trying to achive the following programmatically (rather than declaratively via XML):
<RelativeLayout...>
<TextView ...
android:id="@+id/label1" />
<TextView ...
...
51
votes
18answers
20k views
How to prevent long words from breaking my div?
Ever since switching from TABLE-layout to DIV-layout, one common problem remains:
PROBLEM: you fill your DIV with dynamic text and inevitably there is a super-long word that extends over the edge of ...
45
votes
10answers
11k views
Can you do this HTML layout without using tables?
Ok, I had a simple layout problem a week or two ago. Namely sections of a page needed a header:
+---------------------------------------------------------+
| Title ...
44
votes
14answers
4k views
DIV's vs. Tables or CSS vs. Being Stupid
I know that tables are for tabular data, but it's so tempting to use them for layout. I can handle DIV's to get a three column layout, but when you got 4 nested DIV's, it get tricky.
Is there a ...
40
votes
5answers
31k views
How to hide the title bar for an Activity in XML with existing custom theme
I want to hide the title bar for some of my activities. The problem is that I applied a style to all my activities, therefore I can't simply set the theme to @android:style/Theme.NoTitleBar.
Using ...
37
votes
7answers
5k views
How do you keep parents of floated elements from collapsing?
Although elements like <div>s normally grow to fit their contents, using the float property can cause a startling problem for CSS newbies: if floated elements have non-floated parent elements, ...
36
votes
1answer
16k views
Can I underline text in an android layout?
How can I define underlined text in an Android layout xml file?
36
votes
13answers
3k views
suggestions for declarative GUI programming in Java
I wonder if there are any suggestions for declarative GUI programming in Java. (I abhor visual-based GUI creator/editor software, but am getting a little tired of manually instantiating JPanels and ...
33
votes
3answers
14k views
Positioning a div near bottom side of another div
I have outer div and inner div. I need to place inner div at the bottom of the outer one.
Outer div is elastic (width: 70% for example). I also need to center inner block.
Simple model of ...
32
votes
4answers
26k views
How to make android app's background image repeat
I have set a background image in my app, but the background image is small and I want it to be repeated and filled in the whole screen. What should I do
<LinearLayout ...
29
votes
1answer
6k views
what is the difference between match_parent and fill_parent property in android
I'm little confused about two properties (match_parent and fill_parent) of layout. It seems both are same. I want to know how this properties are different? TIA
29
votes
7answers
15k views
How to make an ImageView to have rounded corners
In android, ImageView is a rectangle by default. Is it possible to make it a rounded rectangle (clipped off all 4 corners of my Bitmap to be rounded rectangles) in the ImageView? If yes, can you ...
29
votes
8answers
30k views
Android Layout with ListView and Buttons
Alright, this specific layout is just annoying me. And can't seem to find a way to have a listView, with a row of buttons at the bottom so that the listview doesn't extend over top of the buttons, and ...
28
votes
9answers
28k views
Android: How to create a Dialog without a title?
I'm trying to generate a custom dialog in Android.
I create my Dialog like this:
dialog = new Dialog(this);
dialog.setContentView(R.layout.my_dialog);
Everythings works fine except for the title ...
27
votes
3answers
14k views
BoxLayout can't be shared error
I have this Java JFrame class, in which I want to use a boxlayout, but I get an error saying java.awt.AWTError: BoxLayout can't be shared. I've seen others with this problem, but they solved it by ...
26
votes
8answers
7k views
Algorithm to implement a word cloud like Wordle
Context
Take a look at what wordle does : http://www.wordle.net/
it's much better looking than any other word cloud generators I've seen
note: the source is not avaialable - read the FAQ ...
24
votes
9answers
26k views
Linear Layout and weight in Android
I always read about this funny weight value in the Android documentations.
Now I want to try it for the first time but it isn't working at all.
As I understand it from the documentations this ...
24
votes
12answers
14k views
findViewById() returns null for custom component in layout XML, not for other components
I have a res/layout/main.xml including these elements and others:
<some.package.MyCustomView android:id="@+id/foo" (some other params) />
<TextView android:id="@+id/boring" (some other ...
24
votes
9answers
2k views
What is the best absolute width for a webpage?
Assuming a fluid layout is not an option (since that is a different discussion all together), what is the recommended width for a site layout? What are the pros and cons of different sizes?
23
votes
1answer
3k views
Graphical Layout tab does not appear for some layout files into Eclipse
I'm facing a problem when developing layout files for Android with Eclipse ADT Plugin. Some of my files, when opened, does not show the Graphical layout tab, just as below:
The others (actually, ...
23
votes
8answers
2k views
Best way to layout in HTML forms?
I want to display an HTML form containing labelled text fields, like this:
First Name: [_____________]
Last Name: [_____________]
Date of Birth: [________]
My obvious approach ...
23
votes
3answers
8k views
What is the correct way to specify dimensions in DIP from Java code?
I found that it is possible to set dimensions of my interface elements in XML layouts using DIPs as in following fragment:
android:layout_width="10dip"
But all Java interface takes integer as ...
22
votes
2answers
14k views
How to disable an Android button?
I have created a layout that contains two buttons, Next and Previous. In between the buttons I'm generating some dynamic views. So when I first launch the application I want to disable the "Previous" ...
22
votes
9answers
2k views
Why do Google and Twitter use table layout? [closed]
Possible Duplicate:
Does it make sense to use the <table> tag on a “modern” website?
Everywhere I go I see don't use table layout, it's evil, even Google says that, so why ...
22
votes
5answers
11k views
Line-breaking widget layout for Android
I'm trying to create an activity that presents some data to the user. The data is such that it can be divided into 'words', each being a widget, and sequence of 'words' would form the data ...
21
votes
2answers
1k views
Haskell record syntax
Haskell's record syntax is considered by many to be a wart on an otherwise elegant language, on account of its ugly syntax and namespace pollution. On the other hand it's often more useful than the ...
21
votes
5answers
19k views
Android Layout Weight
I am new to Android development and I have a question about setting weight in a linear layout.
I am trying to create a row with two custom buttons and a custom edit text. The edit text should only ...
20
votes
4answers
16k views
Percentage width in a RelativeLayout
I am working on a form layout for a Login Activity in my Android App. The image below is how I want it to look like:
I was able to achieve this layout with the following XML. The problem is, it's a ...
20
votes
8answers
7k views
Using a custom typeface in Android
I want to use a custom font for my android application which I am creating.
I can individually change the typeface of each object from Code, but I have hundreds of them.
So,
Is there a way to do ...
20
votes
4answers
16k views
Centre a button in a Linear layout
I am using a linear layout to display a pretty light initial screen. It has 1 button that is supposed to centre in the screen both horizontally and vertically. However no matter what I try to do the ...
20
votes
2answers
8k views
How to switch layout files in Zend Framework?
I'm sure it's a simple one-liner, but I can't seem to find it.
How can I use a different layout file for a particular action?
Update: This worked for me, thanks!
// Within controller
...
20
votes
5answers
30k views
How to make a ListView transparent in Android?
How to make the ListView transparent in android?
The background android screen image should be visible.
20
votes
27answers
2k views
Why would you choose a fixed-width design?
Update:
I deleted my motivation because it seems to distract readers. This is not about "why don't you make your window smaller". See the screenshots and you will see obstructed text because of fixed ...
20
votes
2answers
17k views
What's the difference between fill_parent and wrap_content?
In Android, when layout out widgets, what's the difference between fill_parent and wrap_content?
Is there any documentation where you can point to? I'm interested in understanding it very well.
19
votes
9answers
12k views
Android Dashboard Pattern
In Tim Bray's latest Android blog post he mentions the "dashboard" ui pattern (what is used for the Twitter app, Facebook app, etc. Is this layout as simple as a GridView with Buttons or is it ...
19
votes
4answers
3k views
How can I swap positions of two open files (in splits) in vim?
Assume I've got some arbitrary layout of splits in vim.
____________________
| one | two |
| | |
| |______|
| | three|
| | |
...
18
votes
3answers
29k views
Set margins in a LinearLayout programmatically
I'm trying to use Java (not XML) to create a LinearLayout with buttons that fill the screen, and have margins. Here is code that works without margins:
LinearLayout buttonsView = new ...
18
votes
4answers
362 views
Why is the W3C box model considered better?
Why do most developers consider the W3C box-model to be better than the box-model used by Internet Explorer?
It's very frustrating developing pages that look the way you want them on Internet ...
17
votes
7answers
13k views
CSS horizontal table cell spacing: how?
Hopefully this is an easy one but I have not found a solution. I want to put space between columns on a table.
Example
| Cell |<- space ->| Cell |<- space ->| Cell |
An important ...
17
votes
7answers
9k views
Rails check if yield :area is defined in content_for
I want to do a conditional rendering at the layout level based on the actual template has defined content_for(:an__area), any idea how to get this done?
16
votes
2answers
8k views
Simple example of <merge> and <include> usage in Android XML-layouts
I'm curious about the <merge> and <include> tags in Android XML-layouts. I've read two tutorials, but haven't yet found a simple example usage.
Would be happy if someone could provide ...
16
votes
6answers
14k views
(Android) How do I prevent an EditText from resizing itself when the user is typing?
I have an EditText and a button set next to each other on the same horizontal line. It looks great, except when the user enters a lot of text, the EditText is resized, and the button is squished.
I ...
15
votes
1answer
5k views
How do I specify different Layouts in the ASP.NET MVC 3 razor ViewStart file?
I would like to have 2 separate Layouts in my application. Let say one is for the Public section of the website and the other is for the Member side.
For simplicity lets say all the logic for each ...