LinearLayout is one of the basic layouts in Android which arranges its children one after the other, horizontally or vertically.

learn more… | top users | synonyms (1)

0
votes
2answers
21 views

Scrollview can host only one direct child

I have multiple LinearLayouts with a combined height that easily exceeds a device's screen height. So in order to make my layout scrollable, I tried adding in a ScrollView, but unfortunately I get the ...
0
votes
1answer
18 views

Layout weight is not fit, it change every input

I have a spinner, an edittext and a button in a horizontal linearlayout. When I have enter something into edittext, it increase every character and others decrease. There is an eanough blank area ...
3
votes
1answer
19 views

NullPointerException when using .addView to ViewGroup

I'm trying to use .addView to add another LinearLayout to the ViewGroup. I am getting the following error: 05-21 16:23:04.096: E/AndroidRuntime(2086): FATAL EXCEPTION: main 05-21 16:23:04.096: ...
0
votes
1answer
22 views

Crashing when trying to add buttons to a layout dynamically

I've been searching how to add buttons dynamically and keep finding the same or very similar solution but it just refuses to work with me. Whenever I run the app it crashes instantly and I am unsure ...
0
votes
2answers
22 views

Android Linear Layout and Variable number of Buttons

I have a linearlayout and have to inflate variable number of buttons at runtime in this Linearlayout. Now my problem is that when I give Orientation for this linear layout. if I give it Horizontal or ...
2
votes
1answer
53 views

Not removing particular item in Arraylist

I have a EditText with ImageView Plus . On click of ImageView Plus I'm inflating new layout with EditText and ImageView Minus. Now, On Click of ImageView Minus. I want to remove the inflated ...
0
votes
2answers
26 views

how can I arrange my textViews with reference to screen size?

I have 15 textView elements and I want to align as one under the other. But when the screen size narrow, some textViews disappear. How can I arrange this? (I've been using RelativeLayout. If there is ...
3
votes
1answer
31 views

How do I create child views with elements inside?

I came across this video by google that demonstrated animated transitions with the creation of child views by using onClick to add or remove the child view. As part of the learning process: I took the ...
0
votes
1answer
20 views

Building a simple Group Chat View in Android

I'm building a very simple online chat room App. What I have achieved is something like below right now: Robert:blah.. Tom: yes blah.. David(You): That sounds cool! Lily: Do you know blah... ...
0
votes
2answers
37 views

How do I remove extra space above and below the imageview?

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:background="@color/light_grey" ...
1
vote
2answers
54 views

LinearLayout not rendering

I want to create a login screen. I want to have the heading at the top, leave some white space and then have the user name and passwords each in one line. Then, I want to leave some more white space ...
0
votes
1answer
28 views

Make a mask on a LinearLayout

I need to make a mask on an HorizontalLinear Layout. the mask must blear (sfumate) the layout at right and left. In the layout i'have 5 picture, tha can scroll horizontally Have any idea?
1
vote
2answers
38 views

Swipe between two layouts overlapped on each other in Framelayout

I want to swipe between two linear layouts which are wrapped in frame layout. At one time, only one of the linear layout is visible. I am using button to show/hide them. I want to implement swipe ...
0
votes
1answer
66 views

Align views on LinearLayout programmatically

I am developing a ListView UI after parsing a json, We are looking for a template based solution to list row where each list row might have different-2 field and their alignment which will be driven ...
0
votes
0answers
31 views

starting another activity causes “unfortunately <app name> has stopped” error on some devices

I'm new in android programming and have a question: Is it possible not setting android:id attribute for a android layout(LinearLayout) which has it's specific activity resource causes ...
0
votes
3answers
23 views

adding multiple layout dynamically android

I want to add text view dynamically when clicking a button . I have implemented this but when adding it over writing the previous one.Anything wrong on my code ? imGbtn.setOnClickListener(new ...
0
votes
3answers
33 views

Strange layout of my textview

On my view I want a small piece of space reserved for a title. Beneath that there must be a textview filling the remaining space. This is how my layout looks like: <?xml version="1.0" ...
0
votes
2answers
41 views

How to center a RatingBar in Android

I have created a custom RatingBar as described in one of the tutorials given here on stack-overflow and it's looking great, the problem is with the centering of the image. here is what I've got: As ...
2
votes
1answer
25 views

Set a Margin between two buttons programmatically from a linearlayout

How can i set a margin of 20dp between the button "regler" and "decommender" programmatically. Here is my workings LinearLayout lytmain = new LinearLayout(Mcontex); ...
0
votes
2answers
32 views

Query with layout

I have been working on layout lately. There are two image shown. First one shows what I need and Second one shows what I get. Can anybody suggest me how to achieve this with LinearLayout. And when ...
2
votes
2answers
33 views

Making the textSize adjust to the EditText

I have this code: <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" ...
0
votes
1answer
32 views

Android layout “3 columns” imageview + textview + imageview

Maybe a simple question, but i'm trying to achieve such layout with a LinearLayout: ImageView TextView ImageView ----fixed width--- + ---------- fill ...
1
vote
4answers
36 views

what is the similar of linear layout in ios

I have many components in my view controller, and I want to combine them in a single object to scroll them together, what is the procedure to do it (like linearlayout in android) but I need it in IOS. ...
0
votes
1answer
47 views

Android error: null ponter exception to an include

I have the following main.xml: ... <include android:id="@+id/msg" android:layout_width="fill_parent" ...
1
vote
2answers
25 views

setLayoutParams does not display things correctly

When I'm setting my layout parameters with xml, it works fine. But when I'm trying to set layout parameters programmatically, it works wrong. where did I failed? I need to set parameters in my ...
0
votes
0answers
29 views

How to compare the texts of textviews present in a Linear Layout in Android?

I have created textviews dynamically in a Linear Layout. I would like to compare the text in each textview with the remaining textviews so that duplicates do not occur. So for example, if I have 6 ...
-1
votes
1answer
34 views

Android Linear Dynamic Overlap Issue

I hope someone can help as i have just bout pulled all my hair out with this one I am creating an app that allows the users to take an order from the customer. To do this I want a button that people ...
1
vote
1answer
33 views

Android: why nothing shows up on screen?

and thanks for your help. I am trying to use a ViewAnimator tho show different views on screen. So: I create the VievAnimator, I add 2 Views (LinearLayouts in this case) to ViewAnimator, I set ...
1
vote
3answers
40 views

Android RelativeLayout Background Color

For a long time I am reading posts from stackoverflow because they are very helpful and google seems to think that also. Since yesterday I have a problem with a row in a ListView in Android. I want ...
1
vote
0answers
84 views

android: dynamic listview focus returning to first item every time after loosing focus from other item

I am using two list-view's list_A and list_B with same number of list items as shown in figure 1, where in list_B is custom array adapter with each item as list(string) creating the button dynamically ...
0
votes
2answers
32 views

Avoid duplication of ImageButton in Listview

I am a newbie in android & developing my first ever app of Personal Diary. Now I am having a problem in Listview, I have an Imagebutton in one layout which I want to behave like a header and I ...
-2
votes
0answers
47 views

Adding ImageView's at Runtime in Linearlayout [closed]

I want to add imageviews at run time how can do that ? LinearLayout linearLayout=new LinearLayout(this); linearLayout.setOrientation(LinearLayout.HORIZONTAL); LinearLayout.LayoutParams vp=new ...
0
votes
2answers
33 views

Android SDK: Button becomes colored when changing the background color on LinearLayout

I have a LinearLayout in an Android app I am creating now which contains a default button with gradient gray color. This LinearLayout is now white but when I try to change the background color to ...
0
votes
1answer
45 views

ScrollView not scrolling to the end of inner LinearLayout's bottom margin

I'm having issues with a Fragment consisting of a ScrollView containing a LinearLayout. I'm trying to create an effect where the LinearLayout has a white background and looks like a piece of paper ...
0
votes
2answers
35 views

Getting screenshot from a LinearLayout

I have a LinearLayout that contains a lot of sub LinearLayouts which contain TextViews. I want to get a screenshot from the parent LinearLayout to get a full view of my "Receipt". So I tried to do ...
0
votes
2answers
35 views

Custom view inherited from LinearLayout can not display

layout_main.xml: <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" ...
0
votes
1answer
27 views

align a table in different layouts?

I´m using 2 tables side by side in a LinearLayout and they´re both filling 50% of the screens width. Below that LinearLayout, there is a RelativeLayout with another table in it. Something like this: ...
0
votes
1answer
14 views

How to implement ScrollView for my layout containing both text, image and ListView

I'm trying to add a ScrollView to my layout that is containing various TextViews, a ImageView and a ListView. The reason to why I want to be able to scroll is because all the text and the image takes ...
-1
votes
3answers
36 views

Prefer Linear Layout or Relative Layout in android [closed]

I am writing an application with certain number of activities. How do we determine whether an activity needs a linear layout or a relative layout?
3
votes
2answers
49 views

set EditText width in LinearLayout depend on TextView width

I have following snippet of code. only one EditText and TextView in horizontal LinearLayout. I want to set EditText width depend on the TextView width. If the width of TextView means Text increase ...
1
vote
1answer
30 views

Android: Nested Linearlayouts will not display a grid of buttons, Matching parent

I have an app under construction. In one of the sub-menus I have a need for generic display of buttons, and therefor I want to make an activity that can display the given number of needed buttons. I ...
0
votes
1answer
22 views

android scroll view nesting

I'm trying to make a layout that has this structure: main_linear scroll_days days_linear scroll_day day hour part ...
0
votes
0answers
52 views

Clear the textview and add the new textview while click the each category

In my Android application I have to display article title on corresponding category. I wish to display the output in following format: Languages Programming --- Category name on Horizontal ...
0
votes
0answers
38 views

ObjectAnimator in Android doesn't update the View's parent

Objective: Build a SlideUp animation in a ImageView with fixed height that is placed in a LinearLayout with wrap_content height. Problem: The animation runs normally, but the parent LinearLayout ...
0
votes
2answers
17 views

TableLayout issue - Android

I have two TableLayout's in my Android app. I want one half of my app to be static and always shown, and the other to be scrollable. When I build and run my app on my Android phone, the bottom half ...
0
votes
4answers
57 views

Text inside a linear layout

I am having a linear layout in which I am having 2 text views. But there is some kind of padding between the text views'. How to remove the padding? I have attached a screenshot and source code below. ...
0
votes
3answers
21 views

Custom linearlayout, on constructor get all childviews

Im having a problem with a custom LinearyLayout, its basically a class that inherits from the LinearLayout.. nothing fancy.. The thing is that I need to fetch all the child-views thats inside my ...
1
vote
0answers
38 views

Understanding measureWithLargestChild: Why breaks the layout?

I'm playing with the option measureWithLargestChild="true". I don't understand why my layout breaks total, if one of my buttons has a too big text onto it. I think it should keep the basic size of 1/3 ...
0
votes
2answers
19 views

Change child views to fit parent's width when added dynamically

I have a custom view which I add child views to dynamically. When each child is added, I need to recalculate the size of the views so they can fit the parent's width For example: If I have a ...
0
votes
3answers
39 views

Using a Layout to Make Rounded Corners affect on image

I have some ImageView's and it seems like too much trouble to round the corners by using an ImageLoader or similar technique. Can I just simply make a LinearLayout to cover the image? (or set the ...

1 2 3 4 5 27