Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
938 views

Custom ListView with Date as SectionHeader (Used custom SimpleCursorAdapter)

I want to display ListView with Date as SectionHeader. What i have : I am displaying ListView from sqlite database using custom SimpleCursorAdapter. My Custom SimpleCursorAdapter is : public ...
4
votes
1answer
98 views

How to make a custom progressbar in Android?

What would be the best way to make somthing looking like this: The text on it needs to be customizable, not only numbers, some strings too, depending on context. From what I see it: Create a ...
4
votes
1answer
2k views

Android - Customizing the Spinner widget Look and Feel

Is it possible to change the color of the radio button in the Android spinner widget. By default it displays the green color for the radio button. I need to change it to some other color, is it ...
3
votes
1answer
168 views

Badge on Android TabHost

I want to implement the functionality same as was there in iPhone I implemented the custom Tabhost same as in iPhone in the bottom bar. I can set two Icons for Normal/Selected state but I need the ...
3
votes
1answer
571 views

View.onTouchEvent only registers ACTION_DOWN event

I'm implementing a custom TextView and I want to do some action when the view is touched. I figured the onTouchEvent method would give me the full range of touches on the view without having to use ...
3
votes
2answers
527 views

Stop OnLongClickListener from firing while dragging

I have a custom View with bitmaps on it that the user can drag about. I want to make it so when they long click one of them I can pop up a context menu with options such as reset position etc. In ...
3
votes
4answers
430 views

saving state on compound view widgets

Question How do you save view widget instance state when, by using XML-defined widget layouts, components of the individual widget instances all have the same ID? Example Take, for example, the ...
3
votes
5answers
826 views

How is this floating menu implemented?

What is this widget called (the one with the three buttons), anyone knows?
3
votes
2answers
507 views

How do I design a custom Android control and use it in Xml?

I understand how to create a custom Android control, and I believe I understand how to pull attributes for it from the Xml layout. I don't know, however, how to get any children elements from it. ...
2
votes
1answer
48 views

Best way to create a custom View class from an xml layout file?

I have a RelativeLayout defined in an xml layout file named 'myview.xml' which contains a number of sub-Views (TextViews, ImageViews etc). I want to create a View object/class named 'MyView' that ...
2
votes
1answer
132 views

Working with big size drawable and custom views in Android

I know this has been discussed over and over again but I can't find a solution to suit my needs. Scenario: To keep the explanation simple, I have a custom view which displays two images a big one ...
2
votes
1answer
129 views

Seamless background as custom view component , onDraw is not get called by invalidate()

Friends, i want to make a seamless background as a custom view component. the problem i figured out during debugging, the first time i call invalidate() within the thread my onDraw callback ...
2
votes
0answers
92 views

Sample code which extends View class and using layout xml file

I am new to the Android world.... it will be a great help if someone correct me... what am I doing wrong the below code... Requirement : Need to create a custom View(using xml layout file) so that ...
2
votes
0answers
152 views

Using an array reference as an XML attribute for custom android view

This problem has been solved, see comments for details. I am extending an existing Android View and loading some custom attributes, as described in Declaring a custom android UI element using XML and ...
2
votes
2answers
210 views

Custom dynamic graph in Android

[UPDATE] To conclude this question, I implemented my graph using the following two methods (see below). drawCurve() receives a Canvas and an array of float. The array is properly filled (timestamps ...
2
votes
1answer
145 views

Custom LinearLayout width - weight placing problem

I asked another questıon and after, I continued to this problem... Firstly My first Question: how to Custom Button (has two TextFields) on Android I extended a class form LinearLayout, and I add two ...
2
votes
3answers
902 views

Android: Custom spinner size problems

I've made a custom spinner but the sizing isn't exactly what I want it to be. The spinner become far to large to get the spacing in the list that I need. I want to be able to size the rows of the ...
2
votes
1answer
64 views

Get Notified after 1st rotation of Text in Text View(ellipsize=“marquee”) in Android

What I have: I have a TextView with Ellipsize = Marquee. The textview's focus is true, so that I don't have to focus it manually, to start the text rotation. What I want: I want to do some operation ...
2
votes
1answer
754 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
1answer
349 views

combining android components in a custom view

I'm not sure where to start with this, I've been building an app over the last week and have made good progress and need a custom view now. I've looked at ...
2
votes
2answers
143 views

How to paste stuff over a camera preview on Android?

I am making the classic AR app for Android. I am using a SurfaceView to show the camera. I want to know, how I put things over it... Currently I am using widgets, but they have two issues: First, ...
2
votes
3answers
230 views

CastClassException on Custom View

When I try to findViewById() on my custom view I keep getting a ClassCastException. I've tried so many things that I'm sure I've botched the code now! To make sure I'm not going insane I stripped ...
2
votes
1answer
237 views

Custom Views and attributes used across Android apps

I've developed several Android apps now and have created a code base of classes that I frequently use in more than one app. This code is all in a subversion (svn) repository with each app in its own ...
2
votes
2answers
2k views

Making Overlaid image transparent on touch in Android?

I need help on making the touched areas of bitmap image transparent(seems like erasing) while I am moving my finger on that image. I am having a PNG file with Alpha channel in it. I want to turn the ...
2
votes
1answer
1k views

Draw Custom View on specific position of screen - Android

I have a custom component which consists of 2 text view and 4 toggle buttons. I want to draw this view at some specific position on the screen. How is that possible?
1
vote
0answers
12 views

Android - Weird layout behaviour custom ViewGroup

I have a custom ViewGroup which has two children, a ViewPager and another subclass of ViewPager. When I instantiate it from code, it displays fine. However, when doing so from XML, the second child ...
1
vote
1answer
57 views

android: how to add children from an xml layout into a custom view

In my xml layouts I have a custom view in which i will put some children like: <com.proj.layouts.components.ScrollLayout android:id="@+id/slBody" android:layout_width="700dp" ...
1
vote
3answers
43 views

Should I call super() or call this() for android custom view constructors?

When creating a custom view, I have noticed that many people seem to do it like this: public MyView(Context context) { super(context); // this constructor used when programmatically creating view ...
1
vote
1answer
26 views

Do I need all three constructors for an Android custom view?

When creating a custom view, I have noticed that many people seem to do it like this: public MyView(Context context) { super(context); // this constructor used when programmatically creating view ...
1
vote
0answers
24 views

Header always shows in android-pulltorefresh when customize

I was trying to customize android-pulltorefresh library developed by Johan Nilson. I wanna use my own adapter rather than a String array. I was able to complete almost every thing but the pull to ...
1
vote
1answer
57 views

How to use ruled/horizontal lines to align text in EditText in Android?

Basically I want to do something like this in Android: I am trying to draw horizontal lines in a custom EditText, and then typing on these lines. I am using the text size for the distance between ...
1
vote
4answers
224 views

Android custom view save visible screen to bitmap

In my app the user manipulates a image, rotates, pinch, zoom etc. This is make within onDraw() using canvas.translate(), canvas.rotate() etc. Of course the image is big and after the manipulation of ...
1
vote
4answers
151 views

How to display the Html formatted text in the PopUp box using alert dialog builder?

I have using android alert dialog builder to display the some user message(String) as a pop up box to the user. Now, My requirement is the message box should be able to support HTML format for this ...
1
vote
1answer
59 views

onSizeChanged/Custom View Classes In Android

I need to have a class which extends view that overrides the onSizeChanged method in order to keep track of the size of one of my view elements. I have another class which manages this view and I'd ...
1
vote
0answers
47 views

How to make an UI component from serveral UI compontents

Friends, I created an UI componentent "compTV" that extends Textview. It works very well. Now i want to create an UI compoentent "3compTV" that just conists out of 3 "compTV" ´s next to each other. ...
1
vote
0answers
145 views

onMeasure not getting called in my custom viewgroup android

Im having two custom viewgroups, superViewGroup and subViewGroup. The subviewgroup contains views. Im adding my superviewgroup to a linearLayout and the subViewGroups to my superviewgroup. The ...
1
vote
2answers
137 views

Create custom view like wheel component

I have seen this in several applications and I would like to ask what is this components where used.. I am talking about the 3 lists at the bottom looking like wheel...the first can affect the 3rd ...
1
vote
1answer
606 views

Unable to Add custom view to Android Action bar,why?

I am trying to add my custom view into Action bar. final View addView=getLayoutInflater().inflate(R.layout.home_actionbar_buttons, null); getActionBar().setCustomView(addView); my XML, ...
1
vote
1answer
121 views

Problem running Android app a 2nd time with custom SurfaceView in xml RelativeLayout

I'm new to stackoverflow and to Android development. It seems that every time I use Google to search of an answer to an Android question, I'm directed here. I have as simple app that starts with a ...
1
vote
1answer
533 views

Android registerOnSharedPreferenceChangeListener() causes crash in a Custom View

Whenever I try to add this line it crashes my app. Am I not putting it in the right spot? preferences.registerOnSharedPreferenceChangeListener(myActivity.this); Here is my class class ...
1
vote
1answer
83 views

Android: How to show my custom view over my MapActivity without xml?

I have some small graphs on display over mapactivity. And when one of these graphs are clicked want to show up detailed graph with transparency over the google map. So I have class "myCusomGraphView ...
1
vote
2answers
124 views

ListView with customView and onClickItemListener

i have problem with listview... i'm trying to add OnClickListener but in still doesn't work. I want to display another activity after click. Can somebody help me? I know that there are many of ...
1
vote
1answer
79 views

How do I “restart” a touch event in Android?

I have a custom View and I'm overriding onTouchEvent(MotionEvent). I've implemented pinch-zoom in this view as described in the article Making Sense of Multitouch. The issue I'm having is that this ...
1
vote
2answers
226 views

building an Android Status Bar like the New York Times app

The New York Times Android application has something like a notification bar at the top. I suspect this is an included layout with a text view. The thing is that they managed to drag that title down ...
1
vote
1answer
78 views

Custom View Question

I am new to Android development and I have a question regarding custom views and using xml for view customization. So i my code I am having a view defined using the extended view class i.e. ...
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
4answers
2k views

Android more complex ListView tutorial

I've just started out coding for Android but am struggling to get my head around listviews. For example I need to understand how I can show another listview when clicking on an item in the first ...
1
vote
1answer
632 views

Adding image to custom tab

I use this example for creating custom tab. I don't know how to add image in tab view. I try adding ImageView element in tabs_bg.xml but image is not displayed, only text <ImageView ...
1
vote
1answer
106 views

Referencing custom view in XML doesn´t work both documented ways?

<com.test.www.BrushPreview android:id="@+id/brushview" android:layout_width="100dip" android:layout_height="100dip" android:layout_gravity="center" /> and this not: <View ...
1
vote
1answer
406 views

Multiple views not showing up in custom alert dialog

Edit: Lesson learned: set the orientation or stuff might not show up. As per http://developer.android.com/guide/topics/ui/dialogs.html#CustomDialog I'm trying to create a custom alert dialog. ...

1 2 3