A Layout where the positions of the children can be described in relation to each other or to the parent.
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 ...
...
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 ...
19
votes
1answer
5k views
Defining Z order of views of RelativeLayout in Android
I would like to define the z order of the views of a RelativeLayout in Android.
I know one of doing this is calling bringToFront.
Is there are better way of doing this? It would be great if I could ...
11
votes
4answers
5k views
How to get RelativeLayout working with merge and include?
I have been trying for a few days now to make my layouts more efficient by converting from using several levels of nested LinearLayouts to one RelativeLayout and have come across a few problems that I ...
8
votes
2answers
6k views
How to programmatically set the layout_align_parent_right attribute of a Button in Relative Layout?
HI!
I have a relative layout which I am creating programmatically:
RelativeLayout layout = new RelativeLayout( this );
RelativeLayout.LayoutParams params = new ...
7
votes
3answers
2k views
android relative layout below 2 items
i have a relative layout like this:
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
...
7
votes
2answers
4k views
Android's RelativeLayout seems broken
I'm working on a layout where I use a ListView with RelativeLayout line items. The lineitems themselves are not displaying correctly.
The issue is that the txtVideoDuration TextView is drawn at the ...
6
votes
2answers
157 views
rotating a layout and after placing in relativeLayout prblem
I need to rotate a layout( has a TextView and ImageView) and it should be placed align right and top in RelativeLayout. I create my layout, this layout is placed right-top. But if i rotate it i cant ...
6
votes
3answers
10k views
How to set RelativeLayout layout params in code not in xml
For example I want to add 3 button on screen one align left, one align center, last one align right
How can I set their layout in code, not in XML?
6
votes
1answer
2k views
Scale background image to wrap content of layout
I have a layout that contains some text fields and has a background image that's displayed at the top of my activity. I'd like the background image to scale to wrap the content (don't care about ...
6
votes
1answer
984 views
Android: Is a RelativeLayout more expensive than a LinearLayout?
I've always been using RelativeLayout everytime I needed a View container, because of it's flexibility, even if I just wanted to display something really simple.
Is it ok to do so, or should I try ...
4
votes
2answers
187 views
RelativeLayout: align view to child of sibling viewgroup
I'm trying to make a tab bar in android using a RelativeLayout and a RadioGroup that has an indicator which will slide to indicate the active RadioButton within the RadioGroup.
These are customized ...
4
votes
3answers
1k views
Setting up RelativeLayout in java code
I'm having a hard time getting two text views to appear on top of each other in my java code. Here's the code I'm experimenting with:
/** Called when the activity is first created. */
@Override
...
4
votes
2answers
4k views
Programmatically creating a RelativeLayout in Android
I'm adding two buttons to the UI, but they appear on top of one another. I want them to appear next to each other. What am I missing in this code?
m_btnCrown = new ImageButton(this);
...
4
votes
3answers
1k views
RelativeLayout differences between 1.5 and 2.1
I've got a ListView with items composed of RelativeLayouts. This is the relevant XML from the list items:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
...
4
votes
3answers
2k views
Android RelativeLayout fill_parent unexpected behavior in a ListView with varying row heights
I'm currently working on a small update to a project and I'm having an issue with Relative_Layout and fill_parent in a list view. I'm trying to insert a divider between two sections in each row, much ...
3
votes
2answers
68 views
+250
RelativeLayout causes animation not to work?
I have an activity whose layout only contains a VideoView. Here is the xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
...
3
votes
3answers
222 views
Relative Layout fill_parent issue
First of all, I am new to Android development so this might be a simple issue but I really can't get it working.
I have the following layout.
<?xml version="1.0" encoding="utf-8"?>
...
3
votes
1answer
261 views
Adjusting dynamic size of layout in Android
In an Activity with a lot of components, I have a RelativeLayout that have a WebView (it shows a simple text, that I don't know his size).
This is the xml code:
<RelativeLayout ...
3
votes
2answers
129 views
Laying out subviews in a layout programmatically
I'm trying to layout views in a relative layout on a tablet, much like a bookshelf. There will be so many across, then a new row is created.
My initial state looks like this:
<ScrollView
...
3
votes
2answers
232 views
android: fill_parent of child view fills screen
I'm trying to replicate a spinner control (please don't ask why) I'm struggling with the divider. The fake spinner looks fine until I add the divider to the left of the imageview. Once I add the ...
3
votes
1answer
368 views
Align checkbox inside a relative layout
I have gridview and I load an image in the grid and a check box to select that image. I use a .9 image as background to show borders for each image. The image and checkbox are inside a relative ...
3
votes
2answers
226 views
How do I enforce a circular reference in a RelativeLayout?
I have two widgets within a RelativeLayout that must reference each other. Technically it is not a circular reference since the widget A is vertically aligned with widget B and widget B is ...
3
votes
1answer
909 views
How to set layout property from code
How can I set the property of an TextView which comes under a RelativeLayout from the code.
Here s my layout:
<RelativeLayout
android:id="@+id/team_left"
...
3
votes
1answer
940 views
Android: EditText not filling ScrollView and RelativeLayout
I have been trying to wrap my editText with ScrollView to auto scroll it when the content is updated. I found the problem that the EditText wont cover the entire scroll view even with both width and ...
3
votes
1answer
967 views
Android Problems Converting ViewGroup with Children into Bitmap
I'm successfully converting a ViewGroup (RelativeLayout) into Bitmap using a Canvas. However, when the draw happens I only see the ViewGroup with its background drawable and not its children (two ...
3
votes
2answers
3k views
Dynamically adding content to RelativeLayout
Since I'm still just learning Android (and it appears Amazon says it'll be 2 months till I get the Hello, Android book) I'm still playing around with doing simple things. I have no problem getting an ...
3
votes
2answers
5k views
How to show empty view when ListView is empty?
Here is my layout.
For some reason the empty view (TextView in this case) always appears, even when the List is not empty. I thought the ListView would automatically detect when to show the empty ...
3
votes
2answers
1k views
How do I achieve the following result using RelativeLayout?
Pictures: http://img838.imageshack.us/img838/1402/picse.png
How do I make the layout in Pic. 2 using RelativeLayout ONLY. Below is the xml layout of the first screenshot.
<?xml version="1.0" ...
3
votes
1answer
4k views
View overlapping with RelativeLayout on Android 1.5
I am having a problem with views overlapping in a RelativeLayout on Android 1.5... Everything is working fine on Android 1.6 and above.
I do understand that Android 1.5 has some issues with ...
3
votes
3answers
4k views
Android TableRow RelativeLayout Issue
I have the following
<TableRow xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/admin_row"
android:layout_width="fill_parent"
...
2
votes
5answers
61 views
How to put several text views over and image view in android?
I want to achieve following effect in my android app:
As background I use a nine-patch png image. I tried it like this with just one text view
<ImageView
android:id="@+id/myImageView"
...
2
votes
3answers
81 views
Can't support multiple screen resolution
I'm struggling to finish my Android app, but I'm having some problems with the UI. My problem is very basic, I've developed the UI using the default AVD when using AVD manager in Eclipse (HVGA, with a ...
2
votes
1answer
403 views
RelativeLayout “Couldn't resolve resource…” Android
When using the below code, I get an error "Couldn't resolve resource @id/item1" Why is this? id/item1 is added before I use it, so I'm not sure why this is coming up.
<?xml version="1.0" ...
2
votes
1answer
94 views
Accessing attrs in AttributeSet for custom components
I've got a custom component containing two TextViews that have a custom size-setting method on (the two text views are proportional by about a 1:2 ratio). Being that this is a subclass of ...
2
votes
4answers
89 views
Overlapping ImageView in RelativeView
As my code below shows, I've two ImageView that I would like to overlap but the bigger is systematically put below the smaller one, both is android:layout_alignParentTop set "true", I thought that ...
2
votes
3answers
167 views
Using a ScrollView on RelativeLayout that contains an ExpandableListView
I've got this RelativeLayout I am using:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
...
2
votes
1answer
118 views
two or more nested RelativeLayout
I want to ask, working with two or more nested RelativeLayout.
First code looks like picture 1, When I add android:layout_alignParentRight="true" in second RelativeLayout, this looks like picture 2. I ...
2
votes
2answers
177 views
android: reuse a RelativeLayout in XML by inflating it at run time?
Edition of question
It is already in a separate xml (tablet_shortterm_column.xml) see above.
Anyway, it seems logcat complains that rlo_shortterm_col already has a parent, so it won't allow an ...
2
votes
0answers
41 views
Controlling problem in android layouts
I tried to show new view on the center of relativelayout.
But the new view always places on the top of screen.
LayoutInflater inflater = (LayoutInflater)this.getSystemService("layout_inflater");
dest ...
2
votes
3answers
126 views
RelativeLayout issue - image overlaps ScrollView
I read all the relative layout questions already posted and I guess I'm note double asking, sorry if I am.
I'm trying to stick an image in the bottom of my app, and above is I have a scrollview, like ...
2
votes
1answer
183 views
Android: How do I add a footer to a fullscreen scrollview?
I want the footer to be anchored at the bottom of the screen if and only if it can be anchored there without overlapping any other views.
The problem is that I don't know how many views are going to ...
2
votes
3answers
465 views
Relative Layout, SlidingDrawer and ListView
I am trying to build a ListView Activity with a toolbar at the top. The rightmost tool in this toolbar will be a handler to a horizontal SlidingDrawer which will provide a sliding EditText on top of ...
2
votes
3answers
614 views
Layout positioning problem with Custom SlidingDrawer
Hi everyone i've been trying to make this work for quite a while and i feel stuck, i found a component on web wich is pretty nice, it allows me top to bottom sliding, the default sample is pretty easy ...
2
votes
0answers
208 views
GLSurfaceView overlaps other views
I've got a programmatically-created layout, where when my app gets ads, it'll show an admob view, pushing my existing GLView down and resizing it.
However, although it initially seems to be pushing ...
2
votes
1answer
87 views
Android - UI actionbar gets skewed on a tablet
I am looking to develop an app with an actionbar that will work on all sizes of screens. I have a RelativeLayout which does it. If I specify height as 50, it appears larger and stretched on tablet ...
2
votes
1answer
98 views
Trackball not working inside my Relativelayout
Here is my layout xml.
I am using custom background. xml which i attached below this code.
now my problem is iam not getting focus on button when i use trackball.please help me..
settings.xml
...
2
votes
1answer
249 views
RelativeLayout with ImageView on the right and 3 text views to the left of the image, one below another
I'm trying to use a RelativeLayout to display an image on the left side, and 3 text views, one below another, to the right of the image. Similar is explained here: ...
2
votes
1answer
477 views
TextView color change on focus/press
I have a some ui widgets including textview inside RelativeLayout which is clickable. My problem is textview text color does not change when relativelayout gets focus although I have set textview ...
2
votes
1answer
62 views
Is there a way to make eclipse detect your custom view as its parent layout?
I've created a custom view extending RelativeLayout, and added its complete name in an xml layout file,, Its working fine I am just asking is there a way to make eclipse detect my parent layout as a ...