Apple pierwszy wśród producentów komórek
Do takiego wniosku doszli analitycy związani z Generator Research. Ich zdaniem firma z Cupertino do 2013 roku może zająć pierwszą pozycję wśród twórców smartphone
Informacja: 2009-01-14
Czytaj: Apple pierwszy wśród producentów komórek
Mac Games Arcade: sklep z grami na Maka
Darek podesłał mi link do bardzo ciekawego programu na Maka. Program nazywa się Mac Games Arcade i jest sklepem z grami na system OSX. Beta programu ruszyła na początku grudnia a już teraz można pobierać wersję oznaczoną numerkiem 1.0.1. Mac Games Arcade jest oczywiście darmowy. Program pozwala na przeglądanie sporej ilości gier na Maka. Gry podzielone są na kilka kategorii a kiedy zdecydujemy się zakupić którąś grę, program pomoże z obsługą płatności. Wiele gier ma możliwość pobrania dema
Informacja: 2009-01-14
Czytaj: Mac Games Arcade: sklep z grami na Maka
Już nie tylko Safari dla iPhone
Firma Apple zaczęła zatwierdzać wnioski deweloperów o wprowadzenie alternatywnych przeglądarek dla telefonów iPhone. Już niedługo użytkownicy aparatów firmy z Cupertino będą mogli korzystać obok Safari także z Firefoksa czy Opery. O otwarciu progów dla konkurencji poinformował serwis MacRumors. Wcześniej Apple nie chciał wprowadzenia innych przeglądarek poza własną
Informacja: 2009-01-14
Czytaj: Już nie tylko Safari dla iPhone
Re: [android-developers] Not a big problem.
hi ipeg i didnt get ur question clearly. whatevr if you are working in java there is no such concept of global variable , because here object are initiated from heap space. but you can make a globally accessible varible inside a class this way :- public class myClass{ public static x = 0; ...
Informacja: 2009-01-14
Czytaj: Re: [android-developers] Not a big problem.
Re: Iptables
Thank you very much for all your answers. I would like to ask, then, do you know which method can be used to create a firewall for Android? I've read that SMobile has created one, and therefore it should be possible to do the same. The only thing I wonder is how to do so without actually modifying Android itself.
Informacja: 2009-01-14
Czytaj: Re: Iptables
Re: Accessing Files on the sdcard
Hi, thanks for the reply. Also, I was wondering whether it is possible to stream audio to the AudioTrack class i came across in the cupcake development branch. If so, how can I go about bringing that functionality to the current version of the SDK. Cheers, Earlence
Informacja: 2009-01-14
Czytaj: Re: Accessing Files on the sdcard
Activity callback anomaly
Hi, I'm noticing a strange pattern in my acitivty when I open another activity from within mine (I have a button that goes to the contacts view, for instance). Instead of my onPause method being called once, I'm seeing this pattern: onPause, onResume, onPause, in very quick succession. I can't figure out why this happens, and it's causing a problem with the
Informacja: 2009-01-14
Czytaj: Activity callback anomaly
TextView with links gets black while scrolling?
It seems if a text view contains links, and the part of the text without links is clicked for the purpose of scrolling, then the text gets black while the item is being touched. This does not happen for TextViews that do not contain a link. Is this intended behavior? (e.g. make the links stand out more if you
Informacja: 2009-01-14
Czytaj: TextView with links gets black while scrolling?
Re: [android-developers] Re: Performance Problem with ListView / Styled TextView
Why are you attempting to use a single row View for every entry in the list? In other words, why is the activity.findViewById() in there? You might consider using a ViewHolder or ViewWrapper pattern here. Check out my Fancy ListViews blog post series on AndroidGuys for more: [link]
Informacja: 2009-01-14
Czytaj: Re: [android-developers] Re: Performance Problem with ListView / Styled TextView
Re: [android-developers] Re: How to set the permission to open a dev fd?
Discussions on "below the SDK level" are better suited for one of the mailing lists for the Android open source project: [link] This list is aimed at "above the SDK level" questions.
Informacja: 2009-01-14
Czytaj: Re: [android-developers] Re: How to set the permission to open a dev fd?
Re: Do I need a while loop in GLThread of GLSurfaceView if animation is not needed?
I think I may be able to answer part of this question, as a good nights sleep and a necessary walk with our family dog in the morning chill seemed to have set something straight in my head. The outer while loop is necessary because, the secondary thread the GLThread is taking responsibility to update the drawing surface. This
Informacja: 2009-01-14
Czytaj: Re: Do I need a while loop in GLThread of GLSurfaceView if animation is not needed?
SQLiteClosable exception with SimpleCursorAdapter and managedQuery when populating ListView
Hello, I have a ListView that uses SimpleCursorAdapter with a ViewBinder. If switch from portrait to landscape on the phone as the list is populating items, I get an SQLiteClosable exception because the activity's onDestroy has been called, but the adapter is still loading data from the cursor. Is there a better way of handling this? Are
Informacja: 2009-01-14
Czytaj: SQLiteClosable exception with SimpleCursorAdapter and managedQuery when populating ListView
Re: [android-developers] Regular Expression Help
Sorry, that's "Match 1 character *NOT *a-z, followed by any character zero or more times." try "^[^a-z]+$"
Informacja: 2009-01-14
Czytaj: Re: [android-developers] Regular Expression Help
Application not responding - boot receiver - Why does it happen?
Hello. I am talking about an application which works with a background service. To start that background service I have registered a Broadcast Receiver which waits for the boot completed action. When the receiver is called I am directly starting up the background service. To sum up: MyBroadcastReceiver waiting for boot completed -> starting
Informacja: 2009-01-14
Czytaj: Application not responding - boot receiver - Why does it happen?
Manifest Editor - Application tab shows empty page
I started playing around with the Android Editors, so I wrote a simple Todo List application (taken from a book), and I opened the AndroidManifest.xml file using the Manifest Editor. My problem is that the Application tab shows an empty page. All other tabs work correctly. I have the ADT and the Android Editors plugins installed on
Informacja: 2009-01-14
Czytaj: Manifest Editor - Application tab shows empty page
Re: [android-developers] Re: Regular Expression Help
Can you give us a sample input and output that is failing? I'd like to see the exact regex and test string(s) you are using.
Informacja: 2009-01-14
Czytaj: Re: [android-developers] Re: Regular Expression Help
Re: Regular Expression Help
Both A T and Faber's solutions should work fine if you add the check for uppercase letters also: String foo = "aAsdjshdIUjkshf"; System.out.println(foo.matches ("[a-zA-Z]+") ? "Yay" : "Nay" ); Prints 'yay'. String foo = "aAsdjs1234hdIUjkshf"; System.out.println(foo.matches ("[a-zA-Z]+") ? "Yay" : "Nay" );
Informacja: 2009-01-14
Czytaj: Re: Regular Expression Help
Re: charging for upgrades to free apps?
ok. thanks a lot for your understanding. is there anyone from google that can comment for sure? thanks.
Informacja: 2009-01-14
Czytaj: Re: charging for upgrades to free apps?
Re: [android-developers] Re: TextView with links gets black while scrolling?
[link] Al. Al wrote: -- ====== Funky Android Limited is registered in England & Wales with the company number 6741909. The registered head office is Kemp House, 152-160 City Road, London, EC1V 2NX, UK.
Informacja: 2009-01-14
Czytaj: Re: [android-developers] Re: TextView with links gets black while scrolling?
interface source code
Hi! I need the source code of the Sliding Drawer of the emulator. I would like to see how to code the events on the buttons of the Sliding Drawer Thank you
Informacja: 2009-01-14
Czytaj: interface source code
GTalk IM on G1 seems to use Smack.
For those who were wondering whether the built in GTalk application was using Smack or not, I found those logs with adb bugreport: Cmd line: com.google.process.gapps DALVIK THREADS: "main" prio=5 tid=3 WAIT | group="main" sCount=1 dsCount=0 s=0 obj=0x400143a8 | sysTid=119 nice=0 sched=0/0 handle=-1090814820
Informacja: 2009-01-14
Czytaj: GTalk IM on G1 seems to use Smack.
Re: TextView with links gets black while scrolling?
All you need to do to resolve this is make sure you set android:textColor to something like android:textColor="?android:at tr/ textColorPrimary" and that will take care of your problem!
Informacja: 2009-01-14
Czytaj: Re: TextView with links gets black while scrolling?
Internationalization of webView apps
Some of you know that I ma one of the crazy ones developing a mobile app using only web based code and using webview, see video: [link] I know that I can using native code detect which human language was set and thus would like to code wise have my app switch to the
Informacja: 2009-01-14
Czytaj: Internationalization of webView apps
Re: [android-developers] interface source code
[link] -- Romain Guy Android framework engineer romain...@android.com Note: please don't send private questions to me, as I don't have time
Informacja: 2009-01-14
Czytaj: Re: [android-developers] interface source code
Re: [android-developers] DisplayMetrics screen DPI seems to be wrong on G1?
This should be fixed in cupcake. -- Romain Guy Android framework engineer romain...@android.com Note: please don't send private questions to me, as I don't have time to provide private support. All such questions should be posted on public forums, where I and others can see and answer them
Informacja: 2009-01-14
Czytaj: Re: [android-developers] DisplayMetrics screen DPI seems to be wrong on G1?
Re: The code in android which draw a rectangle surrounding an anchor in Webkit
Correct me if I am wrong, but if you are working in webview do you not mean the -webkit css commands for the box and etc..as an example see my blue box in video of Xspot: [link] That is css and -webkit css commands not C++ or Java..
Informacja: 2009-01-14
Czytaj: Re: The code in android which draw a rectangle surrounding an anchor in Webkit
Re: android 1.5
I am not sure Morris as I was not set about building my own copy until this weekend.. looks like it did not build successfully
Informacja: 2009-01-14
Czytaj: Re: android 1.5
ask for help: write contact into SIM (phonebook app)
hi, I wrote a case to test phonebook app, but I encountered a problem for SIM card handling. I don't know if the emulated SIM card (I run it on emulator) does not allow me to control it, or the function I used is not correct ? ***********************code*** ******************** ContentValues values = new Content Values();
Informacja: 2009-01-14
Czytaj: ask for help: write contact into SIM (phonebook app)
Perl on Android Emulator
Dear friends, I want to run Perl script on Android Emulator but when I tried to do that, I got error, "Perl : command not found". Can you please guide me how I can use Perl on emulator. Thanks in advance. Regards Puneet Bhatia
Informacja: 2009-01-14
Czytaj: Perl on Android Emulator
Scaling objects within an AbsoluteLayout
Hello, I am currently using an AbsoluteLayout in order to position things as they would be on the pc based on centimeters, and converting that to its pixel value. My question is, how to go about scaling the layout/entire view so that all of the content is visible. AKA essentially a zoom feature like in the webkit browser.
Informacja: 2009-01-14
Czytaj: Scaling objects within an AbsoluteLayout