A tag for questions related to building and using custom graphical widgets on the Android platform.

learn more… | top users | synonyms

0
votes
3answers
28 views

Android will crash depending on layout positioning

Here's the layout that works : <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/mainlayout" ...
0
votes
1answer
13 views

setlayoutParams() throws an exception

I'm working on a subClass that extends from RelativeLayout, and have a OnScaleGestureListener. I want that when you scale on the view, the height of this change(it's like scalaing, but resizing the ...
0
votes
0answers
21 views

Custom View stealing focus from Button

This is my xml file for the layout. <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/idtop" ...
0
votes
0answers
10 views

Layout displaces (which has CustomView) when keyboard goes away

Hope your doing well :) I am trying to develop my android multiplayer application which uses surfaceView (in CustomView) to draw some picture and other uses guesses it. Now this part of code is one ...
0
votes
1answer
22 views

How to set OnItemClick Listener in custom Listview for each row list that different activities

i created a custom Listview with two images and one text view in each row. I want to open a new activity for each row in the custom listview when i click on the rows. here is my mainactivity codes. ...
0
votes
1answer
25 views

Adding View - Android

I have a custom view. I am trying to add multiple arrray values. But its just printing the last one. For instance check the below code. I am trying to dispay schedulePeriod.scheduleMatchups.get(i). It ...
1
vote
0answers
160 views

Android Studio layout editor cannot render custom views

In Android Studio, the layout editor cannot preview custom views in xml. Very simple example: public class MyCustomView extends FrameLayout { public MyCustomView(Context context) { ...
0
votes
1answer
24 views

Custom ImageButton View

I made a custom button that is an odd shape so I overrode the `dispatchTouchEvent. Then I added a onTouch listener to make the image change when touched. The onClick attribute stopped working so I ...
0
votes
0answers
15 views

How to change column number of MultiColumnListView correctly?

https://github.com/huewu/PinterestLikeAdapterView Using pinterest like adapterview, i have declared it to have 2 columns by default. When I change column I am feeding 2 different adapters ...
0
votes
3answers
41 views

Add custom font to all LinearLayout textviews

I add Linear Layout and multiple textviews programmatically and set custom font to texts, i did it in the bellow way and its works perfectly . MainActivity 1: public class MainActivity extends ...
-1
votes
1answer
20 views

Is there any open source project with a “Drag and Drop to unlock” component like the unlock screen of ICS? [closed]

I'd like to use a widget in my app like the one in the Unlock Screen of the Android ICS (4.0). You can see what I'm talking about with this picture: So, I'd like a component that I can drag the ...
0
votes
4answers
20 views

Resize Imageview based on the parent height

I have a layout as defined below <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="wrap_content" ...
-1
votes
1answer
63 views

How to make Pinterest style list view?

I was trying to make a list view style "Pinterest" But it must have considerable skill. Because memory management should be required. List-view structure of the adapter that you are currently viewing ...
0
votes
1answer
104 views

SherlockActionBar: How to adjust CustomView against actionBar

Question: How can I have the title back? Here's the screenshot (Missing title): Actionbar setting: ActionBar actionBar = getSupportActionBar(); actionBar.setTitle("My Title"); ...
0
votes
3answers
79 views

Android - Custom Listview Scrolling is Very Slow

I've got a listview which sometimes inflate a XML (TextView Item) or another XML (TextView+Image Item). And i followed these instructions to get a better performance. ...
0
votes
1answer
32 views

How to connect database from custom view [Android]

I have this database connector class with a constructor as follows public class DBConnectionTableTVShow { public DBConnectionTableTVShow(Context ctx){ this.context = ctx; dbh = ...
-5
votes
0answers
55 views

Whole custom ListView in Android [closed]

Can anyone tell me if it's possible to create a whole custom List in Android. I don't want to do just custom rows with a picture or something like that. I would like to build the List from the Middle ...
0
votes
0answers
46 views

Coverflow with custom layout in android

I want coverflow with the layout that i given above. i tried several famous link of coverflow but they are only for the imageview, i can not make my layout to that coverflow. So any suggestions of ...
0
votes
1answer
19 views

Getting Height and Width for a View Failure

I am implementing a new class that extends CheckBox In the constructor I am giving it a specific dimensions like this: setHeight(size); setWidth(size); measure(size, size); But whenever I call ...
0
votes
2answers
29 views

Android Access toggle button status from a custom view

I have an activity Select_episode. This creates an adapter of CustomListViewAdapter which contains a toggle button. In the CustomListViewAdapter, I can check the status of the toggle button in the ...
0
votes
1answer
34 views

CustomView in GridView

I want to display my own custom View in a GridView. I tried with this Code: GridView gv= (GridView) rootView.findViewById(R.id.TerminGrid); Cursor cr = db.rawQuery(DatenbankManager.GET_TERMINE, ...
1
vote
2answers
58 views

Custom view (button) background selector doesn't work

I have simple custom button: public class myButton extends Button { public myButton (Context context, AttributeSet attrs, int defStyle) { super(context, attrs, defStyle); ...
0
votes
0answers
25 views

Getting view for listitem

I use a custom ArrayAdapter but I'm experiencing a strange problem when getting the views for each item. In my onActivityCreate I add the earlier created items to an ArrayList which I then give to my ...
0
votes
1answer
53 views

Custom linear layout

I'm trying to make my own LinearLayout to make it reusable and modular. first my code looked like this, which worked fine: mLlHeader = (LinearLayout)view.findViewById(R.id.ll_header); ...
0
votes
2answers
35 views

Build Custom View with allways same Layout

I have made my own layout for a Button. Normaly I create a View by this: LayoutInflater inflater = LayoutInflater.from(getActivity()); myButton = inflater.inflate(R.layout.mybutton, null, false); ...
0
votes
1answer
30 views

how to go from swing to android for view updating?

New to android programming but what I am trying to do is I have this piece of code that I wrote back some time using Swing. I looking to be able to convert this to do the same in android. the ...
0
votes
0answers
51 views

custom layout with child

I am facing a problem. I created a custom layout. I need to expand and collapse these childview on click of expandable layout. how can i do this for all expandable view's in my this sample app. i ...
0
votes
1answer
18 views

How to implement onClickListener only when is image click?

I have image like pieces of pizza, and I want implement onClickListener only when I click on pizza?
0
votes
1answer
53 views

How to nicely cut long text using Android canvas.drawText?

I'm developing my own custom control. It's rectangle with a text inside. Text could be longer then rectangle so I need to cut it. Please help me style clipped text to make it understandable that there ...
0
votes
1answer
65 views

Populate list of custom view using ListFragment

I am trying to show elements in a list view using Fragments. I created my custom view as follow graphical representation of list_row.xml list_row.xml <?xml version="1.0" encoding="utf-8"?> ...
0
votes
0answers
35 views

How to increase size of Android ActionBar containing custom view?

How can I get the stock Android ActionBar to grow so that a moderate-sized custom view contained in the action bar is not truncated? I am using tabbed navigation on the action bar and the custom view ...
0
votes
1answer
29 views

Getting an error when trying to create my own view class?

Hey guys I am getting an error when trying to create view in my MainActivity. Below I have provided a small bit of my code from my custom GridView and Activity. For some reason when I am trying to ...
1
vote
0answers
73 views

How can i handle setOnScrollListener for Custom View android

I have a list view where i created custom adapter. I am displaying a button when i swipe right, so i have setOnTouchListener. My problem is i want to remove the button and display another button when ...
0
votes
1answer
18 views

Clear the previous selected View Background and change the background of newly selected View in Onclick - Android

I want to change the background view when it's pressed (its working). My problem is, If i press the other view (not the same one) in the list, i want to set my background to Black of the newly ...
1
vote
0answers
32 views

Android: inflated view do not show in customed ViewGroup

I made a customed view by extending ViewGroup, my problems is: when adding a child( addView(chileView) ) view into ViewGroup, if the child view is a inflated view, the child view will not show. but ...
0
votes
0answers
66 views

java.lang.UnsupportedOperationException with android canvas.clipPath

My understanding is that this type of error is associated with using hardware acceleration when calling canvas.clippath method because it is not supported by hardware acceleration. In the app's ...
1
vote
1answer
85 views

Get the total count of number of rows in the Custom Listview Android

I am trying to getting the total Count of the getView custom listview. But want to display in the different layout. Here is my onCreatedView. I am not sure how to inflate the layout. Thanks for all ...
0
votes
2answers
48 views

How to get `ListView` item to wrap_content starting from right side of the screen?

I have a ListView that has a custom adapter to provide a customized View. Each list item "changes" the side of the screen it is on (as if you flipped it around a vertical axis). Here's an example of ...
0
votes
2answers
36 views

onClicks in a custom view are not responding:

I have created a custom view in which I want to implement some onClick actions. I created the following: Custom View XML Layout: <?xml version="1.0" encoding="utf-8"?> <LinearLayout ...
0
votes
1answer
65 views

Error in implementing a custom view in android:

I'm trying to implement a custom View in my application. I went over this page: http://developer.android.com/training/custom-views/index.html and I have created the following: XML: <?xml ...
0
votes
0answers
38 views

onKeyDown inside custom viewPager that has been added through code in an activity

There is one activity in which I am loading one layout and on some click event I am adding a ViewPager by calling addView(customViewPagerInstance) customViewPagerInstance contains three separate ...
1
vote
1answer
62 views

Colliding point of graph in android by using achartEngine in android

In my android application i have developed Graph functionality using aChartEngine android.Every thing fine .I need to draw a circle on the two time series colliding point in graph.Below i show the ...
0
votes
2answers
55 views

onItemClick - Get item at position from GridView with CustomAdapter

I have a gridview that populates a contact's information (an image, name and phonenumber) by using custom adapter. On the click of a particular item, i want to retrieve the contact's information(info ...
1
vote
1answer
36 views

How is declare-stylable name linked to the view that uses its attributes?

Usually al examples of custom attributes are of the form: <declare-stylable name="MyView"> <attr name="name" format="string"/> </declare-styleable> and its usage: ...
0
votes
2answers
59 views

Inflating custom View in ListView according to position

I have a ListView where I would like to inflate a custom View at a certain position. It's actually the 11th item (position 10). The getCount() method returns 11. Here is the top part of the ...
0
votes
3answers
50 views

Custom Layouts for ListView Breaks OnItemClickListener

When using a custom layout for an item in listview, it turns out that OnItemClickListener does not fire. Previously, I was using android.R.layout.two_line_list_item. All I did was swap out this ...
1
vote
1answer
67 views

List View gets cleared when orientation changes in android. ( Using a customAdapter, List<Class Object> )

Im stuck in here... In my app, i implemented a Listview with a CustomAdapter. The Customadapter is made from a List object, that is, List. And the addition to this List is dynamic. And this ListView ...
0
votes
1answer
64 views

JSON data not getting loaded into custom listview

I am not able to load the custom listview with my json response. Here is my code. // my activity public class LocalExploreActivity extends Activity { ListView lvEvents; JSONAdapter adapter; ...
0
votes
1answer
62 views

Custom view and Progress dialog with threading in Android

I have a custom view on which I draw words and images of different sizes. Because I need to perform all kind of calculations on various user actions and they can last 3-4 seconds, I need to implement ...
4
votes
2answers
36 views

Compiled version vs. Minimum required version Android

In my custom view I'm using the method drawTextOnPath(...) which is not supported for hardware acceleration until 4.1. So I wanted to add an if statement which checks the current Android version on ...

1 2 3 4 5 10