Tagged Questions

A view is the generic term for the visual representation of some underlying data of a computer program.

learn more… | top users | synonyms

58
votes
4answers
30k views

Laying out Views in RelativeLayout programmatically

I'm trying to achive the following programmatically (rather than declaratively via XML): <RelativeLayout...> <TextView ... android:id="@+id/label1" /> <TextView ... ...
36
votes
4answers
7k views

Difference between a View's Padding and Margin

What is the difference between a View's Margin and Padding?
26
votes
3answers
24k views

How to make a smooth image rotation in Android?

I'm using a RotateAnimation to rotate an image that I'm using as a custom cyclical spinner in Android. Here's my rotate_indefinitely.xml file, which I placed in res/anim/: <?xml version="1.0" ...
25
votes
2answers
4k views

Generic Inherited ViewPage<> and new Property

Setup: CustomViewEngine CustomController Base CustomViewPage Base (in this base, a new property is added "MyCustomProperty") Problem: When a view is strongly typed such as: <@ Page ...
20
votes
2answers
13k views

Android : How to get root view from current activity?

I know how to get root view given a view v by v.getRootView(). I am able to get the view from button OnClick event where the argument is View. But how can I get the view in an activity? Regards, ...
19
votes
15answers
3k views

ASP.NET MVC reminds me of old Classic ASP spaghetti code

I just went through some MVC tutorials after checking this site out for a while. Is it just me, or does MVC View pages bring back HORRIBLE flashbacks of Classic ASP spaghetti code with all the ...
18
votes
3answers
29k views

Set margins in a LinearLayout programmatically

I'm trying to use Java (not XML) to create a LinearLayout with buttons that fill the screen, and have margins. Here is code that works without margins: LinearLayout buttonsView = new ...
18
votes
3answers
9k views

View array in Visual Studio debugger?

Is it possible to view an array in the Visual Studio debugger? QuickWatch only shows the first element of the array.
18
votes
5answers
36k views

Overlapping Views in Android

Is it possible to have overlapping views in Android? I would like to have an ImageView with a transparent png in the front and another view in the background. edit: This is what I have at the ...
18
votes
3answers
8k views

Can I have a foreign key referencing a column in a view in SQL Server?

In SQL Server 2008 and given TableA(A_ID, A_Data) TableB(B_ID, B_Data) ViewC(A_or_B_ID, A_or_B_Data) is it possible to define TableZ(A_or_B_ID, Z_Data) such that Z.A_or_B_ID column is constrained ...
15
votes
5answers
22k views

How to Set Opacity (Alpha) for View in Android

I have a button as in the following: <Button android:text="Submit" android:id="@+id/Button01" android:layout_width="fill_parent" android:layout_height="wrap_content"></Button> In my ...
14
votes
7answers
496 views

When to use a View instead of a Table?

When should a View actually be used over an actual Table? What gains should I expect this to produce? Overall, what are the advantages of using a view over a table? Shouldn't I design the table in ...
13
votes
1answer
4k views

Measuring text height to be drawn on Canvas ( Android )

Any straight forward way to measure the height of text? The way I am doing it now is by using Paint's measureText() to get the width, then by trial and error finding a value to get an approximate ...
13
votes
4answers
24k views

Qt jpg image display

I want to display .jpg image in an Qt UI. I checked it online and found http://doc.trolltech.com/4.2/widgets-imageviewer.html. I thought Graphics View will do the same, and also it has codec to ...
13
votes
2answers
9k views

ASP.NET MVC - View with multiple models

I am trying to generate such HTML <form action="/some/process" method="post"> <input type="hidden" name="foo.a" value="aaa"/> <input type="hidden" name="bar.b" ...
12
votes
2answers
9k views

Android: View.setID(int id) programmatically - how to avoid ID conflicts?

I'm adding TextViews programmatically in a for-loop and add them to an ArrayList. How do I use TextView.setId(int id)? What Integer ID do I come up with so it doesn't conflict with other IDs?
12
votes
3answers
10k views

SQL/Database Views in Grails

Does anybody know what is the best approach to accessing a sql view through Grails (or if this is even possible)? It seems an obvious way of doing this would be to use executeQuery against the view to ...
11
votes
5answers
6k views

Render basic HTML view in Node JS Express?

I have a basic node js app that I am trying to get off the ground using Express framework. I have a Views folder where I have an "index.html" file. But I receive the following error when loading the ...
11
votes
5answers
5k views

iPhone UIWebView slow loading to local HTML files

i'm developing an app that requires caching web pages (completely) along with their CSS files and images. so after saving the entire Html of the page ( going through the links to store each file ...
11
votes
1answer
3k views

How do I access the ModelState from within my View (aspx page)?

How do I access the ModelState from within my View (aspx page)?
11
votes
13answers
2k views

Why is using '*' to build a view bad?

Why is using '*' to build a view bad ? Suppose that you have a complex join and all fields may be used somewhere. Then you just have to chose fields needed. SELECT field1, field2 FROM aview WHERE ...
10
votes
2answers
964 views

Replace Fragment inside a ViewPager

I'm trying to use Fragment with a ViewPager using the FragmentPagerAdapter. What I'm looking for to achieve is to replace a fragment, positioned in the first page of the ViewPager, with another one. ...
10
votes
5answers
405 views

Touch two views at once on android

Here is my layout: <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" ...
10
votes
4answers
5k views

How do I style a gwt 2.1 CellTables headers?

I see nothing in the documentation except a reference to include some "CssResource" and get it with ClientBundle, but how do I exactly override the tbody and th of a CellTable? Is this possible?
10
votes
2answers
12k views

set the absolute position of a view in Android

Is it possible to set the absolute position of a view in android? (I know that there is an AbsoluteLayout, but it's deprecated...) Lets say I have a screen 240x320px, and I want to put an ImageView ...
10
votes
1answer
4k views

Animate change of view background color in Android

How do you animate the change of background color of a view in Android? For example: I have a view with a red background color. The background color of the view changes to blue. How can I do a ...
10
votes
6answers
2k views

Delphi: Good pattern/strategy for view <-> model synchronization

There's a lot of talk about model-view-controller, model-view-viewmodel, model-view-presenter and so on these days. What do you see as the best pattern for use with delphi and non-data aware ...
10
votes
2answers
8k views

Does JPA support mapping to sql views?

I'm currently using Eclipselink, but I know now days most JPA implementations have been pretty standardized. Is there a native way to map a JPA entity to a view? I am not looking to insert/update, but ...
9
votes
3answers
110 views

What are Python dictionary view objects?

In python 2.7, we got the dictionary view methods available. Now, I know the pro and cons of the following: dict.items() (and values, keys): returns a list, so you can actually store the result ...
9
votes
4answers
861 views

Django Class Based View Composite

I'm using Django 1.3's Class-base generic views for a project. They're really nice but I would like to be DRYer. I have a page that displays a list of press coverage we've received and another which ...
9
votes
4answers
2k views

How can I disable a view behind my SlidingDrawer in Android?

I have a SlidingDrawer that pops up from the bottom of the screen and fills the screen about 80%. Even though the SlidingDrawer view is in focus, it is still possible to click on items, buttons and ...
9
votes
3answers
2k views

how can you tell when an Android activity is finished loading?

I'm in the process of working on an automated test suite for our android app, and running into trouble waiting for activities to fully load. I can call getActivity, but just because it shows the ...
9
votes
5answers
4k views

WPF: how to signal an event from ViewModel to View without code in codebehind?

I have quite simple (I hope :)) problem: In MVVM, View usually listens on changes of ViewModel's properties. However, I would sometimes like to listen on event, so that, for example, View could ...
9
votes
1answer
1k views

How do you access the current RouteData from View in .net MVC?

If I want to directly access the RouteData (the current action or parameter values for example) from the View, rather than having to pass it in from the controller as part of the ViewData, what class ...
8
votes
0answers
124 views

Can views be used with parallel collections?

The idiom for finding a result within a mapping of a collection goes something like this: list.view.map(f).find(p) where list is a List[A], f is an A => B, and p is a B => Boolean. Is it ...
8
votes
2answers
179 views

MySQL view returns more results with an AND?

When I do this: select * from vw_active_employees where division IS NULL; --319 results Makes sense. And, then I do this... select * from vw_active_employees where division IS NULL AND udds IS ...
8
votes
3answers
4k views

Android: Saving Fragment state in ViewPager?

I tried out the sample code from the API http://developer.android.com/resources/samples/Support4Demos/src/com/example/android/supportv4/app/FragmentPagerSupport.html and it didn't really work so I ...
8
votes
1answer
1k views

GridView inside Expandable list in android

I want to put an gridview with images inside an expandable list...I've already make that, but the gridview don't show all item... IMAGE OF ACTUAL LAYOUT How can i make my expandable list child adapt ...
8
votes
1answer
865 views

How to show pending changes only for the currently opened solution in Visual Studio 2010 (TFS) and not the complete list of all changes?

is there a way to force Visual Studio 2010 to show pending changes only for the currently opened solution? I am working on multiple branches of the same project and changing the same files in most of ...
8
votes
4answers
1k views

Client Id for Property (ASP.Net MVC)

I'm a begginer in asp.net mvc, and I have a doubt: I'm trying to do a label for a TextBox in my View and I'd like to know, how can I take a Id that will be render in client to generete scripts... for ...
8
votes
2answers
1k views

MVC Preview 5 - Rendering A View To String For Testing

I was reading a post by Brad Wilson (http://bradwilson.typepad.com/blog/2008/08/partial-renderi.html) on the new ViewEngine changes to MVC Preview 5 and thought that it would be great to be able to ...
7
votes
4answers
5k views

Get focused View from ViewPager

i use the ViewPager for switching views with left/right swipe. The ViewPager needs an Adapter, so i builded this one: public class ListViewPagerAdapter extends PagerAdapter { protected static final ...
7
votes
5answers
864 views

Testing backbone.js application with jasmine - how to test model bindings on a view?

I had some interesting tribulations in trying to test whether views were correctly bound to events.  In backbone, we typically bind to events in the initialize method, using something along the lines ...
7
votes
4answers
904 views

Redraw a single row in a listview

Is it possible to redraw a single row in a listview? I have a listview with rows that are linearlayouts. I listen to a preference change and sometimes I need to change just one view inside the linear ...
7
votes
3answers
711 views

Android : Stop image scaling down

I'm trying to draw an image in a view but having problems trying to maintain the scale of the original image. Basically, I have a small view and I would like to show part of the image in the view. The ...
7
votes
3answers
2k views

ASP.NET MVC 2 generation of the List/Index view

ASP.NET MVC 2 has powerful features for generating the model-dependent content of the Edit view (using EditorForModel) and Details view (using DisplayForModel) that automatically utilizes metadata and ...
7
votes
1answer
327 views

How to set default XAML view in Visual Studio 2008

In Visual Studio 2008, when you add a new XAML window to a WPF Application Project, the default view you get is "split view" where the visual designer and the XAML code are shown one above the other ...
7
votes
2answers
5k views

Working with Partial Views in ASP.NET MVC

Background I'm receiving the following error when trying to render a partial view in ASP.NET MVC. I am new to ASP.NET MVC and am sure the error is simple to resolve and just stems from my lack of ...
7
votes
3answers
2k views

How to convert Perforce depot locations to client view locations

I'd like to know how to convert Perforce depot locations to client view locations for the purpose of script writing. I have a script that first checks out a file for edit in perforce and then ...
7
votes
2answers
521 views

ASP.NET MVC one route, two different views

I'm trying to design a homepage for an MVC site that has two different views, based on if the user is logged in or not. So image the default (not logged in) view is showing general, nonspecific info. ...

1 2 3 4 5 80