|
Im pulling a list of product objects from a database call and I want to build a ListView of the data in my activity with a non-scrolling header and footer. Each row will consist of a product thumbnail, some data and a button arranged horizontally. I understand...
Started by Eno on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
There are a number.
The easiest way to have a complex row in a ListView is via a SimpleAdapter.
|
|
I am trying to revamp our build process, which is currently a gigantic Ant build.xml that calls into other ant build files and executes several Java classes to perform more complex logic that would be impossible/scary to attemp in Ant.
Background:
experience...
Started by Instantsoup on
, 14 posts
by 14 people.
Answer Snippets (Read the full thread at stackoverflow):
I solved some very complex parts of our build process by simply more general purpose ....
Maven just makes the problem worse because of executing external Java code .
A complex build and learning the f@*#ing "magic" of Maven.
|
|
Hi Guys, I am currently considering the best way of building a relatively complex page in asp.net mvc. The page (and pages like it) will contain numerous 'controls' such as a shopping basket, recent news widget, login controls and more. In other words...
Started by Sergio on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
What you need to understand that there is currently no way to make these partial ... .
You could of course use JavaScript to populate the page sections but then this content will not be accessible to search engines (but that probably does not concern you) .
|
Ask your Facebook Friends
|
It is often handy to have a canonical representation of a language (in my case they are usually domain specific languages); however, I believe there are strict limits on the expressiveness of the languages involved that determine whether a canonical form...
Started by rcreswick on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
By "canonical representation" I assume you mean the following: Call programs P and Q equivalent if they "do the ... .
It seems to me that compiling into an assembly language could be categorized as translation into a canonical form in a practical fashion .
|
|
[Book] isbn(PK),title,category_id,subcategory_id,price
[Author] isbn(FK),author_id(PK),name
[Category] category_id(PK),name
[SubCategory] sub_category_id(PK),category_id(FK),name
I have a database (not designed by me) that contains the above four tables...
Started by bobo on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
And Book.SubCategory_ID = SubCategory.Sub_Category_ID
When you find yourself building an "extremely complex SQL, the query becomes a lot less complex, something along the lines of:
select b.isbn, b.title, b.author and this is one....
|
|
I need to build a primary key consisting of 3 sections.
The first section is 3 letters long and must be an a followed by two digits eg "a00" The second section is a 3 digit unique identifier INCLUDING LEADING ZEROES, example "003" The third section is...
Started by Tarks on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Now "meaning....
My question is: do any of these three values have meaning by themselves? Or are they simply components of a primary key? If they have absolutely no other meaning then imho you are better off just creating a single column with the whole value .
|
|
I am trying to build an SQL Statement for the following search scenario:
I have trying to return all of the columns for an individual record for Table A based on the value of the status column in Table B. Each record in table A can have multiple rows ...
Started by Michael Kniskern on
, 6 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
--Approved
exists(select 1 from B where A.id = B.id and status in (1,6)) and not... .
For the ones where all values must be something then you would add a not exists against the other possible values .
Looks like you would want to use some exists statements .
|
|
I built a web application that uses Yahoo Geocoding API or Google Maps API to validate the user's address. Now I want confirm if the user need to enter an apartment (or suite) number by the exact address I have.
Maybe there is an API that provides both...
Started by ShayN on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
For some important or noteworthy buildings, hospitals, parks, and other significant landmarks the Google....
Both Google's and Yahoo's geocoding services do not offer that level of accuracy, at least at the moment, for residential buildings.
|
|
It was just mentioned that I'm "not exactly building the Sistine Chapel." This is true, but I am building a freight management application, which isn't exactly as simple as drawing controls on a form (even though the vendors would have you believe it ...
Started by John MacIntyre on
, 36 posts
by 36 people.
Answer Snippets (Read the full thread at stackoverflow):
You can tell that it is so complex that 10 people....
Maybe you can not tell why it is complex but you may reference labour on complexity.
To think through each use case until they realize how innately complex the process is.
|
|
I'm building a client-side WMS parser (flex/ActionScript 3) & i'd like to test against as complex a WMS mapserver as i can find. can anyone point me to some sites?
thanks.
Started by coldfusionPaul on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Yeah....
Http://www.skylab-mobilesystems.com/en/wms_serverlist.html http://onearth.jpl.nasa.gov/
You can also easily setup your own to test non tested features you might have with the above:
http://mapserver.osgeo.org/ogc/wms_server.html
excellent, thanks .
|