Tagged Questions
15
votes
6answers
12k views
Multiple choice list with custom view?
I've seen example com.example.android.apis.view.List11 from ApiDemos. In that example, each row takes the view android.R.simple_list_item_multiple_choice. Each such view has a TextView and a CheckBox.
...
11
votes
3answers
7k views
Android - Is it possible to create a custom library to use across several appilcations?
Is it possible to create a custom library in android (having its own layout resources) for use across several android applications?
I created a regular *.jar file but when I tried to create/style my ...
7
votes
1answer
162 views
Custom Notification View
I would like to create a notification icon view that looks similar to the Google+ app's notification. The difference will be that I need to be able to change the color at runtime where as the Google+ ...
7
votes
1answer
4k views
Android Custom View Constructor
I'm learning about using Custom Views from the following:
http://developer.android.com/guide/topics/ui/custom-components.html#modifying
The description says:
Class Initialization As always, the
...
6
votes
1answer
5k views
Android ImageView size not scaling with source image
I have a few ImageViews inside a LinearLayout. I need to scale down the ImageViews so that they maintain their aspect ratios whilst fitting inside the LinearLayout vertically. Horizontally, I just ...
5
votes
1answer
3k views
Android: Custom view based on layout: how?
I am building a Android app and I am a bit struggling with custom Views.
I would like to have a reusable View that consist of a few standard layout elements. Let's say a relativelayout with some ...
3
votes
1answer
44 views
Creating CustomViews as a modular & reusable component which can be used across projects
I'm currently in the process of creating quite a large scale Android application. As part of the application I've created a Custom View (one of many).
The Custom View in question is quite wide ...
3
votes
1answer
137 views
Android onDraw() executing on all Views?
Here is a weird behavior that I don't understand about custom views. I have two views in a frame layout, one on top of the other. The views are simple and I've made them just for a short test
public ...
3
votes
3answers
536 views
Error inflating checkbox
I am having weird stack trace from my application in the android market.
I have a view switcher which contains two views, one of them contains a checkbox.
I am getting this stack trace AdDetailView ...
3
votes
1answer
868 views
Views inside a custom ViewGroup not rendering after a size change
I'm running into a problem that has me stumped and I was hoping someone could give me some pointers.
I'm working on an application that uses a custom ViewGroup (actually a FrameLayout that contains a ...
3
votes
2answers
847 views
Android - onDraw not being called in dynamically inserted custom view
I have a custom view being dynamically inserted and the onDraw is not being called. I initially made the custom view without the dynamic insertion and it worked fine, however when moving it to my ...
2
votes
1answer
38 views
Handling weights in onMeasue for custom views
I have a custom view that I'm creating that will scale the font size of its child TextViews to fit all in a set width, so each is on its own line. Obviously it's going to need the width to figure that ...
2
votes
2answers
339 views
Custom seekbar getting its edges cut [closed]
Possible Duplicate:
Android SeekBar thumb gets clipped/cut off
I was doing a custom seekbar, following this tutorial: ...
2
votes
2answers
757 views
Change custom button size for layouts and containers
I have a custom class (touchbutton) extending the TextView class. I am having trouble resizing the button manually. I can get the button to work for only one type of layout or container, but not both. ...
2
votes
1answer
756 views
How can I get the canvas size of a custom view outside of the onDraw method?
I need to be able to access the size of the view's canvas to perform some calculations. For some reason, the size of the view passed to onSizeChanged is different than the size of the canvas passed to ...
2
votes
2answers
215 views
Nine patch on a custom viewgroup
I made a nine-patch, and a custom viewgroup, then I made the background of that viewgroup to be the nine-patch.
The problem is: The nine-patch is ignoring the "content area" settings.
So: How I use ...
2
votes
1answer
107 views
Has anyone made a View that takes text, an image and lets the text wrap around the image?
I mean something like what's asked here. I see people are suggesting using a staticlayout, but I don't understand how that solves it. I've also seen people suggesting webviews, but that seems stupid. ...
2
votes
1answer
291 views
fading edges working only on top and left
I made a custom ImageView that supports basic scrolling through calls to View.scrollBy() in a GestureDetector. I wanted to add some feedback on the reaching of scrolling bounds so I enabled fading ...
2
votes
1answer
545 views
List Item (a view) order changes unexpextedly while (fast) scrolling in a ListView
I am new to android, and ended up (have to) ask a question here,
Let's make it simple, I simply want to make my own TextView-like
(MyView extends View),
this is my code:
public class MyView extends ...
2
votes
2answers
251 views
How to implement custom view with variable fields?
I have a ListView that displays a set of notes, each with varying ammounts of data (i.e. some have a due date, others don't).
Currently, each view in the list is a RelativeLayout containing a ...
1
vote
0answers
77 views
Android custom view background selection
I have a custom view:
public class MyView extends RelativeLayout {
private LayoutInflater inflater;
public MyView(Context context, AttributeSet attrs) {
super(context, attrs);
...
1
vote
2answers
185 views
Android - how to position this custom balloon view with RelativeLayout
Im stuck in getting this to work.
Look at the picture below, i want the bubble to be placed under the image.
And of course would like to be able to place the view wherever i like.
I think the ...
1
vote
2answers
137 views
how to Custom Button (has two TextFields) on Android
I need to develop a button that has two label in.
I find some good articles about custom views, but I can't imagine that how can I create a myButton Class(with custom layout in it) extends button... ...
1
vote
0answers
63 views
Best practices for dealing with expensive view height calculation?
I keep running into a sizing and layout problem for custom views and I'm wondering if anyone can suggest a "best practices" approach. The problem is as follows. Imagine a custom view where the height ...
1
vote
1answer
153 views
Extending RelativeLayout
This is more work I'm doing on creating a ListView with customisable overscroll.
I want to create a Custom element which extends RelativeLayout but adding child view's isn't working at all well. The ...
1
vote
2answers
66 views
Custom Views only showing up once
I've made a very simple customView, a gray rectangle with an arbitrary amount of red markings inside the rectangle marked by percentages.
public class DemoView extends View {
private ShapeDrawable ...
1
vote
0answers
106 views
Problem adding programmed Layout into my adapter
Here is my adapter
private class CustomAdapter extends BaseAdapter{
public int getCount() {
// TODO Auto-generated method stub
return 5;
}
...
1
vote
1answer
447 views
how to put multiple adapter inside one adapter
I need to make a custom listview with multiple view types. I found this http://umakantpatil.com/posts/android-listview-with-separate-headers-and-images-loading-from-remote-server
But the problem is it ...
1
vote
0answers
644 views
Android: Resizing custom views. Parent is resized but width/height changes not passed down to child view
This is my first post on SO. I don't normally post on Q and A sites as I find with enough digging I get my answer but this problem is providing me with a fair amount of trouble.
I am currently trying ...
1
vote
0answers
400 views
Overlay button over view redraw problem
I'm trying to have zoom in/out control over a custom view. I'm laying them using frame layout:
<FrameLayout ...>
<com.example.overlay.OverlayView android:id="@+id/myview" ... />
...
1
vote
2answers
275 views
Styling Custom Views
I have a few custom views in my Android project and I've added the relevant details to the attrs.xml file. And now I can implement my objects through XML. This works fine.
How do I style these ...
1
vote
3answers
216 views
setText in custom view
I have created a custom class from a tutorial online. It works fine, but what I want to do is make it so that I can set the text of the view, just like I would any other view. How is that ...
1
vote
2answers
676 views
Android: FrameLayout subclass does not draw
This is, what works:
a) FrameLayout with two ImageViews in main.xml
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" ...
1
vote
1answer
556 views
Android extending views, specifically RadioButton
I'm trying to implement a RadioButton that has a TextView on the top right part of it, like so:
The Textview will hold a number, once I've clicked something in the app.
I understand that I will ...
1
vote
2answers
611 views
Custom EditText vertical alignment
I created a custom EditText (actually, I just set a background drawable). The problem is that its text is always top-aligned, and I want it to be vertical-center-aligned. I've already tried to set its ...
1
vote
1answer
970 views
Can't override onMeasure method
I need to override onMeasure method but when trying to override I get error:
The method OnMeasure(int, int) of type DrawLnClass.DrawLn must override a superclass method
Here is my code:
public class ...
1
vote
2answers
466 views
Most efficient way to draw Buttons on top of a View?
The app I am working on consists of one large custom view that fills the screen. I placed one button in the center of each side of the custom view that can be used to move the drawn object in that ...
1
vote
1answer
151 views
declaring custom-view constructors
Probably it's a Java more than an Android programming question, anyway: there are two ways to declare the 3 standard view constructors: one is using this() to call the next most parametrized ...
1
vote
3answers
851 views
UIPickerView look-alike on Android
Hi, I have seen the above control in a few Android applications. I know it is not native to Android, what is the name of the control and how do I implement it in Android? Could it be done using a ...
1
vote
3answers
2k views
How to scroll “infinitely” wide view in Android?
I am pondering the alternatives on how to scroll an "infinite", scale-like, control in android. The simple idea is to redraw the entire view on each scroll movement, but somehow it doesn't seem like ...
0
votes
1answer
48 views
Adding a button to a custom view in Android
I want to add a button for this custom view.
This view is displayed via
setContentView(mDrawView);
I tried using
mDrawView.addView(mButton);
but my view does not implement the addView() ...
0
votes
1answer
25 views
Custom SurfaceView causing NoSuchMethodException
I have a custom View extending SurfaceView. The XML layout is
<com.myPackage.MyCustomView
android:id="@+id/mycview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
...
0
votes
1answer
42 views
how to create and export to jar a library project that contains custom views
I have a some custom views that need to be reuse at diffrent projects,
So I created a new android project (which marked at properties as Library project)
and put at this project the code I want to ...
0
votes
2answers
65 views
When do I have to inflate the layout of my custom view?
I made a custom view which is used in several Fragments of an viewpager.
The view is always stored as a field of the Fragment. I inflate the layout in the constructor and everything works fine ...
0
votes
0answers
110 views
Android scroll view with textview and customview objects, textviews are turning black
I'm fairly new to Android development, having come over from spending a couple of years on BlackBerry dev. So please excuse me if I mix up any terminology.
I have an activity which contains a ...
0
votes
1answer
119 views
programmatically setting custom xml layout elements
In my code I have a class title 'CustomView' that has two TextView fields and extends Relative layout. One instantiation CustomView inflates it's self with an xml layout out called ...
0
votes
0answers
93 views
Diamond shape view and image View inside it
i try to do custom View - diamond shape and put some foto inside it. It should look like in foto.
I ask in SO about how to draw diamond View : Diamond Shape View
Now I'm confused about how to add ...
0
votes
1answer
98 views
Diamond shape view
I try to create diamond shape View. I want use it in popup. Does anyone have any idea how to do it ?
Thx for any advice.
0
votes
0answers
40 views
ScaleGestureDetector failing if finger leaves screen
I have a custom view in android which is zoomable using a ScaleGestureDetector. The activity itself actually contains two custom views, the main one which is zoomable and a smaller second view to the ...
0
votes
1answer
42 views
Access components within my custom view (inflated layout)?
I'm probably making some silly mistake.
I have a custom view and use LayoutInflater to get the layout from an XML.
Now , say I have a button called bt1. Normally , I would use findViewById , but that ...