0
votes
1answer
15 views

How to set CheckBox or Radio button at same place in layout screen?

Fisrt i have a json data [{"Test_ID":"6","Question_Text":"What is the length of the train?","Answer_Set_id":"1","Correct_Answer":"4","Correct_Answer_Text":null,Answer_choice_1":"45 ...
1
vote
3answers
37 views

Android - How to position 4 text views?

UPDATE: I've opened a new thread with my updated question here: Android - How to display 4 text views with Icons? Thank you for your answers, I'd really appreciate it if you could help me with my ...
0
votes
2answers
18 views

TabWidget will not display, even though it displays in ADT editor

My TabWidget will not display, even though it shows up in the Eclipse graphical editor. I can't find any reason why. Why isn't my tab bar showing? Eclipse Emulator XML source of the activity: ...
0
votes
1answer
12 views

android stacking an object above layouts like the keyboard application

how to get an object such as a button and stack it above any layout in any application, just like the android keyboard application does? not asking about how to write a service class but asking for ...
0
votes
1answer
20 views

Android: ScrollView with rounded corners. Child views bleeding out over corners

I have a scrollView with rounded corners. In the ScrollView is a LinearLayout that has the same drawable with rounded corners. This is all working fine. I have a scrolling container with rounded ...
1
vote
0answers
23 views

Android almost same code to fit different layout

(First of all I'm sorry for my poor english...) As title, I do know that following layout(s) to match different screen: res/layout/main_activity.xml For handsets (smaller than 600dp available ...
-1
votes
1answer
17 views

Need Help to create TabView for My Doodle App

I am beginner in Android and developing one Doodle Application in which user can draw on the canvas. For this i am providing one Relative Layout in which I am taking four Image Buttons for Selecting ...
0
votes
1answer
17 views

Exception when EditText is placed after Buttons

The following layout gives an error upon the application starts <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/hud" ...
0
votes
0answers
21 views

Using Google Maps as “Overlay” on another Layout/View

I have a little problem. My app has a surfaceview and displays the camera preview. Now I want a map overlay. This overlay should be displayed in a corner of the display and show the current position ...
0
votes
1answer
18 views

Change shape solid color at runtime inside Drawable xml used as background

I've a Drawable xml file (background.xml): <?xml version="1.0" encoding="UTF-8"?> <layer-list xmlns:android="http://schemas.android.com/apk/res/android" > <item> ...
0
votes
3answers
37 views

Editing layout in Android

I have two questions : I am developing part of an Android App , in the main activity I added two text fields and one button and I am trying to call them by id as shown below : Send = ...
-1
votes
0answers
26 views

Why do we use xml language for layouts? [duplicate]

I know that XML is used in android apps to follow MVC architecture. It gives a clarity by separating the UI and the program. But XML is said to be used to carry data over the network.. (well dats ...
0
votes
2answers
39 views

Changing activities prevents ImageButton setImageResource from working

I have a main activity that changes the image on the ImageButton on every click. public class MainActivity extends Activity { protected void onCreate(Bundle savedInstanceState) { ...
0
votes
2answers
29 views

Android: draw a line of a certain length

I have a relative layout with multiple textViews next to each other. I used android:toLeftOf for positioning these textViews. So let's say I have 5 textViews in one line, what I want now is to draw a ...
0
votes
2answers
19 views

Great distribution of horizontal radio buttons

I have 3 RadioButton in one line (linearLayout). I want to distribute them properly in the line, and not align all of them to the left, just as in this screenshot. Currently it is displayed like ...
1
vote
4answers
39 views

How can i inflate three layouts in ListView?

I have a custom listView in which i want to inflate three different layouts. I have seen many questions but they are all for odd and even position but in my listView the layout that should be ...
0
votes
2answers
38 views

Android: How can I reference layout items outside the Main Activity?

My onCreate method sets the content view and sets up an image button: protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); ...
-2
votes
1answer
18 views

Download image from url and set as background [closed]

In my application I want to download an image one the start and set it as background for my MainActivity. I tried several ways with downloading and saving it to sd card etc. but I failed all the time ...
0
votes
0answers
9 views

Moving ImageView is not moving right

I'm trying to move 2 images (i will have 5 in total) but when I test the code on the Virtual Device, the image moves far away from where my finger is and if my finger goes closer to the bottom of the ...
-2
votes
0answers
24 views

Make Layout and PreferenceScreen scrollable as one

i have a Layout with some data to input title, message in a Linearlayout. At the bottom on my layout, i have a PreferenceScreen for some configuration. The problem ist, i want the whole layout to ...
0
votes
1answer
23 views

Linear layout in Android always scrollable

How can I make a vertical linear Layout always scrollable, even when I only have one TextView in my Layout? When I scroll up, I want it to scroll and show a blank space at the bottom. When I scroll ...
0
votes
0answers
11 views

Android Layout Compatibility on different android devices

I have created Following layout in resource folder: layout layout-large layout-normal layout-small layout-sw320dp layout-sw480dp layout-xlarge Also i have mentioned in manifest ...
0
votes
0answers
38 views

How to use Master/Detail Flow together with Tabs on Android

I want to achieve the following layout to my android-application (upper layout for tablets, lower layout for smartphones) including the capability of swiping between the subitems: So I've created a ...
0
votes
1answer
18 views

eclipse android xml editor screwing up id's across multiple layouts

I have 2 seperate xml layout files. When i update the id or text in a view in the first layout, the second layout is mirroring it. So change the id of an imageview in layout 1 to ivImage, and the ...
0
votes
1answer
28 views

app crashes on changing layout params

I have a linearlayout in scrollview <ScrollView android:id="@+id/scrollID" android:layout_width="match_parent" android:layout_height="80dip" ...
1
vote
1answer
18 views

android - access base activity from custom layout

I have a custom layout in my fragment , which extends RelativeLayout public class Footer extends RelativeLayout How can i use getSupportFragmentManager from this custom object ? When i use ...
0
votes
3answers
21 views

How to Set Margin Programatically to Layout Which is exist in another layout

i have following layout,i want to set margin programmaticaly . This layout i am accessing this layout in baseadpter. How can i access it. <LinearLayout ...
-1
votes
2answers
58 views

How to design layout for S4

Like for the earlier devices we can create 3 kinds of layouts:- normal-layout large-layout xlarge-layout But what if I want to develop application for Samsung Galaxy S4. Is there any new ...
0
votes
0answers
26 views

GridView update bad

I have a problem with Gridview. I'm making a game in which each image has an id. For level 1 I have put 20 photos (from 0 to 19 that match the id of the Gridview). For level 2, most 20 to the GridView ...
0
votes
0answers
25 views

Android: Custom CursorAdapter to alternate resources

This problem has been stuck for a while in my head. What I need to do: Show a listview with alternating resources for the items in the listView. What is my problem: So far I can alternate resources ...
1
vote
2answers
23 views

TextView fill with points

Sorry by my english I have one RelativeLayout and 2 textviews like that <RelativeLayout android:layout_width="fill_parent" android:layout_weight="1" ...
0
votes
2answers
44 views

Combine EditText, TextView and Preference

is it possible to a view that contained a Block with TextView, Editext and a second Block that contains a PreferenceScreen with (Checkbox, List, Chexbox etc...) What i want to do, is somethink like ...
1
vote
1answer
25 views

How do I remove the extra pixels at the top of a ScrollView?

I have been working on an app that allows you to create a Truth Table and save it into HTML for use in word. I have the app working fine but I am trying to clean it up a bit. I have the following ...
0
votes
3answers
30 views

Android: how to prevent dynamic background drawable from stretching

I need to set the layout's background dynamically by calling myView.setBackgroundDrawable(BitmapDrawable bdb), but I want to crop the image rather than stretching it in the layout, is there a way ...
2
votes
2answers
31 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
2answers
35 views

Add a textview for header and footer

I've a pretty noob issue with LinearLayouts and GridView. I want to display an activity with and header, a GridView that scrolls and a footer. I search how to do this stuff but i'm stuck to get the ...
0
votes
0answers
22 views

Remove item from custom listview with dynamic row layout by using checkbox and button

I have a Custom ListView which contains four different layout where the number of rows is varied on every listitem. What is common with these four layouts beside the three textviews is that they have ...
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" ...
0
votes
2answers
44 views

Circular Button and textview in android

Can someone please guide me how exactly can i create a circular buttons and textview in android apps, I am still a new into android development. Please help
1
vote
1answer
61 views

Differerentiate layout for two devices with same dpi

i have two layout folder: layout-sw800dp and layout-sw600dp so my app use layout-sw600dp for both devices , Samsung Galaxy Tab 7 and Nexus 7,and it makes my fonts and styles bigger for Nexus 7! how ...
0
votes
1answer
31 views

How Android grid layout set component fill the specified row and column?

code: <GridLayout xmlns:tools="http://schemas.android.com/tools" xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" ...
0
votes
3answers
45 views

Android get inflated layout layout_width and layout_height values

In Android, how can I get the values I set in my XML file ? my_layout.xml: <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" ...
0
votes
1answer
34 views

Dialog + callback?

I have made a CustomTypeDialog class and what I want is to use EditText which is not in the active layout. I get a nullpointer exception when I try to click one of the buttons, which I think is ...
1
vote
1answer
26 views

Android display a duplicated/replicated layout?

First of all, I would like to clarify that I am not very experienced with Android, but, is there a way to duplicate/replicate the displayed layout on an android phone? For example, I'm at the home ...
0
votes
1answer
28 views

ImageButton + dialog issue

Hey I am trying to make a dialog. But the whole dialog is not showing and only the bottom 3 imagebuttons are showing: What is wrong here? And when I click the buttons inside the dialog nothing happens ...
0
votes
1answer
28 views

Layouts remains unchanged while trying to move from one activity screen to other

I'm trying to move from one activity screen to other by using the below code. The first activity MainActivity only has one button on clicking it I intend to invoke the other activity Menactivity but ...
1
vote
2answers
37 views

CSS layout in Android browser

I'm quite green on CSS but I'm building a webpage and after a lot of searching and coding I've come quite far in browser compability. But there is a big difference in how my Android-phone renders the ...
0
votes
1answer
17 views

android relative out image jumping over

I am trying to create a comments area and I am trying to make a comment design , each comment contains of text + member icon + member name... I am trying to write it like this but the icon keeps ...
0
votes
1answer
19 views

How to difine a width in the table row in a table layout equals to the header

In my app I have a fragment uses tablelayout. I define the header of my table in the XML and I add the table rows when I instantiate the fragment. Using data from my database. When I add a table ...
0
votes
4answers
40 views

Android RelativeLayout views are not visible

I'm new to android , and I have a problem with relativeLayout ,All the views inside the relative Lyout are not showing : editTexts and spinners , and I can't see where the error is :( here is the ...

1 2 3 4 5 85