Tagged Questions

3
votes
1answer
85 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
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
5answers
80 views

Android beginner layout

Here's my code. public class Business extends Activity implements OnClickListener { private Button mHorizontalButton; private Button mVerticalButton; /** Called when the activity is first ...
2
votes
2answers
56 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
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
1answer
237 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
1answer
197 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: +------+ +------+ +------+ | | | | | | +------+ +------+ ...
2
votes
6answers
480 views

How do I get a LinearLayout where the components are stacked on top of eachother in Swing?

I'm trying to create a custom JDialog. I would like to have the components stacked on top of eachother with their preferred height, but the width should fill the container. Similar to LinearLayout in ...
2
votes
3answers
2k views

How can I add a TextView below a MapView?

I followed Hello Views, Google Map View and now I want to add a TextView under below the MapView. I have only changed the layout file main.xml and placed the MapView and the TextView in a vertical ...
2
votes
4answers
4k views

Android Layout with ListView between a “top bar” and “bottom bar”

I'm trying to construct a layout where there is a text view at the top of the screen and a bottom bar at the bottom of the screen. Each of these views should stay fixed in place and in between the 2 ...
2
votes
1answer
154 views

Stacking Two ImageButtons

I have two ImageButtons, and I am trying to stack one on top of the other. I essentially want to make a screen with two big buttons that each take up 50% of the available space. The code is below. ...
2
votes
2answers
1k views

Proportional width of elements in LinearLayout

I have a horizontal LinearLayout and in it I have EditText and Spinner elements. Which attributes I need to adjust so I would get proportional widths: I want EditText to take 3/5 and Spinner - 2/5 of ...
2
votes
3answers
2k views

How do I center a GridView in its LinearLayout parent?

GridView is not behaving like it is supposed to. This screenshot shows that the GridView (in landscape mode) is flushed left. I want it centered. This is the XML layout for the GridView. ...
1
vote
3answers
93 views

What's the quickest way to add several views to a LinearLayout?

I have a LinearLayout view that already contains several elements. I want to add a lot more Views to it, programmatically. And because this is inside a ScrollView, everything will be scrolled. So ...
1
vote
2answers
60 views

android how not to mark certain view in the row, but not the row itself in listview

i have a listview in which each row contains a checkbox and a horizontal linearLayout right to the checkbox. the linear layout's background is a drawable, and the layout itself contains two textViews ...
1
vote
2answers
537 views

layout with buttons in a circle?

Its a challenge for all.. How we can put buttons in relative or linear layout or any other layout in a circle same as in this image. We can do it using xml or using code. Please help. Thanks in ...
1
vote
2answers
229 views

LinearLayout layout_weight

I have a ListView that is populated with rows. These rows come from an XML file that looks like: <?xml version="1.0" encoding="utf-8"?> <LinearLayout ...
1
vote
1answer
76 views

Relative Layouts and Linear Layouts

how do i embed a tab layout within a button. My main layout is a linear layout, but i don't know how to program the main activity.java class. Could anybody help me get started this is what my ...
1
vote
2answers
365 views

Android: TableLayout next to LinearLayout

In Android I'm trying to use this xml to get a TableLayout next to a LinearLayout. But I can't get it working. The TableLayout always takes up the full width of the screen. How can I get it to share ...
1
vote
2answers
574 views

RelativeLayout inside a parent LinearLayout

Here is the structure of the layout of my application: <LinearLayout> <TabHost> <LinearLayout> <LinearLayout> <TabWidget /> ...
1
vote
2answers
615 views

Android layout issues

I can't for the life of me figure this out. I am attempting to have the following layout (vertically): ImageView (filling all available space) TextView (taking vertical space as needed) EditText ...
1
vote
2answers
770 views

Android: Vertical LinearLayout - Two image views, I want the bottom one to scale to be the width of the top one

I'm trying to get a vertical LinearLayout to display an imageview with a second imageview below it. I want the lower imageview to be the width of the top image view. I'm trying the current layout ...
1
vote
1answer
1k views

get height of a linearlayout

I'd like to get the height of a linearlayout. I found more information in this answer View.getWidth()/View.getHeight() won't give you a meaningful answer until the view has been measured. How ...
1
vote
1answer
508 views

Scaling Images in a Linear Layout Evenly

I have a linear layout that contains 6 images, which span the linear layout horizontally. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" ...
1
vote
1answer
1k views

Android VideoView LinearLayout LayoutParams

My app plays a video using VideoView. I am using a LinearLayout to add some text, the video and then some buttons. My question is what kind of layout params can I use for the VideoView to make sure ...
1
vote
3answers
1k views

Help with Android LinearLayout or RelativeLayout

I need to create two views programmatically (because I need to access the ondraw of one of the views). For some reason, no matter what I do to add the views to the contentview, they don't show up ...
1
vote
2answers
4k views

LinearLayout of a WebView and a Button

I recently struggled with an apparently simple Android layout: I wanted a WebView above a Button. It worked fine with the following parameters: WebView: Height: wrap-content Weight: unset (by the ...
1
vote
1answer
6k views

Android TableLayout question: get a fixed-width right column?

(Edited: I'm one step further than before) I've been trying to get a simple 2-column TableLayout going where I have a LinearLayout in my left column that I dynamically add elements to which fills up ...
1
vote
1answer
2k views

Including a background drawable foobars my layout in Android. Ideas why?

If I don't include a background in my root layout then everything renders as I expect: However, if I add JUST ONE LINE adding in a background then the layout goes completely haywire: The ...
0
votes
4answers
62 views

Android: put something on top of linear layout

What I want to do is show a "frame" (or new layout) on top of "2" (second LinearLayout), when a button would be pressed. How should I do it? Precreate it and make it somehow hidden if button not ...
0
votes
6answers
37 views

Android: stretch layout between two fixed LinearLayouts

this is my layout (image): http://i.imgur.com/j8sqo.jpg What I want to do is make the 1st LinearLayout 50dip high (this is already OK), then have the 3rd LinearLayout also 50dip high from the ...
0
votes
1answer
90 views

Setting TextView to right of vertical LinearLayout in android

I tried to add a TextView to a vertical LinearLayout and align the text view to right of layout: LinearLayout temprLayout=new LinearLayout(this); ...
0
votes
2answers
99 views

multiple listview are being cut

im having an issue when i try to make a linearlayout with multiple listviews. originally when i added multiple custom linearlayouts containing a textview and a listview i could not scroll down the ...
0
votes
0answers
295 views

Android linearlayout animation

Hi i have a linear layout which i'm using as a bottom bar in a listview and when zips are pressed i show the layout and hide it at other times. I decided it would look nicer to slide it up so i wrote ...
0
votes
3answers
241 views

Android Text in ListView Is Cut Off

I know there are a lot of questions like this on the forums, but many cases are unique, so here goes. I have a custom list view that displays an "event" in different ways based on the application ...
0
votes
1answer
105 views

Android: how to split a screen for a TableLayout next to a LinearLayout?

How can I split the screen so that the left half of the screen is a Linearlayout and the right half is a Tablelayout. I've tried applying a layout_weight of 1 to both and a weightSum of 2 to the ...
0
votes
0answers
112 views

How to use as well android's layout to have perfect size on every phone with every screen size

I'm thinking that google is fall down with layout for these phone. is more difficult understand layout than all the rest. My problem is to create layout for all the screen. First i have to set an ...
0
votes
2answers
79 views

linearlayout problem

I have a weired problem with the layout of my app. I have a listview, in which I have inserted an own layout for each item. This works nice. Here is a part of the inserted XML layout: ...
0
votes
2answers
627 views

Programmatic Android Layout Help

I'm trying to correlate how the Android XML looks versus creating it programmatically and I'm failing miserably. I've read several references stating that the type for the LayoutParams for the View ...
0
votes
1answer
255 views

Android App Layouts - LinearLayout, TableLayout and RelativeLayout Ugh?

I've been looking on best practices for designing Android UI's. While there is a lot of information out there around programming the actual code, there are very few tutorials on doing advanced xml ...
0
votes
2answers
188 views

Android - Help needed in solving Layout inconsistancy (RelativeLayout and LinearLayout)

I am building an app with a reusable numeric keyboard. The keyboard has been placed in its own XML file so it can be included where needed throughout the app. I want to split the screen for the ...
0
votes
2answers
229 views

Linear Layout for a calculator app

I am having a problem on the last row of my linear layout. I want the 0 to be the same size as all the other numbers, and then the other 4 buttons in that row to be like below (this is using Absolute ...
0
votes
1answer
31 views

layout_weight to give one item exactly as much space as it needs, and all remaining to the other item

I'm trying to render an EditText password field followed by a Checkbox whose text is "show?". Both are in a horizontally-oriented LinearLayout. I want the checkbox and its label to occupy exactly as ...
0
votes
5answers
115 views

Android Layout does not display all my components

I am trying to display an EditText and a Button horizontally and below of them I want to display a List(ListView). I have try this but it seems it's only sees the first Layout and nothing else after. ...
0
votes
4answers
90 views

How can I align this layout correctly?

I have two textviews. I want one of them to be left aligned and the other to be right aligned. Pretty much so that it looks like a 2 column table. <LinearLayout android:layout_width="match_parent" ...
0
votes
2answers
146 views

Android View with 'hole' in it

I've created a custom camera view for Android. I have overlayed the camera preview with a semi transparent LinearLayout with a TextView and Button. Now I need to punch a 'hole' in the middle of the ...
0
votes
1answer
47 views

Temp View Whilst Populating a View Dynamically

I am trying to make my app look more beautiful. It looks beautiful the majority of the time but when an new activity is loading the user is shown the screen above. There is actually a dialog box ...
0
votes
2answers
98 views

LinearLayout Line up

I have a EditText and I want a ImageButton to the left of it. I want my EditText's width to fill_parent except leave room for the ImageButton. Right now the EditText isn't leaving any room. I have ...
0
votes
1answer
291 views

How to place adView below?

I create a game which has a custom view derived from surfaceView. and in the game I want to place adView below the gameView. but the problem is , if I place adView below the gameView , the adView wont ...
0
votes
3answers
4k views

Android:set ImageView dynamically?

I'm trying to download an image, and create an ImageView dynamically and add it to my layout, but it won't display the image. Here is my code: ImageView image = new ImageView(this); ...

1 2