A tag for questions related to building and using custom graphical widgets on the Android platform.
0
votes
1answer
12 views
Tabs go to top if i set customView of ActionBar on Android
I add tabs and viewpager to my project.
actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);
Everything is perfect until i set custom view of actionBar:
...
0
votes
1answer
40 views
custom text with dynamically giving text size according to the device pixel
i want to give custom Font . for different resolution i want to give different font size. which is the best way.
public class Chelsea extends TextView{
public Chelsea(Context context) {
...
1
vote
1answer
28 views
Android custom TextView that references another through xml
I am not quite sure this is possible but I want to reference a TextView from another TextView defined in XML.Hopefully the code illustrates what I am trying to do. If anyone could tell me if this is ...
0
votes
0answers
12 views
Static part of Custom View draw with shapes or draw ready made bitmap
I'm implementing a Custom View. The view is mostly static but reacts to touch gestures by moving text and basic lines.
I know that if I draw the background of the widget on the canvas using shapes, ...
0
votes
0answers
12 views
How can I prevent views from bleeding over edge of custom AlertDialog layout?
I've tried setting margins for the TextView, its parent LinearLayout as well as parents of that LinearLayout to see if the problem was related to nesting. Regardless of margins the largest TextView ...
0
votes
0answers
10 views
parsing web dynamic data by Json into custom listview android
Am a beginner in the android development .I am working on an App for online shopping .It shows the products in the custom Listview. The problem is that I need to fetch data regarding products from ...
0
votes
2answers
38 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
17 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
23 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
28 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
326 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
26 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
19 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
56 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
26 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
25 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
78 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
125 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
100 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
35 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
79 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
53 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
21 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
34 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
36 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
64 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
26 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
56 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
53 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
22 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
55 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
74 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
37 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
81 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
36 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
70 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
94 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
51 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
37 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
66 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
40 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
67 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
68 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
39 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:
...





