0
votes
0answers
27 views

Dynamically created user interface on Android

I am trying to create a user interface based on the results on a SQL search. The interface consists of a horizontal LinearLayout into which I read in a fragment which is then inflated and added to the ...
0
votes
0answers
29 views

Ensuring a layout is always the same size

I'm working on a messaging app and have hit a minor, yet very annoying problem. I am rendering the messages on the fly by bringing in a layout and then inflate. This part works fine. The problem is ...
-1
votes
0answers
38 views

Touch/click event in Android [closed]

I have a problem. There is a field of hexagon (only a drawing): I need a touch/click event with a ID as return value for each hexagon. I don't know, if I should use Images, Buttons or sth. else. ...
1
vote
1answer
50 views

Moving an ImageView located in a WindowManager doesn't work properly

I'm trying to draw an Icon over everything on the screen (TOP MOST) similar to the chathead of new Facebook messenger I have create a service to work in the background and based on a specific ...
0
votes
0answers
85 views

Autocomplete when editing android layouts in Visual Studio with Xamarin

I'm currently running a latest Xamarin.Android trial installation with up-to-date Visual Studio 2012. When opening .axml file in visual studio I can see a visual designer and can use it normally, ...
0
votes
2answers
100 views

I get an Android.Views.InflateException when I use SetContentView (Resource.Layout.Main) that includes tabs

I get an Android.Views.InflateException when I use setContentView (Resource.Layout.Main) that includes tabs and can't understand why. I've been trying to find others with my problem, but it seems ...
1
vote
2answers
102 views

programatically add elements to a scrollview gives me Java.Lang.IllegalStateException

I'm trying to add textview and progressbar's to a scrollview but it gives me a Java.Lang.IllegalStateException: I'm using xamarin so this is not java but c# but it's the same principe here's the ...
0
votes
1answer
70 views

MonoDroid AlertDialg with ListView

I am fairly new to MonoDroid/Android Development and I was wondering if anyone can point me to a sample or explain how I would go about creating an AlertDialog with a custom ListView? I need to ...
0
votes
1answer
57 views

View layouts not displaying as expected

i am at the point where i am going to loose it. Problem: I inflate GraphInWebView into the layout called formDialog(some other file) ...
1
vote
1answer
229 views

mono for android - dynamically add a layout to a scrollview

I want to add a layout dynamically into a ScrollView. I tried everything I found in google and here, but no chance! Most of them causes "Object Reference" error. Here's one of the codes: ...
1
vote
1answer
173 views

Start an activity from a PreferenceScreen

I have a list of strings (stored in a database, not as a resource) and I want to allow the user to edit this list. This is easy enough to do with a normal Activity,but in this application that list ...
1
vote
1answer
501 views

Slide animation between views of a ViewFlipper

In an Activity I have the following: var flipper = FindViewById<ViewFlipper>(Resource.Id.flipper); flipper.Touch += flipper_Touch; The basic implementation of the touch handler looks like ...
2
votes
0answers
52 views

Single View Layout Files: Does Compiler Autowrap with Layout/ViewGroup?

If I have a layout file that simply contains a single TextView, I have no problems inflating it from within an activity. However, if I try to inflate a similar layout file that instead contains a ...
0
votes
1answer
202 views

HorizontalListView and SetSelection

I am using a HorizontalListView that is provided here: https://github.com/Cheesebaron/Cheesebaron.HorizontalListView I am trying to programmatically select an item in the list and have it display, ...
1
vote
2answers
276 views

Clear SingleChoice ListView selection

Is there a way to clear the selected item in a ListView? The ListView is defined like this: <ListView android:layout_width="fill_parent" android:layout_height="fill_parent" ...
1
vote
2answers
240 views

How to use a Selector with a ListView and custom Adapter to indicate the selected item

I've got an activity which has a ListView and I've created a custom Adapter based on BaseAdapter. The GetView method of the custom adapter uses a custom layout: view = ...
0
votes
1answer
93 views

How to make a TextView height fill the screen and position an image next to a list view

I am trying to figure out a couple issues with a layout and hope someone with layout knowledge can help. I have the xml below with a screenshot of ultimately what I am trying to achieve plus a ...
0
votes
1answer
130 views

Adding fragment to activity after initial layout set not showing

When a user clicks on an item in the action bar I am trying to add a fragment to the activity, however I can not get it to show. Here is the main code that is not working the way I expect (This is ...
0
votes
1answer
125 views

Hide keyboard programmatically in MonoDroid

I am using the following code to detect the user pressing Return on the keyboard: EditText etMyEditText = FindViewById<EditText>(Resource.Id.etMyEditText); etMyEditText.KeyPress += ...
0
votes
1answer
46 views

Adding a ScrollView to a layout

I have the following layout and am trying to make the layout scroll. I added a ScrollView, but I must have it in the wrong place. Can anyoine with knowledge of android layouts help? Here is my xml: ...
0
votes
1answer
98 views

Android: Can someone help me with layout for an activity using this mockup?

I'm new to Android development but I've been doing graphic design and ui for years. I've created a mockup in FluidUI and I'm trying to figure out how to lay it out. I've started by using ...
1
vote
3answers
103 views

Android, what happens on activity finish()?

I have an activity that starts another then if the user cancels from the second I call finish() and return to the first. Question: Is there a method that gets called when I get returned to the first ...
0
votes
3answers
157 views

Android Layout with ImageButton overlapping other elements

I am trying to offset a button and have its location be so that it appears to hang over other elements. What I am looking for can be seen in this image... notice the image button, which is id ...
1
vote
2answers
408 views

Android Layout does not allow user to pull down notification bar

I am writing an App using MonoDroid and for some reason I cannot pull down the notification bar from the top of the screen. I am thinking this has to do with my layout, but I am not sure. I also ...
0
votes
3answers
236 views

How to add a ScrollView to an Android Layout

I have the following layout but I would like to make it scroll vertically if the content is too much for the display. The ImageView, 'imagePhoto' is an image taken with the device camera. If the ...
1
vote
1answer
108 views

MonoDroid Scaling images in a GridView

I have a GridView which has a set of ImageViews in it. I create the Images in the GetView as follows: public override View GetView(int position, View convertView, ViewGroup parent) { ImageView ...
3
votes
0answers
415 views

The Operation could not be completed: Invalid Pointer

for a few days i have a problem with my visual studio here. everytime i want to open an Android landscape layout (default layouts load normally) it tells me "The Operation could not be completed: ...
1
vote
2answers
445 views

What theme does the Xamarin designer for Mono for Android use?

When using the designer for Mono for Android in Visual Studio, the controls have a nice clean design but as soon as you run the app on a device (emulator or real)the controls have a completely ...
0
votes
1answer
148 views

Black bar in right of my layout

I use the layout code to design the main part of the page that you see in image: <?xml version="1.0" encoding="utf-8"?> <LinearLayout ...
0
votes
1answer
127 views

Smaller Tabs Monodroid

in my app, i have an ancticity with an tab host an tabs etc. my problem is, that i want tabs with less height. you don't know what i mean? here: http://www.pic-upload.de/view-17360783/Tabs.png.html ...
0
votes
2answers
232 views

How can I set Margin in Code-behind for MonoDroid?

this question is simple, but i'm not finding nothing about it. How can i set margin into a widget in code-behind. I found this document into Xamarin's site, but i can't use this into a ImageView I ...
0
votes
2answers
163 views

Place WebView below GridView in Android Layout?

Below is the xml layout for my Android App. I am trying to positions a webview below the gridview on the screen. Can anyone help explain what I need to do to get that to work? <?xml ...
0
votes
0answers
147 views

monodroid layout could not be loaded

Install Mono for Android on new Laptop. Can not open any Layout files also create new layouts crash with error: the layout file could not be loaded Xamarin.AndroidDesigner.DesignerException
2
votes
2answers
132 views

How to create this layout in Android

I am playing around with Mono Droid and trying to implement the following layout What type of layout would I use? Is there anything in Android like anchors and docking, like WinForms, so that this ...
1
vote
2answers
243 views

Android is it better to use a TableLayout or GridView

I am developing an app and I would like to have 12 ImageButtons (3 x 4). centered in the android screen and the center section of the screen where the ImageButtons are located to have a color or ...
0
votes
1answer
319 views

Android App Gradient Background

I am developing an Android app using MonoDevelop and I have a table with 12 ImageButtons that are 48x48. The table is centered in the android screen. I cannot figure out how to put a gradient ...
2
votes
3answers
180 views

Visual Studio Crashing because of Android layouts

i have a little problem with an little android project here. every time i load a certain project, VS will crash after some seconds. well... i've added each class into a new project and opend it to ...
0
votes
1answer
139 views

How can i specify attribute of my own ViewGroup(Layout) in an axml file?

I'm trying to adapt Ravi Tamada's blog entry to Mono for Android. But at the 6. step i stopped. How can i specify <!-- Your package folder --> <com.androidhive.dashboard.DashboardLayout ...
0
votes
1answer
77 views

Monodroid Layout Folder support

I'd like to use qualifiers on my layout folders as per the android documentation, but the designer in VS doesn't seem to support them. For example layout-w600dp doesn't get sent to the emulator; the ...
0
votes
3answers
597 views

Android: Custom Dialog has wrong dimensions

I'm trying to display a dialog with a custom view. The Layout is pretty simple; basicly there are two LinearLayouts; every Layout with a TextView and an EditText. The Layout i'm using is this: ...
0
votes
0answers
154 views

ListView adapter with rotated ImageView

I am listing the positions of GPS locations relative to the current location and I want to have an arrow pointing in the direction of the listed fix. I am using an adapter derived from BaseAdapter ...
0
votes
4answers
85 views

RelativeLayout Stack Buttons

I would like to align two buttons on the bottom of a relative layout that is wrapped inside of a linear layout. I am unable to get the view favorites button to be on top of the search button. There ...
1
vote
3answers
268 views

How to access Monodroid resources from .java file splash screen

I'm trying to implement a .java splash screen in my Monodroid app in Visual Studio, anyway I want the splash screen to get it's content view from a resouces layout. I'm trying to get it like this: ...
1
vote
2answers
115 views

Loading XML file throwing a RuntimeException

I'm using the following XML file for creating a layout: <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" ...
0
votes
1answer
138 views

Setting LayoutParams doesn't get applied quick enough

I currently have this UI structure: Activity (ACT) LinearLayout (LL) HorizontalScrollView (HSV) RelativeLayout (RL) When I set the layout parameters of RL, they don't get applied until ...
0
votes
0answers
608 views

Can't open any *.axml files with the Android Designer

I just installed and test Mono for Android on my Windows 7 64 bits system. I've done all the Hello World sample without any problems and it works perfectly on the emulator. Then I tried to open the ...
0
votes
0answers
82 views

How to override base layout for exiting controls in Android/Monodroid?

How to override base layout for exiting controls in Android/Monodroid? FragmentBreadCrumbs control internally using LinearLayout. I'm not happy with this layout when Fragment Stack has more than 2 ...
0
votes
0answers
109 views

How to apply a custom theme in Mono for Android UI Designer?

Is it possible to use a custom style Theme in VS Mono for Android layout editor?
2
votes
2answers
869 views

MonoDroid: Error when calling constructor of custom view - TwoDScrollView

I am building an Android application that uses the custom-built TwoDScrollView found here: http://blog.gorges.us/2010/06/android-two-dimensional-scrollview/ This same class can be found referenced ...
0
votes
1answer
1k views

Customizing spinner's item background color

I am making an app to calculate resistor value out of its color bands. Everything works fine on the pure programming side. At the moment for selcting color bands I am using a spinner filled with list ...

1 2