The custom-view tag has no wiki summary.
4
votes
4answers
195 views
Custom Seekbar with masking effect with two drawables?
I am using a custom seekbar to show a graph. I had done till this. I am showing this graph by applying a background drawable to the seekbar. Now my problem is, I need to set the blue one as progress ...
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:
...
0
votes
0answers
66 views
UITableViewCell's custom selectedBackgroundView with round corners
I have designed my Custom TableViewCell which has custom selectedBackgroundView+ some other features.
Issue:
In TableView 'Grouped' Style, First & Last Cell should have round corners on ...
1
vote
0answers
99 views
Custom view and ActionBarSherlock
I created a custom view (the title of my app) in order to apply a font ttf. The problem is when the device goes into landscape mode and tabs go to actionbar, my title is shrinking.
Anyone know a ...
0
votes
1answer
53 views
Android User Interface Like Unlock Patter Android
I'm very new with Android Development and I've maybe a very easy question.
I want to make a something like a draw/game application to practice with the user interaction.
but I want it to work and ...
0
votes
1answer
115 views
How can I show a custom map in Android?
I'm new using maps on Android, as a custom map I mean a map built by my own Server of Maps (I'm using GeoServer with WMS) Should I create a custom view or can I use a MapFragment?
Or any library that ...
0
votes
1answer
23 views
How to replace my CustomView with different Xib's
I placed one customView on my window in .xib file.
In that CustomView I have to load different views(xibs consist of CustomViews) from different xib files.
I am able to display any of those xib's for ...
0
votes
1answer
127 views
iOS - Custom view with touch event
I'm trying to creating a custom UIView, lets call it FooView.
FooView.h
#import <UIKit/UIKit.h>
@interface FooView : UIView
@property (nonatomic, strong) UITextField *barTextField;
@property ...
0
votes
0answers
178 views
Android AlertDialog with rounded corners: rectangle seen below corners
I want a Dialog with rounded corners, but when the Dialog is seen there's a rectangle below it that's seen below the corners, like this:
I build the dialog using a custom DialogFragment:
public ...
0
votes
0answers
58 views
Display border around the objects without custom selector in Android
I need to show the border around the objects but without determining selectors for them.
The problem is that our app is built and there are a lot of buttons. It is hard to change so many items. But ...
0
votes
1answer
80 views
Movable Custom UIAlertView over a tableView
I made a custom UIAlertView as Follows :-
1) I made a subclass of UIView which is of the size of the UIWindow and made its background Color as Clear , I made such so that , the user is not able to ...
0
votes
3answers
110 views
declare properties with same name but different types
I am trying to declare properties for to different classes some of the properties have the same name but different types on different classes. Here is my code:
<?xml version="1.0" ...
0
votes
0answers
126 views
How can I write a macro to automatcially print a Custom View in Excel
I have created a Custom View in Excel for a tab. This Custom View has certain columns hidden so that I can easily print a report. I decided to create a Custom View so that I could avoid writing all of ...
0
votes
0answers
130 views
Buttons on my custom UINavigationController are not working in iOS 6
I am using a custom UINavigationController in my application. Its working fine in iOS 5 but in iOS 6 it is not working. Even its delegate for button sender are not calling as when user click on any ...
0
votes
1answer
96 views
Custom UIAlertView: CODialog showing at top left corner
I'm using CODialog for my custom UIAlertView and it works (meaning it pops up), but my problem is that it's not popping up in the center of the screen, and after popup the buttons don't function. I ...
-1
votes
1answer
36 views
Share layout dimensions between custom views?
So i have two custom views. I need to know the pixel dimensions of my custom view and i got it the following way:
protected void onSizeChanged(int xNew, int yNew, int xOld, int yOld)
{
...
0
votes
0answers
45 views
White gap above NSMenuItem custom view after menu update
I've made custom NSView for my Status Item app using this tutorial:
Gap above NSMenuItem custom view
Everything is working fine except the fact that every time I'm updating the NSMenuItems inside the ...
0
votes
0answers
98 views
Using Custom views in SP2013 document sets
In sp2010 with a document set content type in a library i can have a default view on the library, showing my document set content types and on the welcome page of the content type i can define a ...
0
votes
1answer
50 views
Fitting View into Actionbar
I'm working on integrating a custom view into the action bar. Currently I am successfully getting the view to display. However some of the view is appearing off the edge of the action bar boundary.
...
0
votes
1answer
185 views
iOS UITextField custom keyboard
I've a custom keyboard view on my app positioned at the bottom of my screen, it's based on Fabrizio Prosperi's FPNumberPadView.
I also have a couple of UITextFields, I want this keyboard to ALWAYS be ...
0
votes
0answers
53 views
I get “java.lang.RuntimeException: Unable to start activity ComponentInfo” when importing custom view
I am trying to use custom view from "tutorial How to take advantage of the pinch-to-zoom feature in your Xperia™ X10 apps – Part 2" here, I copied the classes related to the custom view to the ...
1
vote
1answer
481 views
UIScrollview not working even after adding setcontentsize
I add a custom view to my UIViewController dynamically. It adds perfectly now, no exception.But the screen is stuck. My scrollview is not functional. I got this problem earlier and people suggested ...
-1
votes
1answer
65 views
Validating dynamically created custom views in iOS [closed]
I have a UIViewController with an Add button and a save bar button.
The User clicks a button and then a custom view gets added to the UIViewController. My custom view has 5 text fields, 2 drop downs ...
1
vote
1answer
114 views
Scroll view not functioning after adding custom controls
I am developing an app where i click a button and a bunch of controls (custom view) add at the bottom of the screen. I can click the button as many times as i want. So i end up adding controls at the ...
1
vote
1answer
608 views
How to connect custom UIView in interface builder using storyboards?
I want to use an F3BarGauge ( http://www.cocoacontrols.com/controls/f3bargauge ) in my iOS app and I want to use a .storyboard for my UI design, because I read that this is the newer way to do this in ...
0
votes
0answers
154 views
Android: custom TableLayout not detect OnGestureListener.onFling(…)
I have a custom TableLayout that has this code:
public class PageTableLayout extends TableLayout{
private static Context context;
private GestureDetector gDetector;
public PageTableLayout(Context ...
-1
votes
1answer
141 views
Android Rotating a set of bitmaps around a common pivot point
I am trying to create a game like Jigsaw Puzzle. I am using a class that extends View and in its draw method, I am drawing different bitmap pieces. When user tap a bitmap, I rotates that bitmap by 90 ...
1
vote
1answer
273 views
Unable to add custom view in linear layout - Android
I am adding myCustomView in a linear layout multiple times, it is working fine for first instance of customView, but unable to add it multiple times.
Here is the Custom View class:
public class ...
0
votes
1answer
45 views
Yet another custom UIView subclass
I would like to create a custom class by subclassing the UIView that would look like the one below:
Oh and the text says the body view should be 80px tall, its 50px.
But I cant seem to get it right. ...
1
vote
1answer
312 views
android animation on custom view that was added to windowmanager
I have an custom view that was insert to windowManager for drag capabilities, and overrides the OnDraw method. I'm trying to animate it with translate animation but the animation doesn't start( also ...
0
votes
2answers
222 views
Android NullPointerException in custom view access
I have created a custom view name StepView . Here is the code for StepView.
public class StepView extends LinearLayout {
private Context cont;
private LinearLayout stepHolder;
public ...
0
votes
1answer
116 views
Catch BackButton inside Custom View
I want to report Video position when user presses back button. Video is played inside a Custom View implementation which is a part of SDK. So i dont have access to Activity's backButtonPressed method.
...
0
votes
0answers
61 views
How to put data from server in a custom call out view in mapkit and reshape it accordingly?
i have a custom callout which is a nib that appears when we tap on map pin.That part is fine ,but what i need is that i need a custom view that is not loaded from nib or it should reshape itself ...
0
votes
5answers
781 views
custom view helper error in zend framework 2
I cannot seem to register a custom view helper in zend Framework 2.02 I tried all solutions posted here and anything I can think I should do but I keep getting this error:
Fatal error: Class ...
0
votes
0answers
125 views
Android custom view and XML
I can't figure out what's wrong with the code.. I tried several different things and nothing works.. So I have a class that extends a View because I need to do my own onDraw, and an xml where that ...
0
votes
2answers
145 views
UIButton not working in a custom UIImageView
I am using a custom view and there is a UIButton in it but it is not working. Of course the button is inside the custom view. It's driving me crazy. I tried by self.isUserInteractionEnabled = YES;, ...
1
vote
1answer
82 views
Suggestion on UIView layout
I want to create a 4x4 grid of squares (each square separated by some space). As a user pans his finger from one square to the other, I want to highlight the squares and draw line between the squares ...
0
votes
2answers
185 views
Android: Custom Controls/Inflating an XML onto a layout?
Can any help?
I have a standard layout and i have to populate it at runtime with a number of controls/views i.e. TextView / EditText depending on the number of products that come back from a REST ...
1
vote
2answers
105 views
How to make each customLabel on their own line?
I tried to create a custom UIView with 3 labels, name, book and chapter for a bookmark function in my listView. Now i want the labels to be in different lines in the tableView's cell. Which is the ...
2
votes
1answer
93 views
Overriding Session Controller Prevents custom views being used
Devise (2.1) was using my custom views fine until I told it to use a custom controller. Now it ignores my custom views.
Previously everything worked fine:
Tell Devise to use custom views in ...
0
votes
0answers
439 views
Sharepoint 2010 - Add Webpart now can't create custom views on other list
Created a webpart announcement list in sharepoint 2010,
Opened page with announcement list in SharePoint Designer,
Saved list as a webpart item,
Imported the webpart from file so it displays above ...
1
vote
0answers
57 views
Android CustomView behave abnormal
I am creating an application, in which a camera is showing with an option on screen to hide and show grids on the screen. I created this grid by CustomView and it was working fine. but when I hide the ...
0
votes
1answer
290 views
Android custom view can't use alignParentButton or wrap_content
I have a problem which I don't know how to solve. I have created a custom view and would like to align it to parrent buttom in a relative layout but when I do that the view gets transparrent?! How can ...
1
vote
2answers
272 views
Android Canvas.drawText not rendering
I have a custom view that draws several different things on screen. Each one has its own paint object. Everything is drawing fine EXCEPT the text. It works just fine in Gingerbread, but ICS+ has no ...
0
votes
1answer
713 views
android - Programmatically refresh (draw, erase, and update) shapes on custom View in background asynchoronously wihtout blocking the UI
Below is the CustomView class extending the View class. It works good statically.
I am clicking a button, it shows the targeted shelf, which I am headed to. Then I am clicking another button, it ...
0
votes
1answer
104 views
Custom View make visible an hide
I am writing a cocoa app. I have a hidden custom View. I want to make it visible by clicking show and I want to hide it by clicking hide. My idea was to make it like in a window.
my code:
- ...
2
votes
4answers
497 views
ListView inside another ListView
I've to make a horizontal list view inside a vertical list view. Both list views can have any number of elements and both needs to be scrollable.
How will I achieve this because I've read that ...
0
votes
0answers
374 views
Android - Error with enum at attrs.xml
I am trying to make a Custom View, and in that process, I need to add some new attributes. So I made attrs.xml file and I wrote like this.
<?xml version="1.0" encoding="utf-8"?>
...
1
vote
3answers
360 views
android canvas.drawText in custom view
I have a custom view in which i want to drawText with these parameters.
int stopY = 500;
// ...
Log.info("Drawing line " + line + " at " + String.valueOf(stopY));
canvas.drawText(line, 40, stopY, ...
0
votes
0answers
178 views
Custom View in UITableViewCell is cut off after scrolling
I have UITableView with custom UITableViewCells.
The Cells contain a custom view, which is a slightly modified version of SSCheckBoxView (available on GitHub)
When I scroll within the TableView and a ...






