Re: [android-developers] How to redesign this basic page to be a little more??

2013-05-04 Thread TreKing
On Sat, May 4, 2013 at 11:42 PM, Dan Cha wrote: > But that is not very nice, so id like to know what route to take in order > to populate say maybe a grid or something to have it little easier to read > and manage > , maybe allowing for paging so that they arent scrolling forever once alot > of r

[android-developers] How to redesign this basic page to be a little more??

2013-05-04 Thread Dan Cha
Right now i have a very simple page, that has a ScrollView with a TextView within it to display results that are returned by my webservice. I have all the code posted here in another Thread for another issue: https://groups.google.com/forum/?hl=en&fromgroups#!topic/android-developers/ubmVCCW8nZI

Re: [android-developers] Re: How to get scrolling to just scroll endlessly when you swipe the screen up or down?

2013-05-04 Thread Daniel Chacon
bob, that worked like a charm, thank you very much.. On Sat, May 4, 2013 at 10:06 AM, Daniel Chacon wrote: > Thanks, i made the change tothe code, but need to test on the phone, so > ill know later when i get in front of the pc with the phone and run it.. > > thank you, ill post back my result

Re: [android-developers] Downloading and install apk files from own server

2013-05-04 Thread TreKing
On Sat, May 4, 2013 at 3:33 PM, dashman wrote: > My quest was the file to be downloaded and then the installation > process to begin automatically - along with the permissions review. > You could handle the URL yourself, download the file, then use PackageManager to start the installation. But

Re: [android-developers] Downloading and install apk files from own server

2013-05-04 Thread dashman
My quest was the file to be downloaded and then the installation process to begin automatically - along with the permissions review. Right now it just downloads - and the user has be be savvy enough to know the notifications bar and tap on the entry to start the process. I would like the instal

Re: [android-developers] Downloading and install apk files from own server

2013-05-04 Thread TreKing
On Sat, May 4, 2013 at 7:39 AM, dashman wrote: > On being sent the url to the apk file, i would like the file to be > downloaded > and installed automatically. > That is not possible. The user must review the app permissions and confirm the installation. > But some users are writing that it in

Re: [android-developers] Re: How to add a footer to each list item dynamically?

2013-05-04 Thread Παύλος-Πέτρος Τουρνάρης
Create a custom ListView adapter and attach a second listview on every item, where the last one should be the footer On Sat, May 4, 2013 at 2:00 PM, Vishal Pawale wrote: > You can create one listview per Item & add it to UI. > > eg. > > Create listView for Item1, then add that listview to UI. I

[android-developers] Re: Downloading and install apk files from own server

2013-05-04 Thread RichardC
Somewhere in settings "Allow untrusted installation" or something similar. On Saturday, May 4, 2013 1:39:10 PM UTC+1, dashman wrote: > > I have my apk file served from own server and have set the mime type > correctly. > > On being sent the url to the apk file, i would like the file to be > down

Re: [android-developers] Re: How to get scrolling to just scroll endlessly when you swipe the screen up or down?

2013-05-04 Thread Daniel Chacon
Thanks, i made the change tothe code, but need to test on the phone, so ill know later when i get in front of the pc with the phone and run it.. thank you, ill post back my results.. On Fri, May 3, 2013 at 10:53 AM, bob wrote: > Try changing this: > > *TextView textView = new TextView(this);*

[android-developers] Dragging a randomly moving animation

2013-05-04 Thread Boyd Speer
I need to drag an animation that is moving randomly within a small rectangle around the drag point. (If the image - a small cross - hits the side of the rectangle it will change direction and if not it will change direction after a countdown timer finishes.) When the cross is dropped the coord

[android-developers] Re: Exported receiver does not require permission - what should I do with BOOT receivers

2013-05-04 Thread Palmer Eldritch
Still interested in this 1. Why there is no warning : android:name=".receivers.TriggerMonitoringBootReceiver" android:enabled="false" > Does it mean that it won't work if exported="false" ? In this case : 2. Which intents are meant to be

[android-developers] Downloading and install apk files from own server

2013-05-04 Thread dashman
I have my apk file served from own server and have set the mime type correctly. On being sent the url to the apk file, i would like the file to be downloaded and installed automatically. But some users are writing that it installs only - then they have to click on the download notifcation to in

[android-developers] Re: How to add a footer to each list item dynamically?

2013-05-04 Thread Vishal Pawale
You can create one listview per Item & add it to UI. eg. Create listView for Item1, then add that listview to UI. Immediately after this listview add "More Items..." button. Now for Item2, create listView, append "More Items.." button then add it to UI. Iterate over all the Items, create listv

[android-developers] How to use MediaRecorder without a Preview Surface to catpure video for JB?

2013-05-04 Thread Baodong Chen
Hello,Guys: what i want to do is like this:http://stackoverflow.com/questions/1252172/android-how-to-initialize-mediarecorder-without-a-valid-surface-for-video-previ is it possiable? please help... -- -- You received this message because you are subscribed to the Google Groups "Android Develop

[android-developers] Re: New to Android

2013-05-04 Thread Vishal Pawale
http://developer.android.com/training/basics/firstapp/index.html Go through the lessons. On Wednesday, April 17, 2013 6:40:28 AM UTC+5:30, rlloyd wrote: > > I have a java file that I would like to incorporate in to an android > application. I'm not sure where in the code I put my java that I've