0
votes
0answers
63 views

MonoDroid HorizontalListView

I am working on an app and need to have a horizontal listview. Does Android/MonoDroid have such a widget? Does anyone know of a sample/example? Thanks
0
votes
3answers
214 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 ...
0
votes
3answers
336 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 ...
0
votes
1answer
349 views

MonoDroid - How to get the custom attribute value of a widget defined in the layout programmatically

I am trying to get the value of a custom attribute of a custom widget programmatically. The widget extends the LinearLayout, I have defined the custom attributes as follows: <declare-styleable ...
0
votes
2answers
183 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
99 views

Android mono InputType - Doesn't work

I already tried some test using eclipse just to make sure im not missing something and it works fine. Target API = 15 and below Now, Im using MonoDevelop/VS 2010 because im more comfortable in ...
1
vote
1answer
634 views

Get view from Resource Layout in xamarin or monodroid

I try to get MapView from Resource Layout but it returns null: var map_view = FindViewById<MapView>(Resource.Id.emap); mylayout.xml like : <?xml version="1.0" encoding="utf-8"?> ...
0
votes
0answers
85 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
1answer
649 views

Properly extending EditText class for Mono Android

I am trying to extend the EditText class in Android Mono for overriding purposes. Here is what I have so far code wise. Unfortunately, it crashes when I try to run it (it doesn't crash of course when ...
0
votes
1answer
593 views

MonoDroid NumberPicker example usage?

I am trying to use the NumberPicker control. But I cannot find any clear examples of how it is used in java or Mono for Android. Including it in my layout with the below code makes it appear but it ...
1
vote
1answer
822 views

mono for android. Home screen widget

Do you know any examples, screencasts that document how to develop an home screen widget on "mono for android" ? I would like to develop a tiny home screen view and I'm searching for the proper way ...
0
votes
2answers
518 views

Mono for Android error: GetMethodID: method not found: Landroid/widget/EditText;.monodroidAddReference:(Ljava/lang/Object;)

I'm nearing completion of my Mono for Android app. I have an Activity that has a ListView which uses a layout to display a few rows of information, nothing major. It then shows a pretty complex ...
0
votes
1answer
357 views

Improve performance of Android Spinner loading

I have a simple list of strings that I populate into an Adapter per the following code (using Mono for Android): var adapter = new ArrayAdapter(this, Android.Resource.Layout.SimpleSpinnerItem, ...
0
votes
1answer
156 views

Help with creating a compound component in Mono for Android

I would like to create a compound component that consists of a TextView (integer only) and two buttons that would be used to make an up/down (increment) button. I am using Mono for Android ...
3
votes
1answer
4k views

Is it possible to use a ListView without ListActivity in Mono Android?

I'm trying to implement activity with ListView among other widgets. So if I understand correctly I can't use ListActivity (because it shows only one big ListView that ist ok for me). I found a lot ...