align

Android XML - how to get items aligned far left, center, and far right

Hi, I have this XML code which generates a button, a textview and another button, How do I go about getting the button to appear in far left, the textview in the center and the last button on the far right? < ?xml version="1.0" encoding="utf-8"?> < LinearLayout android:id="@+id/LinearLayout01" android:layout_width="fil...

How do I get my text to be direction from right to left without using a p tag?

I have a dynamically appearing div on a page. I would like to be able to hide the div with a button at the top right corner of the div. One way I have found to do this is to use a p tag, like so: <p dir="RTL">button</p> If this is the first line of HTML within the div, it will put the button in the upper right hand corner of the div. ...

Clone existing structs with different alignment in Visual C++

Is there a way to clone an existing struct with different member alignment in Visual C++? Here is the background: I use an 3rd-party library, which defines several structs. To fill up the structs, I pass the address of the struct instances to some functions. Unfortunately, the functions only returns unaligned buffer, so that data of so...

Div horizontal aligning, one fixed, one adaptive

Hello everyone. I would like to create a vertical splitted site structure using two divs: My intention is to have d2 next to d1 in a horizontal align structure (same line). What i get is not this. In fact using that code, d2 does not take the remaining space, but collapses to the min width. if I use WRONG because d2 goes down ...

3 div independently relative and top aligned

How to (top) align 3 div that should be relative to a previous div (but not between them)? I can't use floats or position:inline-block (if you set display:none on 2 divs the last one shouldn't move). position:absolute neither because there's a relative footer underneath. vertical-align:top doesn't work using spans - any workaround? I t...

Java Box Class: Unsolvable: aligning components to the left or right

I have been trying to left align buttons contained in a Box to the left, with no success. They align left alright, but for some reason dont shift all the way left as one would imagine. I attach the code below. Please try compiling it and see for yourself. Seems bizarre to me. Thanks, Eric import java.awt.Dimension; import java.awt...

preventing unaligned data on the heap

I am building a class hierarchy that uses SSE intrinsics functions and thus, some of the members of the class need to be 16-byte aligned. For stack instances I can use __declspec(align(#)), like so: typedef __declspec(align(16)) float Vector[4]; class MyClass{ ... private: Vector v; }; Now, since __declspec(align(#)) is a compilation ...

How to set "Align left" to have predominance over "Align Top" in Delphi 7?

I want to align a certain component to Align=alLeft on the panel, occupying the whole left side of the panel. Then also have another component set to Align=AlTop, but not having predominance over the component aligned to the left, so that it will only occupy the top of the panel where the component that is aligned left is not occupying. ...

Can't get a menu nav to align right

Hey all- Something is strange with my CSS - I'm still picking up the basics so if someone can help that would be great! I want the navmenu on this link text to align to the right of the site - Doe's anyone know which tag I should be editing? The Ul/Li of the drop down menu has me confused! ...

How to change the positioning of a progress dialog?

I'm developing an android app and need to know how to change the positioning of a progress dialog. I need it to be positioned at the bottom of the screen instead of at the center like it is by default. ...

Image gallery in UNITY3D

Is it possible to create an Image gallery similar to this : http://www.west-wind.com/rick/photoalbum/demoMaui2006/Default.aspx?Admin=true using Unity3d. I know it is possible to click, drag images and save them using jQuery. But is there a way to create images dynamically in Unity3d and then load, move, drag and save them? If that sound...

How to align the text in a wx.ListBox using wxPython?

Hello, I want the text of the ListBox to be centered, is that possible? Thanks in advance :) ...

UITableView navigationController Section Index align after Navigation Header

In a Section Indexed UITableView how do you make the title of the section chosen (by pressing the Section Index) align *not* at the very top of the screen (under the navigation controller) but rather flush after the Navigation Bar Header at the top? like this: [button] Navigation Bar Header at top of screen [other button] X (section l...

How to align footer (div) to the bottom of the page?

Hello. Can anyone explain how to align a footer div to the bottom of the page. From the examples I've seen, they all show how to make the div stay visible at the bottom, no matter where you've scrolled the page. Although I don't want it like that. I want it fixed at the bottom of the page, so it doesn't move. Appreciate the help! ...

WPF/Silverlight Tree - How do I make all nodes from a tree to be aligned?

Hi guys, What do I have to do with a Tree in WPF/Silverlight, to have all nodes aligned ar the same level? I mean I need the root and all childs to be align at the same distance from the left side of the screen. Is that possible? Actually I am using a Telerik Silverlight RadTreeView. Any help is welcomed, Thanks ...

Centering a table in Firefox

I've got a small table on one of my pages and I'd like it centered so have coded which works fine in IE but the table still left aligns in Firefox. if i use text-align:center n align:-moz-center its not working in IE What do I need to change to get the table to center in Firefox?n If i should use -moz-center how to make it work in I...

Emacs align-regexp working with "="

Example code: f x | "s" == x = 1 | otherwise = 0 I can see the regexp as "match the equals sign when surrounded by whitespace characters". However, \s-+=\s-+ doesn't work (\s-+ is the pattern for 1+ whitespace) because it ends up inserting an extra space before the equals sign. I need a pattern that says "match empty string when t...

Python wxPython how to align 2 toolbars on same the row, one aligned left and one aligned right!?

Hello. I use wxPython to sketch up a user interface for the a python program. I need to put 2 toolbars on the same row. One toolbar is on the left while the other is on the right. I use BoxSizer to achieve this (by putting a stretchable space between 2 toolbars) However, the stretchable space produces a blank space between 2 toolbar...

LaTeX align stacked summation

I am writing an elementary summation proof and would like to write that 1 + 2 + 3 + ... + n-2 + n-1 + n + n + n-1 + n-2 + ... + 3 + 2 + 1 = n+1 + n+1 + n+1 + ... and so on. I want the symbols to line up so that it's easy to see the vertical addition. How do I do this in LaTeX? The align environment doesn't do so well with multipl...

What is the correct usage of 'align' vs 'text-align'

I am trying to figure out the difference between putting an align attribute on a table cell vs using text-align css attribute. The code below shows different results in IE vs Others. In IE, the align ends up aligning every sub child, so the text 'test' is centered aligned, while in FF/Webkit this is not the case and it remains left align...