[android-developers] Re: Android Toast is not clickable in some devices.

2014-01-21 Thread 12169
Hi, I want to open a message on the setting screen, and message should be close when user click on the message. and items of the settings screen remain clickable even when the message is visible on the setting screen. On Sunday, January 19, 2014 5:55:21 PM UTC+5:30, 12169 wrote: Hi, any

[android-developers] Is there any permission control on the sender of INSTALL_REFERRER?

2014-01-21 Thread posaidong
Hello, My APP will use action com.android.vending.INSTALL_REFERRER for install referrer tracking, but seems that I can easily write an small APP to broadcast intent with this action. Intent testIntent = new Intent(com.android.vending.INSTALL_REFERRER);

Re: [android-developers] PDF files search utility

2014-01-21 Thread Jadranko Bodiroga
you can find on internet lot of tools for smart search in windows with previews...most of them are free...but if you want to pay,i am intrerested to create some software :) On Mon, Jan 20, 2014 at 6:15 PM, olegkon oleg...@gmail.com wrote: Hi, I am an IT, have 1000s of books (most in PDF) on

Re: [android-developers] PDF files search utility

2014-01-21 Thread Jadranko Bodiroga
Try in Csharp to find some code to do it..example: PdfDocument doc = new PdfDocument(file.pdf);string textToSearch = some text;for (int i = 0; i doc.Pages.Count; i++){ string pageText = doc.Pages[i].GetText(); int count = 0; int lastStartIndex = pageText.IndexOf(textToSearch, 0,

[android-developers] LocationClient stops all location updates from device

2014-01-21 Thread Leandro Garcia
recently I changed from LocationManager to the new LocationClient, but I have a strange problem: When I change from one location provider to another(going to config-location settings) sometimes it stops reciving locations updates, and, for some reason all the others app in the device that

Re: [android-developers] Re: Android Toast is not clickable in some devices.

2014-01-21 Thread Michael Banzon
Forget about using toasts. Look up how Facebook made the chat heads feature. I'm sure there must be some great tutorials out there by now ;-) On Jan 21, 2014 10:01 AM, 12169 ashish.a...@gmail.com wrote: Hi, I want to open a message on the setting screen, and message should be close when user

[android-developers] data-roaming setting page does not open correctly on some devices.

2014-01-21 Thread 12169
I use the below code to open data-roaming setting page. if(bvBuild.VERSION_CODES.JELLY_BEAN) { Intent intent=new Intent(Settings.ACTION_DATA_ROAMING_SETTINGS); ComponentName cName = new ComponentName(com.android.phone,com.android.phone.Settings);

[android-developers] Re: Rating Hijacking !

2014-01-21 Thread Nobu Games
I'm still far from being top or even mid-tier in terms of app downloads but this morning I also got my first 2-star mystery rating for a paid app of mine - no comment and no Google+ name I could respond to. That didn't happen to me so far since most users tried the free version first and then

Re: [android-developers] Re: Android Toast is not clickable in some devices.

2014-01-21 Thread TreKing
On Tue, Jan 21, 2014 at 2:58 AM, 12169 ashish.a...@gmail.com wrote: I want to open a message on the setting screen, and message should be close when user click on the message. and items of the settings screen remain clickable even when the message is visible on the setting screen. That

[android-developers] Is it possible to split only some items into the bottom with split ActionBar?

2014-01-21 Thread davidshe...@googlemail.com
Hi, I am trying to implement a action bar style like https://developer.android.com/guide/topics/ui/actionbar.html#SplitBar. But I only want to split one of my customized menu item into the bottom. The *android.support.UI_OPTIONS* is applied to the manifest, not to the menu items. Is it

Re: [android-developers] Is it possible to split only some items into the bottom with split ActionBar?

2014-01-21 Thread TreKing
On Tue, Jan 21, 2014 at 10:54 PM, davidshe...@googlemail.com davidshe...@gmail.com wrote: I am trying to implement a action bar style like https://developer.android.com/guide/topics/ui/actionbar.html#SplitBar. But I only want to split one of my customized menu item into the bottom. The