Tagged Questions
Linear Layout is one of the UI design templates in Android. This Layout is straight forward free flowing representational layout, with customizable orientations of Horizontal or Vertical.
39
votes
4answers
27k views
frequent problem in android view, Error parsing XML: unbound prefix
I have frequent problem in android view, Error parsing XML: unbound prefix on Line 2.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:orientation="vertical" ...
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 ...
10
votes
1answer
3k views
Android: ClassCastException when adding a header view to ExpandableListView
I'm trying to add a header to an ExpandableListView like so:
headerView = View.inflate(this, R.layout.header, null);
expandableListView.addHeaderView(headerView);
expandableListView.setAdapter(new ...
8
votes
4answers
9k views
Scrolling with Multiple ListViews for Android
I'm completely stumped on this one. I have three different lists that need to be displayed on the screen. It's completely possible that the lists will extend past the bottom edge of the screen, so I ...
7
votes
1answer
1k views
How to get ad to show at bottom of screen without overlap
I have an admob ad banner which I'd like to put at the bottom of my screen, and have the rest of the content resize to fill the available space when the ad loads in. I see the exact thing I want ...
7
votes
3answers
12k views
Android, LinearLayout scroll
I have lot of items on the screen, and I need to use Scrollbar so the user can go down, But the scroll is not visible, How is posssible to addd scrollbar to a liniearlayout?
7
votes
1answer
3k views
Android LinearLayout fill-the-middle
I have a vertical, set height (300px) LinearLayout (LL) with 3 nested LLs. 1 and 3rd are set with android:layout_height="wrap_content" and the middle one with android:layout_height="fill_parent". To ...
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
972 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 ...
5
votes
1answer
756 views
How do I use a compound drawable instead of a LinearLayout that contains an ImageView and a TextView
Ran the new Lint tool against my code. It came up with a lot of good suggestions, but this one I cannot understand.
This tag and its children can be replaced by one and a compound drawable
...
5
votes
3answers
6k views
Problems understanding Android XML layout_weight
I really tried to, but I can't understand how Android interprets layout_weight setting...
What I'm trying to archieve is
a header on top with a fixed height
an input area at the bottom containing ...
5
votes
1answer
2k views
Custom Widget using LinearLayout not getting onDraw()
I'm creating a custom widget by extending LinearLayout:
public class MyWidget extends LinearLayout {
private static Paint PAINT = new Paint(Paint.ANTI_ALIAS_FLAG);
static {
...
5
votes
3answers
11k views
Android: Add a textview to linear layout programmatically
I am trying to add TextViews to my xml-defined layout in code.
I have a xml-sheet, where a lot of Views are defined. But I have to add some views in code, so a create a LinearLayout in the xml-sheet:
...
4
votes
1answer
679 views
How can I position a layout right above the android on-screen keyboard?
See the attached photo. Twitter does it well. They have a layout, which I will call a toolbar for lack of a better term, right above the onscreen keyboard. How can I do this with my code?
UPDATE:
...
4
votes
1answer
736 views
Android: Horizontal scrollview with three linear layouts
I want to create an activity with a horizontal scrollview. The content of the scrollview will be three different linearlayouts. Each of these linearlayouts should take up a full width of the device ...
4
votes
2answers
2k views
Android: Add two text views programmatically
I am trying to add Views to a linear layout programmatically.
LinearLayout layout = (LinearLayout) findViewById(R.id.info);
String [] informations = topOffer.getInformations();
...
4
votes
1answer
1k views
Adding a CheckBox to ListView item prevents it from being able to receive ItemClick
In the Adapter for the ListView, I return a LinearLayout, in which I add a Checkbox, a ImageView and a TextView. This basically constructs a ListView, in which each item contains a Checkbox, a ...
3
votes
1answer
77 views
Problems aligning ImageButton within LinearLayout?
This is my code:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:id="@+id/LinearLayout01"
android:background="@drawable/game_background"
android:weightSum="100"
...
3
votes
4answers
441 views
Adding a view to a LinearLayout at a specified position
I have the following main.xml file with a LinearLayout
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
...
3
votes
4answers
206 views
LinearLayout - Vertically not align
I got a problem with LinearLayout on Android. I have four buttons. Each button has a fixed size, but the text can vary in length.
My problem is that they are not align with the top of each. They seen ...
3
votes
1answer
574 views
Android + setDividerDrawable on a LinearLayout?
I'm interested in adding dividers to a LinearLayout's children dynamically. I see in the docs that LinearLayout contains a CONST "SHOW_DIVIDER_MIDDLE" along with get and set divider methods. Can ...
3
votes
2answers
253 views
How to align EditText cursor properly?
I have an edit text with a 200sp size. The cursor appears in the middle. How can I make sure the cursor appears in the left corner? It looks odd being in the center.
<?xml version="1.0" ...
3
votes
1answer
237 views
Android layout_weight comportment
I am trying to build an android layout using layout_weight to fit all sizes of devices and I have some trouble understanding its comportment.
I noticed that changing the layout_width/layout_height ...
3
votes
3answers
314 views
Image stretching
API 7 (2.1)
I'm implementing high resolution images for the drawable-hdpi folder of my app.
Along the bottom of my screen I have a LinearLayout with a fill_parent width. Inside, I have 3 ...
3
votes
1answer
467 views
Android Emulator doesnt Scroll down
I am creating a layout as follows and when i emulate it in the AVD. It doesnt Scroll down to see the conten below the fold.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout ...
3
votes
2answers
297 views
LinearLayout - How to get text to be on the right of an icon?
Bit of a newbie when it comes to android, only been working on it properly for a few days but even after all the searching I've done im stumped and nobody seems to know how to help me. I have this so ...
3
votes
2answers
288 views
Android linearLayout problem
This is my first post here, I was stuck with linearlayout, I have linearlayout(horizontal) with 3 buttons in it of which I set the third button layout_weight=1 so it takes up the whole space in ...
3
votes
1answer
4k views
Scrollable layout in Android
I have a registration form in a LinearLayout as shown below:
When emulator screen is in it's default position it is working fine. But when I rotate the emulator screen it only displays the elements ...
3
votes
1answer
3k views
how can i automatically size listview so it doesn't scroll
currently i have the following layout
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
...
3
votes
2answers
638 views
New to Android: Dynamically changing views
I'm trying to learn how to build apps for Android.
The first simple app, which will become a component of a bigger app I hope to build, is to have a button on the screen where, when tapped, it adds ...
3
votes
3answers
5k views
How to get an Android widget's size after layout is calculated?
I have a layout which specifies sizes of widgets in relative dimension, for example:
<LinearLayout ... layout_height="fill_parent">
<ImageView ... layout_height="wrap_content" />
...
2
votes
2answers
90 views
How to programmatically add ImageView in LinearLayout without extra spaces?
I am trying to add ImageView programatically inside a LinearLayout, which has vertical orientation. My layout file is describe as the xml below:
<?xml version="1.0" encoding="utf-8"?>
...
2
votes
2answers
48 views
I'm tryng to set up a view with a background image and a slider
I also want to be able to change the image programaticaly so that I can attach a listener and change the image at specific points. I'm at the early stages of this and I'm having trouble setting up the ...
2
votes
1answer
59 views
display data from another activity to another. from class to array list to linearlayout dynamically [closed]
The code for each part is displayed below.
This is the class wherein the arraylist gets its data from
package kfc.project;
public class Product {
String name;
int servingSize;
int ...
2
votes
2answers
39 views
Android: Layout List header
I have a header for a list that contains two image buttons. I want one of those image buttons to be on the left, and the other to be on the right. This is what my xml file looks like right now but it ...
2
votes
2answers
185 views
CSS “float:right” property equivalent in LinearLayout on android?
On CSS we can write :
<div style="float:right"> Text1 </div>
<div style="float:right"> Text2 </div>
by this way Text1 will appear on the right ..
I'm trying to do the same ...
2
votes
1answer
130 views
Custom LinearLayout width - weight placing problem
I asked another questıon and after, I continued to this problem...
Firstly My first Question: how to Custom Button (has two TextFields) on Android
I extended a class form LinearLayout, and I add two ...
2
votes
1answer
333 views
Transparent LinearLayout with buttons (Android)
I'm trying to make a menu with buttons, and my problem is that i want this menu to be over a camera view (I'm working on Augmented Reality).
But if I make my menu appear it makes the background black ...
2
votes
1answer
148 views
Android linear layout override onSaveInstanceState
I have several custom components which extends LinearLayout.
Now I want to save/restore their state when screen orientation changes, but I can't do it from activity's ...
2
votes
1answer
1k views
Android: How to Programmatically set the size of a Layout
As part of an Android App I am building a button set. The buttons are part of a nested set of LinearLayouts. Using weight I have the set resizing itself automatically based on the size of the ...
2
votes
2answers
348 views
Nest TableLayout inside LinearLayout - is it possible?
I want to produce an Android screen layout that looks something like the following:
Label Text Field
Label Text Field
Label Text Field
-----Button-------
-----TextField----
That is, I want ...
2
votes
1answer
182 views
how to make a linear layout horizontall scrollable
My application containing different layouts.one of them is a linear layout.it's content is dynamically adding.i want to make this layout horizontally scrollable.for this i have put my layout in a ...
2
votes
1answer
217 views
Android: Layout problem for a listview
I'm trying to add a title to my the elements of my listview. Right now all the information is populated from a static array which consists of several elements but basically now is an Image followed by ...
2
votes
2answers
67 views
How to strench child elements in LinearLayout
I have LinearLayout, and I am trying to make the child elements to be 100%.
so far I have this
[E1] [E2] [E3]
while I want them to be
[E1]
[E2]
[E3]
what properties should I change?? I ...
2
votes
2answers
139 views
Button not appearing in my Linear Layout
I have a button inside of a LinearLayout that is oriented vertically. Not sure why the button doesn't show up?
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout ...
2
votes
1answer
440 views
Make linear layout selectable like a list item in a list view (Android)
I know how to add an onClick listener to a LinearLayout to make the whole layout a click target, but I'd like to have the LinearLayout get highlighted when tapped just like a list item in a list view. ...
2
votes
1answer
102 views
LinearLayout in Square Form
is it possible to have a LinearLayout inside a LinearLayout with equal height and width dynamically? i don't want to specify the values, just that the height is the same size of the possible width.
...
2
votes
3answers
250 views
how to add views to linear layout?
It is possible to add views to Linear Layout one after another in upward direction.
if any one working on that,please help me
Thanks in advanse
2
votes
3answers
176 views
Unexpected behaviour while clicking a button contained in a custom LinearLayout
I have a problem with a custom LinearLayout I'm creating for an application. Basically, the LinearLayout contain items, each item is a horizontal LinearLayout which contains a TextView and a Button. ...
2
votes
1answer
185 views
How to lay out 3 buttons above 4 buttons, centered?
I need to lay out a centered row of 3 buttons above a centered row of 4 buttons:
+------+ +------+ +------+
| | | | | |
+------+ +------+ ...