[android-developers] Re: When can every developer reply to reviews?

2012-12-02 Thread CMWiii
Alternatively the developers should be able to rate/comment on the users. This rating would show up on their comments. For example: User Comment This is a POS. Don't buy as I cannot download this to my iPhone! User Rating Stupid (Which means: You can ignore anything from this

[android-developers] Re: Sort order from content resolver

2011-11-05 Thread CMWiii
Yes, actually I have. Though I may have easily overlooked something they appear to be doing the same things as I am trying. Their sort string is "collate localized asc" which I have also tried to no avail. On Nov 5, 4:40 am, Mark Murphy wrote: > On Fri, Nov 4, 2011 at 10:29 PM,

[android-developers] Sort order from content resolver

2011-11-04 Thread CMWiii
Using content provider for contacts and can't seem to find a way to sort display_names without regard to case. For example the names "Able, Apple, agnostic" will sort as "agnostic, Able, Apple". My desire is to ignore case and have them sort as "Able, agnostic, Apple" which is what is actually do

[android-developers] Re: Picking an activity

2010-10-22 Thread CMWiii
The behavior of this is more like the chooser versus pick activity. (From my understanding) On Oct 22, 2:19 pm, TreKing wrote: > On Fri, Oct 22, 2010 at 4:14 PM, CMWiii wrote: > > I think that may be true if a default hadn't been previously selected. > >  However, I want t

[android-developers] Re: Picking an activity

2010-10-22 Thread CMWiii
I think that may be true if a default hadn't been previously selected. However, I want them to be prompted to select an app whether the default has been set or not. On Oct 22, 1:25 pm, TreKing wrote: > On Fri, Oct 22, 2010 at 11:41 AM, CMWiii wrote: > > I am using ACTION_PICK_AC

[android-developers] Re: Picking an activity

2010-10-22 Thread CMWiii
But it isn't. There are 4 options for the user to select from but the checkbox isn't there. The title says 'Select activity', lists the activities, and that's it. On Oct 22, 1:10 pm, TreKing wrote: > On Fri, Oct 22, 2010 at 11:41 AM, CMWiii wrote: > > But

[android-developers] Picking an activity

2010-10-22 Thread CMWiii
I am using ACTION_PICK_ACTIVITY to have users pick an app from a list. But how do you get the 'Use by default...' checkbox to show up at the bottom of the dialog? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send

[android-developers] Recents

2010-10-21 Thread CMWiii
Working on a little sub-project to do with task switching and I came across an oddity (for me) on RecentTaskInfo. If I start a browser (Dolphin for example) and then exit using their menu exit option what I see is that in RecentTaskInfo the id is still positive. In theory it is running because

[android-developers] Re: Programmatically switching GPS on/off (how do they do it??)

2010-10-05 Thread CMWiii
Quick settings app can also turn GPS on and off. On Oct 4, 2:57 pm, mrqzzz wrote: > Hi. > I red in these discussion groups that you cannot programmatically turn > on/off the GPS : Mark Murphy was exhaustive, as always. > But i found a 3rd party App, in the market, that creates a widget > capable

[android-developers] Re: Imageadapter problems

2010-09-25 Thread CMWiii
" statement. > > What's happening is, the views get recycled and reused for a different item, > but you don't set any values in that code path. > > -- > Kostya Vasilyev --http://kmansoft.wordpress.com > > 26.09.2010 5:00 пользователь "CMWiii" написал

[android-developers] Imageadapter problems

2010-09-25 Thread CMWiii
Hi, Having a problem with an image adapter. What I am trying to do is get a list of all the installed apps on my phone, display their icons and name, all in a grid with 4 columns. On first look all seems well but I see duplicates in apparently random locations and when I scroll back to

[android-developers] Re: Resolving activities

2010-07-11 Thread CMWiii
The end result is the same. Activity not found. For reference: Using ComponentName(Package, Class) produced the same values as unflatten(package/class). On Jul 11, 1:34 am, Dianne Hackborn wrote: > On Sat, Jul 10, 2010 at 5:39 PM, CMWiii wrote: > > "name" was just chosen

[android-developers] Re: Resolving activities

2010-07-10 Thread CMWiii
lass name; in > the activity info these are .packageName and .name. > > > > On Sat, Jul 10, 2010 at 3:52 PM, CMWiii wrote: > > Same result: > > >  used: > > myIntent.setComponent(ComponentName.unflattenFromString(Name)); > > > On Jul 10, 3:38 pm, Mark Mur

[android-developers] Re: Resolving activities

2010-07-10 Thread CMWiii
The line: ResolveInfo ri = manager.resolveActivity(exceptionIntent,0); should read: ResolveInfo ri = manager.resolveActivity(myIntent,0); On Jul 10, 3:28 pm, CMWiii wrote: > In a test app I pass an intent to resolveActivity to find out what is > the > best fit for the intent. > &

[android-developers] Re: Resolving activities

2010-07-10 Thread CMWiii
Same result: used: myIntent.setComponent(ComponentName.unflattenFromString(Name)); On Jul 10, 3:38 pm, Mark Murphy wrote: > Try setComponent() instead of setPackage(). > > > > On Sat, Jul 10, 2010 at 6:28 PM, CMWiii wrote: > > > In a test app I pass an intent to res

[android-developers] Resolving activities

2010-07-10 Thread CMWiii
In a test app I pass an intent to resolveActivity to find out what is the best fit for the intent. For example: Intent myIntent = new Intent(); myIntent.setPackage(PackageName); myIntent.addCategory(Intent.CATEGORY_LAUNCHER); myIntent.setAction(Intent.ACTION_MAIN); PackageManage

[android-developers] Re: Problem with Intents (I think)

2010-07-10 Thread CMWiii
gave the appearance that my app was hanging. I was able to verify this behavior outside of my testing. Both products came from the Market and both agreed there was an issue. Sorry for the time waster. On Jul 8, 2:28 pm, TreKing wrote: > On Fri, Jul 2, 2010 at 11:45 PM, CMWiii wrote: > &

[android-developers] Problem with Intents (I think)

2010-07-07 Thread CMWiii
New to Android so experimenting with some areas that are probably way over my head. Nevertheless, I will plow on. Top Level Description: I have an activity (call it ActA) that is started via 'startActivity' and is passed some data through a bundle. The data is an unflattened componentname which