[android-developers] payment suspension

2014-02-14 Thread BearTi
Hi, how can I set a payment suspension. I don´t have any options in my wallet? I´m sellings Apps over the Play Store... Is it even possible? Thanks -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to and

[android-developers] Re: Problem with "getScanResults()"

2013-10-08 Thread BearTi
Hmm, I don´t think the problem is caused because of my device what can you see in this bug-report? thanks -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsu

[android-developers] Re: Problem with "getScanResults()"

2013-10-08 Thread BearTi
How? What do u need? Am Dienstag, 8. Oktober 2013 21:14:55 UTC+2 schrieb BearTi: > > Hi, > > I´ve a big problem with the "getScanResults()" function. I always get "0" > as result. > > Here is my Code (it´s a service): > > pub

[android-developers] Problem with "getScanResults()"

2013-10-08 Thread BearTi
Hi, I´ve a big problem with the "getScanResults()" function. I always get "0" as result. Here is my Code (it´s a service): public void onCreate() { > super.onCreate(); > > wifiMgr = (WifiManager)getSystemService(Context.WIFI_SERVICE); > sharedPreferences =

[android-developers] cookie management under webviews

2013-06-21 Thread BearTi
Hi, when I´m set 180 Cookies in my WebView, these 180 cookies are saved and can be displayd again. When I´m create 181 Cookies, just 150 are stored (Number 32-181). Now when I set 181 Cookies, just 151 are stored and so on... Why is this so? Is it a bug or what are the maximum values for cook

[android-developers] Webviews: Problem with onReachedMaxAppCacheSize and setAppCacheMaxSize

2013-06-04 Thread BearTi
Hi, I´ve a little problem with my WebView. I´ve added a WebChromeClient it an want now to response when the cache is reached. Problem: The method "onReachedMaxAppCacheSize" is never called! Is this a bug? Want can I do? Also myWebView.getSettings().setAppCacheMaxSize(1024); seems not to wor

[android-developers] Is there an Intent or so when an app is starting?

2013-05-17 Thread BearTi
Hi, short question: Is it possible to get information about what app is launched in foreground respectively which app is starts? For example I want to get an information (maybe intent) when google-maps starts. Thanks -- -- You received this message because you are subscribed to the Google G

[android-developers] WebViews JavascriptInterface - Java Reflection

2013-05-15 Thread BearTi
Hi, I´m testing something with WebViews and the JavascriptInterface. Problem/Question: It it possible/How is it possbile to call a Method like this on the Website: Android.getClass().getMethod("Test", String.class).invoke(this, "Reflect 2") > I always get *Uncaught Error: Error calling metho

[android-developers] Re: WebViews: return an array to javascript-interface

2013-04-30 Thread BearTi
I´ve a defined a WebView with a JavaSciptInterface: myWebView.addJavascriptInterface(new WebAppInterface(this), "Android"); > In this Interface I have a Method like: @JavascriptInterface > public String [] getTest() { > String [] test = new String[5]; > test [0] = "0.."; > test

[android-developers] WebViews: return an array to javascript-interface

2013-04-29 Thread BearTi
Hi, I´ve a little problem with my app which displays a webview. I declare a javascript interface in my activity. Now I want to call a function on the website which returns an string-array. Problem: I always get "undefined" when I want to get the content of this array. *Android.getArray().length

[android-developers] how to download several apps automatically from the play-store

2013-03-04 Thread BearTi
Hey, how can i download several apps automatically from the play-store, like the top 10 of all categories. Is there something like a crawler? Thanks -- -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to

[android-developers] Re: Catch network traffic?

2013-02-14 Thread BearTi
Allright, thanks! Hmm but where can I get tcpdump? It´s in the store right? -- -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send e

Re: [android-developers] Catch network traffic?

2013-02-14 Thread BearTi
ercept and proxy it, or just account for it? > > Kris > > On Wed, Feb 13, 2013 at 4:33 AM, BearTi > > wrote: > > Hi, > > > > is it possble to catch all network traffic respectively to get all the > > network traffic that comes from a specific

[android-developers] Catch network traffic?

2013-02-13 Thread BearTi
Hi, is it possble to catch all network traffic respectively to get all the network traffic that comes from a specific app? (My phone is rootet) Thanks -- -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email

Re: [android-developers] W-Fi Connectivity Receiver

2012-12-21 Thread BearTi
UTC+1 schrieb Irfan Sheriff: > > On Fri, Dec 21, 2012 at 1:54 PM, BearTi >wrote: > >> I alos tried this, but here i only get a notify when the wi-fi function >> is being enabled/disabled... not when i lost the connection to a hotspot :-/ >> > > I do not fol

Re: [android-developers] W-Fi Connectivity Receiver

2012-12-21 Thread BearTi
ager.html#NETWORK_STATE_CHANGED_ACTION > > > On Fri, Dec 21, 2012 at 1:35 PM, BearTi >wrote: > >> Hi, >> >> I need a broadcast-receiver which react on state changes of the wi-fi >> connectivity. >> I don´t want to get an intent when the wi-fi is en

[android-developers] W-Fi Connectivity Receiver

2012-12-21 Thread BearTi
Hi, I need a broadcast-receiver which react on state changes of the wi-fi connectivity. I don´t want to get an intent when the wi-fi is enabled or disabled by the user... I just want a message when for the connection to one of the, in my phone configured wi-fi networks (supplicant), has been

Re: [android-developers] Read out status bar messages?

2012-09-18 Thread BearTi
Ok, thanks... are u really sure? :-) Am Dienstag, 18. September 2012 19:05:02 UTC+2 schrieb Kristopher Micinski: > > It is not. Why do you want to? > > kris > > On Tue, Sep 18, 2012 at 12:51 PM, BearTi > > wrote: > > Hi, > > > > short question:

[android-developers] Read out status bar messages?

2012-09-18 Thread BearTi
Hi, short question: (How) Is it possible to read out and/or delete the message in status bar from another app? Thanks! -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups

[android-developers] EditTextPreference: Problems with "android:dialogMessage"

2012-09-07 Thread BearTi
Hi, I got two questions: 1.) How can I make the Text "android:dialogMessage" in an "EditTextPreference" bold? I tried "Test1 Test2", but this don´t work! 2.) This "android:dialogMessage" is not shown direct over the Textfield where the User can type something... there es a padding of (i think

[android-developers] Widgets change in landscape mode

2012-07-16 Thread BearTi
Hi, I´ve a little problem with my widgets. I change the e.g. background color over remoteviews. Now every time I rotate my phone to landscape mode, the design (background color) is changes to the default value specified in the config file. How can handle this? thanks -- You received this mes

[android-developers] Broadcast-Intent on cell/position change?

2012-05-23 Thread BearTi
Hi, is there any Broadcast-Message which is send when my phone is connected to another Cell or when the position changed? I don´t want to pull for this information (for example every 5 minutes). Thanks -- You received this message because you are subscribed to the Google Groups "Android Develo

[android-developers] Extract a special SMS

2012-05-17 Thread BearTi
Hi, Is it possible to extract a special SMS (from a restricted sender) so that the normal SMS App don´t show a notification? I tried something like this: final IntentFilter filter = new IntentFilter(); filter.addAction("android.provider.Telephony.SMS_RECEIVED"); filter.setPriority(2147483647);

[android-developers] AlarmManager with "NightModus"

2012-05-03 Thread BearTi
Hi, I´ve implement an AlarmManager to update a widget every (for example) 2 hours. Now I want to develope a night modus so that for example the Alarm/Update is not fired beetween 0:00 to 8:00am. How can I do this? The update frequency and the "night off modus" should be set dynamically. Thank

[android-developers] Widget-Layout Problems/Questions

2012-04-10 Thread BearTi
Hi, I want to develope a Widget with a Shape (round edge) as background and 2 textviews in it. Here is what I got at the moment: http://schemas.android.com/apk/res/android"; android:

[android-developers] Change Shape backgroundcolor programmatically

2012-03-25 Thread BearTi
Hi, I´ve an LinearLayout with a TextView und the TextView gets as Background a Shape. So, how can I programmatically change the shapes Backgroundcolor? I don´t get it! Thanks -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to thi

[android-developers] Re: Requires Android in GooglePlay

2012-03-23 Thread BearTi
Ahh ... thanks! :) On 23 Mrz., 13:52, JP wrote: > That would be the uses-sdk part of the > Manifesthttp://developer.android.com/guide/topics/manifest/uses-sdk-element.html > > On Mar 23, 5:03 am, BearTi wrote: > > > > > > > > > Hi, > > > a  few

[android-developers] Requires Android in GooglePlay

2012-03-23 Thread BearTi
Hi, a few weeks ago I published my own app on google play. On the right site (in "about this app") there stand "Requires Android: 2.3.7 and up" ... Question: How can I change the Version? Thanks -- You received this message because you are subscribed to the Google Groups "Android Developers" g

[android-developers] AlarmManager.RTC don´t work

2012-03-20 Thread BearTi
Hi, I want to start a service for example every hour. I implement an AlarmManager: AlarmManager mgr =(AlarmManager)Main.this.getSystemService(Context.ALARM_SERVICE); Intent i = new Intent(this.getApplicationContext(), UpdateWidgetService.class); PendingIntent pi = PendingIntent.getService(this.ge

[android-developers] Re: Color-Ring

2012-02-24 Thread BearTi
Thanks! That what I mean! :) On 24 Feb., 04:30, Nikolay Elenkov wrote: > On Fri, Feb 24, 2012 at 2:49 AM, BearTi wrote: > > Hi, > > > I´m creating an widget and now I want (in the config app) to have a > >color-selection (ring). > > Is there a predefined method o

[android-developers] Color-Ring

2012-02-23 Thread BearTi
Hi, I´m creating an widget and now I want (in the config app) to have a color-selection (ring). Is there a predefined method or something like this for that? thanks! -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, s

[android-developers] read out a aesbite with javascipt content

2012-02-08 Thread BearTi
Hi, I want to write an App which reads out an Website. The problem is, that on this website content is loaded from a javascript and when i read out the response in my app this content is not displayed... I think the javascript need more time to load the content? So, how can I solved it? I hope I

[android-developers] GPS Status Listener

2011-12-22 Thread BearTi
Hi, I want to receive Events when GPS is tuned on and off. Here my Class: public class Main extends Activity { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentVi

[android-developers] Unique ID, but not IMEI, IMSI, MAC, AndroidID

2011-12-03 Thread BearTi
Hi, I´m building an App and now I need an unique ID fpr every phone which installs my App. * I know that the IMEI can be broken and set to an android backup IMEI (something like 0049990...). * Read out tThe IMSI or Phonenumber is not supported by all SIM-Cards * AndroidID can be change by the Use

[android-developers] BroadcastReceiver and result vom SMS_DELIVERED

2011-11-02 Thread BearTi
Hi, I´ve a BroadcastReceiver() which received the result when a send SMS was delivered... My Problem... when I send the first SMS, which cannot yet being delivered, and then I send a second SMS... how can I differ which SMS was delivered? Thanks -- You received this message because you are subs

[android-developers] SMS delivered receiver

2011-10-29 Thread BearTi
Hi, I´ve a SMS App which can send SMS. I also have a send and delivered Broadcastreceiver... Question: Is it possible to find out from which SMS e.g. the delivered-receiver was called, so that I can discern the SMS? Thanks -- You received this message because you are subscribed to the Google G

[android-developers] Re: Direct SMS send with saved outgoing SMS

2011-10-19 Thread BearTi
Is there a possibility to add the SMS after I send it via SmsManager in the SMS history? On 19 Okt., 15:33, Mark Murphy wrote: > On Wed, Oct 19, 2011 at 9:17 AM, BearTi wrote: > > No one an idea? Is it not possible? > > Either use SmsManager (no button click, but not reco

[android-developers] Re: Direct SMS send with saved outgoing SMS

2011-10-19 Thread BearTi
No one an idea? Is it not possible? On 18 Okt., 18:56, BearTi wrote: > Hi, > > in my App I want to send a SMS via... > > Uri uri = Uri.parse("smsto:1234567891012"); > Intent it = new Intent(Intent.ACTION_SENDTO, uri); > it.putExtra("sms_body&q

[android-developers] Direct SMS send with saved outgoing SMS

2011-10-18 Thread BearTi
Hi, in my App I want to send a SMS via... Uri uri = Uri.parse("smsto:1234567891012"); Intent it = new Intent(Intent.ACTION_SENDTO, uri); it.putExtra("sms_body", "The SMS text"); startActivity(it); ... because I want that the SMS that has being sent is in my built in SMS-App... with the PendingIn

[android-developers] Re: Read SMS without "content://sms/" ??

2011-10-14 Thread BearTi
Okay, thank u very much! :) I will try it via content-provider :-/ On 14 Okt., 15:23, Mark Murphy wrote: > On Fri, Oct 14, 2011 at 9:10 AM, BearTi wrote: > > Hmm, so every SMS Backup App does it that way, too. Right? :-/ > > Presumably. They suffer from the s

[android-developers] Re: Read SMS without "content://sms/" ??

2011-10-14 Thread BearTi
Thanks! Hmm, so every SMS Backup App does it that way, too. Right? :-/ (Alternative I could root my Device and read out directly the sqlite database mmssms.db or?) On 14 Okt., 14:53, Mark Murphy wrote: > On Fri, Oct 14, 2011 at 8:42 AM, BearTi wrote: > > how can I read out the SMS?

[android-developers] Read SMS without "content://sms/" ??

2011-10-14 Thread BearTi
Hi, how can I read out the SMS? I´ve read somewhere that solution by "content://sms/" is not good and future-proof , is that right or is this the only and best way? Thanks! -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this g

[android-developers] Re: List with seperators, checkboxes...

2011-10-14 Thread BearTi
Ok, thats what I wanted... It works perfect... One last question: When I store/set for example a boolean value to my "sharedprefences" object checkbox1... Ist this value stored until I deinstall this app? On 12 Okt., 17:44, TreKing wrote: > On Wed, Oct 12, 2011 at 10:37 AM,

[android-developers] Re: List with seperators, checkboxes...

2011-10-12 Thread BearTi
Ah, okay... :) Thanks! On 12 Okt., 17:44, TreKing wrote: > On Wed, Oct 12, 2011 at 10:37 AM, BearTi wrote: > > Whith which adapter or listview can I do this? > > That is a P

[android-developers] Re: List with seperators, checkboxes...

2011-10-12 Thread BearTi
u'll need to > create a layout or extend a view to make it like you want. > > Steven > Studio LFPhttp://www.studio-lfp.com > > > > > > > > On Tuesday, October 11, 2011 4:03:09 AM UTC-5, BearTi wrote: > > > Hi, > > > I´ve problems to

[android-developers] List with seperators, checkboxes...

2011-10-11 Thread BearTi
Hi, I´ve problems to built a list for my app. This list should have seperators, drop down menus and checkboxes. I´ve read many tutorials, but I can´t find a good one that solves my problem. (for expample which adapter I have to choose and so on) Do you have a good axample for my or some tipps?