layout

Vertical text alignment alongside images

When I put an image inline in a table cell, like this: <table border="1" cellspacing="5" cellpadding="5"> <tr> <td> <img width="20" height="20">Text </td> <td> Text </td> </tr> </table> …it shifts the vertical alignment of the text in that cell, like this: I've played around with vertical-align, but haven't been abl...

Is it possible to use a ViewGroup for Empty ListView?

I have a ListActivity whose layout looks like <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent"> <ListView android:id="@android:id/list" android:cacheColorHint="@color/transparent" style="@st...

android - Using custom layout throws InflateException causing app to force close

I am using Eclipse and created HelloWorld and it works fine using emulator. Then I tried to create ToDoList app where you can enter text and click to submit, following the example on the book I have and getting an error that cause my app to force close when I interact with the application. my directory structure: (please ignore other fo...

Three column <DIV> navigation bar, based on center <DIV>'s width.

What I am trying to accomplish is a navigation bar that is center-aligned, padded on both sides with a left and right padding div. The actual navigation bar is currently an inline-block div containing my tags for links and a left and right transition image, which will lead into the background of the navigation bar to take up the remain...

Html: possible reasons why container div can be zero sized

I wonder why div elements sometimes are zerosized while containing html layout. I want to set background-color but in vain. I use firebug to investigate layout and notice that some divs are empty. For example this dirty HTML (attribute values are omitted by ...) has div that is zerosized: <div id="..." style="background-color:#f...

Column div float issue

I'm trying to create a two column layout. the left column contains a list of links. The right column contains the main content, which consists of a list of paragraphs with images. For each item, the paragraph should be to the left of the image. Items are separated by horizontal lines. My issue is that no matter where I put a clear float,...

Ruby on Rails - Layout and Links

Hi All, new to Ruby so I'm still getting to grips with some of the Rails framework and how it relates. I've got a question about why my project behaves in a certain way. I've created a basic layout, header the top of screen, side menu on the left, and a contents page for the main area. Nothing flash, bog standard as you can see from th...

Setting VerticalAlignment property to all controls

My WPF UserControl contains two stack panels and each of them contains labels, text boxes and radio buttons. I would like to set VerticalAlignment property to Center to all controls in my UserControl with as little code as possible. Now I have following solutions: brute force - put VerticalAlignment="Center" in each control define o...

ASP.NET sequential layout problem

Hi, This is a bit hard to explain. I have a website with a lot of links to other webshops, each of these webshops are grouped by a category. I want to make an "efficient" layout, saving screen real estate. I have tried using a listview/gridview but it seems to use too much space when there are only a few items below each category. All my...

SpringLayout works on Windows 7 but not NetBSD?

I am making a GUI using SpringLayout using the following code: private void createAndShowGUI() { frame = new JFrame("A GUI"); frame.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE); frame.setResizable(false); Container contentPane = frame.getContentPane(); SpringLayout layout = new SpringLayout(); cont...

How to create page layout in sharepoint 2010 wss? please help

How to create page layout in sharepoint 2010 wss? please help ...

How to know when activity is laid out?

I've got a mapview that I want to put some markers on top of. I'll retrieve these from a webservice when I start the activity, so I need to know the minimum and maximum lat/lng pairs for the current viewport. I'm calling mMapView.getWidth() mMapView.getHeight() But they both return 0 while the activity is starting. I tried putting it...

Div gets too wide when 1 column is removed

I'm doing Wordpress theme based on layout that wasn't done by me. The layout originally contains 3 columns, and works fine. But when i try to remove one column to get 2-columns for content pages, the layout broke, and the #keskimain gets from some reason 2px too wide. http://tietojohtajakilta.net/wordpress/2-col-test/ What's the rea...

CSS Positioning - Top and Right

I'm creating a div which has to have a close button in the upper right corner just like in the image The first image was made in photoshop. I'm trying to do the same but with CSS. "Fechar" is the close button (in Portuguese). What is the better way to properly position it without workarounds, with clean CSS and Web Standards? Here is ...

Is it possible to import Photoshop PSD to Expression Blend to fill in an existing layout structure?

I need to create a fairly complicated layout for a widget in Expression Blend, with the visual design not yet set to stone, while having fairly refined functional wireframes. So I started to lay out the UI controls and choosing layout structures based on the wireframes, but as far as I have seen so far while experimenting, PSD files wil...

Custom View not appearing

Here is the XML for the layout in which I want my custom view to appear. <?xml version="1.0" encoding="utf-8"?> <RelativeLayout android:id="@+id/widget273" android:layout_width="fill_parent" android:layout_height="fill_parent" xmlns:android="http://schemas.android.com/apk/res/android" xmlns:rs="http://schemas.android.com/apk/res/com.boo...

Scrollable TableLayout & Column Headers

I am trying to create a basic datasheet in my application using a TableLayout. The first row contains the titles of each column. Every row thereafter is data. I would like the data to be scrollable while keeping the first title row visible (i.e. the first row would not scroll with the rest). I have tried something like the following (un...

Java's FlowLayout does not resize correctly

I created a JFrame initialized with a BorderLayout and a JScrollPane as its CENTER element. The scroll pane is set with VERTICAL_SCROLLBAR_ALWAYS and HORIZONTAL_SCROLLBAR_NEVER policies. The intent of my frame is to have a controlled width, while the height should grow/shrink as data is added/removed. Inside my scroll pane, I added a ...

Jquery UI Layout - Resize while resizing?

Hi, in this example http://layout.jquery-dev.net/demos/toggle_alternate_layouts.html you can see that the resize is "on the fly". I think it is the option "resizeWhileDragging: true" but it dont work in my example -> http://jsfiddle.net/FrbW8/28/ My Problem is that i cant find any documentation about his (myabe i am too blind :) ) ->...

Layout issue - how to start an activity without moving certain UI elements?

I'm trying to implement tab buttons bar and a navigation bar in my android application. The problem is, that I would like the navigation elements to persist. When starting a child activity, the nav bar moves. How can I make these two elements "non-movable"? ...