Warning: Invalid argument supplied for foreach() in /homez.46/telewizj/www/gphone.pl/przegladprasy/inc/rss2base.php5 on line 23
2009-04-10 » Gphone.pl, Android, Google, IPhone, Open Social
Gphone.pl, Android, Google, IPhone, Open Social » 2009-04-10

Wiadomości z dnia 2009-04-10

Sortuj wiadomości według: Nazwy | Daty | Losowo

Calling web services in android

Hi All, I am doing game project where in i need to call PHP web service and display scores in score board. I am new to android,Can somebody please help on how to call web services in android. I searched for so many examples,but no example looked to be working. It is urgent,Please help.
Informacja: 2009-04-10
Czytaj: Calling web services in android

Gra na iPhone

Autor wpisu: Szymon Chołys , tekst pochodzi ze strony: AUTOKULT.pl Ostatnimi czasy coraz więcej producentów próbuje jakoś uwieńczać sukcesy swych modeli i zyskiwać jeszcze większą popularność poprzez tworzenie różnorodnych gier wyścigowych na iPody i iPhone
Informacja: 2009-04-10
Czytaj: Gra na iPhone

Re: How to use AutoCompleteTextView with SimpleCursorAdapter

<<Unfortunately, this is not a complete worked out example. Could someone forward me a more complete example? I've found lots of code fragments, but no code that shows how to initialise the SimpleCursorAdapter contents, or how it works together with the AutoCompleteTextView. >> <There is also an example in the APi demos with the
Informacja: 2009-04-10
Czytaj: Re: How to use AutoCompleteTextView with SimpleCursorAdapter

Re: [android-developers] Animation on a view doesn't 'stick' in reality

Yes and no. No because you still need to hide the view yourself. Yes because you can just do this: myView.startAnimation(myAnimat ion); myView.setVisibility(View.INVI SIBLE); // or GONE Android will hide the View and run the animation but still draw the View as long as the animation is running.
Informacja: 2009-04-10
Czytaj: Re: [android-developers] Animation on a view doesn't 'stick' in reality

Wrestling w iPhone

Nie jestem fanem tego sportu, jednak na pewno są tacy którzy lubią rozrywkę tego typu. I dla nich właśnie jest gra TNA Wrestling na platformę iPhone OS. Nie jest to tylko
Informacja: 2009-04-10
Czytaj: Wrestling w iPhone

Kometa na pulpicie iPhone

Autor wpisu: Krystian , tekst pochodzi ze strony: SimBlog.pl Kolejny dodatek na iPhone
Informacja: 2009-04-10
Czytaj: Kometa na pulpicie iPhone

Lenovo oPhone Video Demo

The Lenovo oPhone looks O so much like the unrelated and similarly named I device and that probably isn
Informacja: 2009-04-10
Czytaj: Lenovo oPhone Video Demo

How to remove the WebView top/left 8-pixel inner margin?

Hello. After some search, even in the WebView and related classes source code, I could not find where the built-in 8-pixel inner margin of a WebView is set. I would like to display a WebView with no inner margin: is it feasible, please? Or am I missing something and there is no top and left inner margin inside a WebView?
Informacja: 2009-04-10
Czytaj: How to remove the WebView top/left 8-pixel inner margin?

MVC model state change requires creating an Intent?

Hi, I have a main activity class that launches a couple of my subordinate activities from a tabHost. Periodically (actually when I receive an incoming message on a socket), I want to inform the subordinate activities that application state has changed so that they can refresh their views.
Informacja: 2009-04-10
Czytaj: MVC model state change requires creating an Intent?

Apple Blog TV #22 -

Życzymy wesołych i spokojnych Świąt Wielkanocnych! Wybierz swój format Wideo
Informacja: 2009-04-10
Czytaj: Apple Blog TV #22 -

Android jako niańka do dziecka

Autor wpisu: Janek , tekst pochodzi ze strony: SimBlog.pl Paweł pisał jakiś czas temu o podobnej aplikacji na Symbiana. Generalnie chodzi o to, że kiedy hałas w otoczeniu osiąga pewną granicę (zdefiniowaną przez nas w decybelach), komórka wykona połączenie na ustawiony numer. Szczerze mówiąc nie widzę innego sensownego zastosowania niż nasłuchiwanie czy dziecko śpi. Ale czy HTC G1 - jedyny telefon z Androidem - nie jest zbyt fajną zabawką, żeby zostawić ją dziecku? Do pobrania tu
Informacja: 2009-04-10
Czytaj: Android jako niańka do dziecka

Sensor Nets Get Social

Read Write Web reviews on Citysense and WikiCity , iPhone applications that integrate sensor networks with social networks. While Dailywireless wrote about CitySense some 2 years ago , a recent W3C Workshop on the Future of Social Networking , held in Barcelona in January, reviews the trend of sensors mixing with social networks and offers some real-world applications. Both Social Networks and Sensors information can be modeled using Semantic Web technologies, says the pa
Informacja: 2009-04-10
Czytaj: Sensor Nets Get Social

Apple Releases 3 New iPhone Commercials:

Apple has released three new iPhone commercials, and once again, the ads focus on the versatility of iPhone applications and their use in everyday, real-life situations. The commercials end with the now familiar tagline
Informacja: 2009-04-10
Czytaj: Apple Releases 3 New iPhone Commercials:

Re: [android-beginners] How to: (new) HTTP API

yves wrote: HttpClient is a product of the Apache Foundation. Documentation, including examples, can be found at: [link]. Presumably yes. Presumably yes. Yes.
Informacja: 2009-04-10
Czytaj: Re: [android-beginners] How to: (new) HTTP API

Re: String->Integer Hashmap alternative

If you mean you map 'String's to 'int's, then yes, you have some overhead because of the autoboxing of Java, making 'int's into 'Integer's. If your map's keys (in this case Strings) can be any possible String, i would just use a Map<String, Integer>. Depending on how you use this map, you should create a TreeMap or a
Informacja: 2009-04-10
Czytaj: Re: String->Integer Hashmap alternative

Re: [android-developers] Re: list of request codes - their names and values?

That should be in your preferences, though. After all, you're the one asking for the ringtone via the RingtonePreference, right? Just open up your SharedPreferences (PreferenceManager.getDefaultS haredPreferences()) and read out the value. Or use Preference.OnPreferenceChangeL istener to be notified when
Informacja: 2009-04-10
Czytaj: Re: [android-developers] Re: list of request codes - their names and values?

Re: [android-beginners] progressDialog

If i understand correctly, you're showing it and closing it in the same thread and in the same method... That seem wrong to me in event driven development. I would have a piloting thread (like the one which instantiate your activity) that launch your long process IN ANOTHER THREAD, and create the
Informacja: 2009-04-10
Czytaj: Re: [android-beginners] progressDialog

Re: How to destroy an Activity in android

hi, as per mark told you use the finish() method to end the activity. when you finish() the activity the onDestroy() will get called. I hope your don the onCreat() and OnDestroy() methods well.
Informacja: 2009-04-10
Czytaj: Re: How to destroy an Activity in android

How to determine the amount of characters that will fit into a TextView

I am trying to place only the exact amount of data into a TextView but I need to know how much it can hold. Is there a way to do this based on it's height, width and the textsize?
Informacja: 2009-04-10
Czytaj: How to determine the amount of characters that will fit into a TextView

String->Integer Hashmap alternative

Currently, I'm using a hashmap which maps strings to integers. I've read that using a wrapper for a primitive type in a hashmap has extra cost and was wandering if there is an alternative I could use. I've seen sparsearrays in the sdk, but they map ints to objects but I need the opposite. Is there an alternative to hashmap available for this or
Informacja: 2009-04-10
Czytaj: String->Integer Hashmap alternative

Apple wyłączy .Mac Groups i HomePages

Autor wpisu: Paweł Cebula , tekst pochodzi ze strony: Applemania.pl Korzystasz z .Mac Groups? Jeżeli tak to mam dla Ciebie złą wiadomość - Apple podjęło decyzję o zakończeniu funkcjonowania tej usługi z dniem 7 lipca 2009 roku. Przechodzi ona do historii po niemal 9 latach funkcjonowania. Czytaj dalej
Informacja: 2009-04-10
Czytaj: Apple wyłączy .Mac Groups i HomePages

O hai, private T-Mobile launch event

Well, we all know what went down last time T-Mobile held a private launch event in NYC
Informacja: 2009-04-10
Czytaj: O hai, private T-Mobile launch event

speech bubble like in Google Maps

I'm coding an application wich uses the map. The map shows moving Objects. The direction in which objects are move should be(displayed as arrow) the object-image. so i startet with the implementation of the map view. How can i create objects on the map, which (after klicking on them) are able to show their names and also that specific arrows to jump to
Informacja: 2009-04-10
Czytaj: speech bubble like in Google Maps

Re: Change the location of the tab in a TabLayout

Bump! Is there a way to do this? This would be incredibly useful when having a tab layout in horizontal screen orientation. The tabs themselves take up a lot of vertical screen space...
Informacja: 2009-04-10
Czytaj: Re: Change the location of the tab in a TabLayout

Oracle Portal Template Creation - Web Design - CSS by searchseo

Oracle Portal Templates from PSD File - CSS - HTML Looking for someone experienced in Oracle Portal Template Creation to implement our design in the standard portlet containers. We will supply a PSD - Photoshop file with the layouts, images and styles
Informacja: 2009-04-10
Czytaj: Oracle Portal Template Creation - Web Design - CSS by searchseo

First Look at Handmark

Yesterday, I was lucky enough to grab a copy of Handmark
Informacja: 2009-04-10
Czytaj: First Look at Handmark

Seeking shipping info for dew phone to Australia

Thinking of purchasing an Android Dev Phone, but can't find any info of the price of shipping to Australia. Not wishing to pay $US25 to join the market place just to find pricing I've been searching the web and discussing it on the local Linux User Group mailing list. So far I've found a couple of posts about Sinapore and the UK on this mailing list
Informacja: 2009-04-10
Czytaj: Seeking shipping info for dew phone to Australia

Re: [android-developers] Are there alternate ways to look up user phone number when TelephonyManager returns null?

Not only does this apparently return null in some cases (like you got), it does not have to necessarily return a valid value. I tried your code, and I get a phone number that I *think* is what I was originally assigned when I bought the G1, before my other T-Mobile number could be ported over. So I am not certain this method is reliable in any case.
Informacja: 2009-04-10
Czytaj: Re: [android-developers] Are there alternate ways to look up user phone number when TelephonyManager returns null?

A billion iPhone apps downloaded. Coming soon.

Filed under: Cult of Mac , Apple , iPhone , App Store , iPod touch Could it be Apple has delivered almost a billion iPhone/iPod touch apps (both free and paid)? The answer is a definite yes, and Apple has posted a page counting down (or counting up, really) to the big event. As I write this they're at 928 million apps and change. It's an amazing number, and Apple is celebrating the event with a contest . Fill out a form, no purchase required, and have a chance to win a $10,000US iTun
Informacja: 2009-04-10
Czytaj: A billion iPhone apps downloaded. Coming soon.

Nokia dispute Apple

by Professional editor working for cheaponsale . Global mobile phone market by the negative impact of economic crisis, in 2009 the global mobile phone shipments will fall 8.3% (IDC projected data), and intelligent mobile phone market contrarian expansion, in 2009 global smart mobile phone shipments will rise by 6% -11% (iSuppli expected data). Admoc from another set of data shows that: iPhone OS operating system in the global mobile OS market share by half a year ago to 4% growth in February
Informacja: 2009-04-10
Czytaj: Nokia dispute Apple

Re: Stopping all services..

I see your point and definitely agree. I would really like to see a sleep timer function for the music player though and don't think I would be able to write a whole music player application that could compete with the others out there...
Informacja: 2009-04-10
Czytaj: Re: Stopping all services..

Re: [android-developers] no root access.. how to put file...

Yes, we hate you, and laugh at every pain we can cause. Plus the sdcard provides world read/write access.
Informacja: 2009-04-10
Czytaj: Re: [android-developers] no root access.. how to put file...

Conversion to Dalvik format failed with error

Hi to all.... I include JMF in my application. When i run my application the following type of error will occurring... [2009-04-09 16:20:03 - nithin] trouble processing "javax/sound/midi/ControllerEv entListener.class": [2009-04-09 16:20:03 - nithin] Attempt to include a core VM class in something other than a core
Informacja: 2009-04-10
Czytaj: Conversion to Dalvik format failed with error

iDarmocha - Notowanie 1

Autor wpisu: Artur Starzyk , tekst pochodzi ze strony: Applemania.pl Rozpoczynam nowy cykl wpisów na Applemani. Raz w tygodniu będę publikował dla Was listę  najchętniej ściąganych darmowych aplikacji. Wpisy te charakteryzować się będą małą ilością tekstu i grafiki, ale za to bezpośrednie linki do iTunes ułatwią Wam podjęcie decyzji o ściągnięciu na swojego iPhone
Informacja: 2009-04-10
Czytaj: iDarmocha - Notowanie 1

Handing incoming calls

Hi, I'm having issues using the android.intent.action.ANSWER Intent. From what I understand in the reference documentation, it's an Activity Action, not a Broadcast Action. This means that I can't "wake up" my app by setting a intent-filter on it, it means I can send the intent to ask android to answer an incoming call. But... since an incoming call makes
Informacja: 2009-04-10
Czytaj: Handing incoming calls

myCinema - kino w iPhonie ?

Uruchamiam dzisiaj Cydię , po czym w zakładce Changes moim oczom ukazuje się aplikacja myCinema . Bez chwili zastanowienia zainstalowałem aplikację, która okazała się być niczym innym, jak źródłem kinowych hitów. Co więcej, możemy ściągnąć te wszystkie filmy na iPhone
Informacja: 2009-04-10
Czytaj: myCinema - kino w iPhonie ?

From a dollar-a-day to uber-entrepreneur

By Nadia Guerirem and James Walker On Tuesday night we spent an evening in the company of Elon Musk , CEO of both electric car manufacturers Tesla and commercial spaceflight developers SpaceX . If there was one message that rang through loud and clear, it was that regardless of the economic conditions, the right application and focus on innovation breeds success. If there was another, it
Informacja: 2009-04-10
Czytaj: From a dollar-a-day to uber-entrepreneur

Programmatically delete a home-screen shortcut

Hi, I have some questions related to Android's home-screen contents: 1) Is there a way to programmatically delete a home-screen shortcut on Android? I know that it can be done manually but I want to do it in code. 2) Is there a directory where all the contents of the home-screen are stored and, if there is, is there a way to update the contents of
Informacja: 2009-04-10
Czytaj: Programmatically delete a home-screen shortcut

Today New Posting at funfashion4u

Skeletons <[link]> Werewolf <[link]> Under Water Super Market<[link]> Under Water Phone Call<[link]>
Informacja: 2009-04-10
Czytaj: Today New Posting at funfashion4u

Can Google build open source communities

While the Googlers want to talk today about improvements to GMail for mobile , there remains a serious concern for you to discuss this weekend. Is Google really good at being part of an open source community? There are three types of mobile source projects: One-company projects. Multiple-company projects. Community projects, which may or may not have a commercial arm. Google has proven it has great open source developers. An open source project that is headed by Google will get th
Informacja: 2009-04-10
Czytaj: Can Google build open source communities

TapTap Revenge: Coldplay - kolejna edycja TTR

Autor wpisu: Krystian , tekst pochodzi ze strony: SimBlog.pl http://simblog.pl Jesteś fanem zespołu Coldplay , a Twoja ulubiona gra dla iPhone
Informacja: 2009-04-10
Czytaj: TapTap Revenge: Coldplay - kolejna edycja TTR

Facebook ma 200 milionów użytkowników !

Facebook przekroczył 200 milionów użytkowników!! Przyznam, że ten fenomen zaczyna mnie fascynować. Nigdy wcześniej w internecie nie było chyba serwisu o takiej dynamice wzrostu (100 milionów w 8 miesięcy!) przy tak dużej skali i zakładam, że szybko taki nie powstanie. To co jest naprawdę niesamowite w Facebook to jego elastyczność i szybkość adaptacji do nowych warunków, nowych trendów czy też wymagań użytkowników. We will welcome our 200 millionth active user to Facebook some time today, an
Informacja: 2009-04-10
Czytaj: Facebook ma 200 milionów użytkowników !

Animation on a view doesn't 'stick' in reality

Hi I'm using a TranslateAnimation to slide a ViewGroup in and out of screen. However after the animation slides the view out, the transparent view is still 'clickable' in the same place. I used setFillAfter to TRUE thinking that the animation would 'stick' but I can't seem to get the view out of my 'face'.
Informacja: 2009-04-10
Czytaj: Animation on a view doesn't 'stick' in reality

Insomnia - bezsenne WiFi w iPhonie

Zdarzyła Ci się taka sytuacja,  że potrzebowałeś
Informacja: 2009-04-10
Czytaj: Insomnia - bezsenne WiFi w iPhonie

Re: Permissions to install other apps...

Would not it be somewhat dangerous to allow apps is /data/app folder to install other applications?? An app can just create an infinite loop in which downloads applications which do not require any permission and keep on installing them and fill out the memory space? Birjodh
Informacja: 2009-04-10
Czytaj: Re: Permissions to install other apps...

RE: [android-developers] Re: When will google post official cupcake SDK

When the fix is in the open source repo I'll roll some new SDKs. As for a date for a Google originated SDK, there's no solid commitment to a date as yet. Al. --- * Written an Android App? - List it at [link] * ====== Funky Android Limited is registered in England & Wales with the
Informacja: 2009-04-10
Czytaj: RE: [android-developers] Re: When will google post official cupcake SDK

Pandora Internet Radio Is Cool

Jump to CommentsI have tried all sorts of Internet radios over the last several years.  Never had one grab me or monopolize my interest.At the suggestion of a
Informacja: 2009-04-10
Czytaj: Pandora Internet Radio Is Cool

Friday Links: Android VoIP Handsets, VoIP in the EU

RingPlus is offering a free vacation getaway Read about it on TMCnet. TG Daily reports that the EU may force wireless carriers to allow VoIP on cell phones. EE Times says that a slew of Android products from Google including VoIP handsets are on the very near horizon.
Informacja: 2009-04-10
Czytaj: Friday Links: Android VoIP Handsets, VoIP in the EU

Software Developer’s Journal - Kwiecie

Kolejny numer Software Developer
Informacja: 2009-04-10
Czytaj: Software Developer’s Journal - Kwiecie

How to add a close button on a WebView

I am invoking a simple WebView going through my own WebViewClient. I want to add a very simple close button so, it goes back to the activity. If I invoke the Webview as a sub activity, it is going back to the parent activity properly. But, in my case I just have simple webview for example (click here for more info) which has a web link that opens
Informacja: 2009-04-10
Czytaj: How to add a close button on a WebView

(pre- & post-) processing raw audio data

I want to develop an app that lets one intercept raw audio data sent for playback (possibly by a different app), and apply audio enhancements over this raw data. Does Cupcake allow such filtering of audio data? If so, which API should I use? I understand this may not be possible at an application level for security
Informacja: 2009-04-10
Czytaj: (pre- & post-) processing raw audio data

Losing Data on Reboot

So, I made a mistake and I still had the debug version of my app (from Eclipse) on my phone when I tried to install a signed version. The install failed, but I could no longer access the debug version in Manage Applications to uninstall it. I was at work and couldn't reinstall the debug version in order to uninstall, so I did a complete
Informacja: 2009-04-10
Czytaj: Losing Data on Reboot

8Bits DVD to iPhone Video Converter 7.19

updated on Fri, 10 Apr 2009 22:43:10 +0300 - Convert almost all kinds of DVDs to iPhone
Informacja: 2009-04-10
Czytaj: 8Bits DVD to iPhone Video Converter 7.19

Scarpar Powerboard - terenowa decha ekstremalna

Autor wpisu: Tomek , tekst pochodzi ze strony: Gadżetomania.pl http://gadzetomania.pl Pamiętacie hoverboard - powietrzną deskę na której Marty McFly pomykał w 2 części Back to the Future ? No więc Scarpar Powerboard niestety nie unosi się na poduszcze powietrznej, ale można na niej poszaleć nie gorzej niż na desce Marty
Informacja: 2009-04-10
Czytaj: Scarpar Powerboard - terenowa decha ekstremalna

Kolejne gry Polaków w AppStore: Kabooma, Sound Match, Pluck-Tuck

Kontynuacja serii tekstów o grach/programach Polaków w AppStore. Najpierw spokko i opisy od Rafała Staszewskiego. Kabooma
Informacja: 2009-04-10
Czytaj: Kolejne gry Polaków w AppStore: Kabooma, Sound Match, Pluck-Tuck

Jak zmienić sygnaturę w Mail.app w iPhonie?

Autor wpisu: Paweł Cebula , tekst pochodzi ze strony: Applemania.pl Praktycznie każdy klient poczty obsługuje możliwość dodawania sygnatury. Podobnie jest z iPhone
Informacja: 2009-04-10
Czytaj: Jak zmienić sygnaturę w Mail.app w iPhonie?

Restoring the active Activity while resuming the application - sent again

Hello all, I have two activities running: MainActivity and ChildActivity. Whenever the user clicks in the button in MainActivity, the ChildActivity is launched. What I want to do is this: When the active activity is the ChildActivity and the user clicks the home button then relaunch the application (like opening from the
Informacja: 2009-04-10
Czytaj: Restoring the active Activity while resuming the application - sent again

Re: [android-developers] API Demos APK not running.

You may get better answers to your Android porting questions on a discussion list dedicated to Android porting: [link]
Informacja: 2009-04-10
Czytaj: Re: [android-developers] API Demos APK not running.

T-Mobile announcing something in NYC on April 21st

The details are all kinds of sparse, but T-Mobile is sending
Informacja: 2009-04-10
Czytaj: T-Mobile announcing something in NYC on April 21st

Multicast problem

Hi, I'm trying to develop an application that need to send UDP Multicast packets to the local network. There is a few equipments that respond to this packets and send back some informations. I'm not worried with the server right now, because there is a server on the same network that collect all this multicast data.
Informacja: 2009-04-10
Czytaj: Multicast problem

showing graph in Application

Hello I want to display graph(time ver distance) in Activity , how should be this achieved in Android. is there any tut available? Thank you
Informacja: 2009-04-10
Czytaj: showing graph in Application

T-Mobile holding launch event on April 21st

Wow. April 21st is going to be a busy day! First, we have the official announcement from Bluetooth SIG about Bluetooth 3.0 schedule for that day and now T-Mobile is holding a private launch event , too. Interesting. Very interesting, indeed. I mean, it could be just about anything, couldn
Informacja: 2009-04-10
Czytaj: T-Mobile holding launch event on April 21st

Install Android on a LapTop

Can I install Android on a Laptop ? Thx
Informacja: 2009-04-10
Czytaj: Install Android on a LapTop

New and Improved Digg Search

One of Digg.com's biggest shortcomings has always been the search feature. It returned results that were not always relevant or timely. So, by popular demand, Digg has completely revamped their search results. Enter a term and you will find more relevant results than ever before, along with a few nice perks. You can sort results by most votes, newest or best match. The left sidebar has some interesting features worth exploring as well. There, you can filter by timeline (last day, last 7 days
Informacja: 2009-04-10
Czytaj: New and Improved Digg Search

10 Reasons You Need Documents To Go for Android

Who doesn't love top 10 lists? We certainly do, so here are the top 10 reasons that you NEED Documents To Go for Android!10. More Than Viewing
Informacja: 2009-04-10
Czytaj: 10 Reasons You Need Documents To Go for Android

Android set-tops, TVs and VOIP phones are coming! - EETimes.com

Android set-tops, TVs and VOIP phones are coming!EETimes.comAndroid set-tops, Android TVs, Android VOIP phones, Android Karaoke boxes and Android digital photo frames are coming soon to a big box near you. The world of Android is rapidly unfolding in Asia. Software developers, chip suppliers and system
Informacja: 2009-04-10
Czytaj: Android set-tops, TVs and VOIP phones are coming! - EETimes.com

Sprint puts a vacation blackout on May -- Palm Pre launch likely?

Well, we're circling in, folks. Hot on the heels of learning that Sprint employees have the Palm Pre in hand for training, there's word from all sides that Sprint has put a vacation blackout on the month of May for retail employees, which would seem to imply that the Pre will be launched sometime in there. We saw similar vacation freezes on AT&T's end for both iPhone launches, and those ended up fairly accurate. We haven't seen this memo personally, or threatened any Sprint employees for
Informacja: 2009-04-10
Czytaj: Sprint puts a vacation blackout on May -- Palm Pre launch likely?

Re: Black areas during alpha animation on transparent PNGs.. Help !

Here is the screenshot ... I have compared it.. please take a look and someone help me .... [link] this is just a sample.. on my real application due to the colors used, the blackness appears more..
Informacja: 2009-04-10
Czytaj: Re: Black areas during alpha animation on transparent PNGs.. Help !

The Friday Special!

Hey everyone! Today school let out early, so here I am, and here we are! Today just happens to be Jjacobb
Informacja: 2009-04-10
Czytaj: The Friday Special!

Restoring the active Activity while resuming the application

Hello all, I have two activities running: MainActivity and ChildActivity. Whenever the user clicks in the button in MainActivity, the ChildActivity is launched. What I want to do is this: When the active activity is the ChildActivity and the user clicks the home button then relaunch the application (like opening from the
Informacja: 2009-04-10
Czytaj: Restoring the active Activity while resuming the application

5 Cellphone Trends Changing The World

  Apple makes more news when it hiccups about its next-gen iPhone, supposedly coming in late June or early July, than was generated by the entire CTIA cellphone show last week in Las Vegas. (more
Informacja: 2009-04-10
Czytaj: 5 Cellphone Trends Changing The World

Re: [android-beginners] How to change the background color of an element in a list ?

You will need to make some changes to your Adapter to accomplish this. If it is ArrayAdapter, you will probably want to override getView(). I have a long series of dated, poorly-formatted blog posts on this: [link] If it is SimpleCursorAdapter, you can either override bindView() or
Informacja: 2009-04-10
Czytaj: Re: [android-beginners] How to change the background color of an element in a list ?

android.permission.GET_ACCOUNTS

Are there any examples of how to use android.permission.GET_ACCOUNT S ? Or is this an unimplimented api? I found this site; [link] Though I haven't been able to get anything to work. I believe JBQ said it was a private api - but I'm not sure why the permission is listed
Informacja: 2009-04-10
Czytaj: android.permission.GET_ACCOUNTS

new NTP client tools on the Android Market

For those of you dealing with time data on the Android - or just want to see an NTP client work, check out the application I just published. It's free of course, and it's called "Navy Clock" It displays local time of the phone, the UTC time of the phone, and the time read from the US Naval Observatory in Washington DC.
Informacja: 2009-04-10
Czytaj: new NTP client tools on the Android Market

Re: ListView not touchable in my Activity

I don't see any itemClickListener registered ?
Informacja: 2009-04-10
Czytaj: Re: ListView not touchable in my Activity

Re: [android-developers] who put an icon in status bar to indicate the mobile network type?

Questions regarding the source code are best asked on lists pertaining to the source code: [link]
Informacja: 2009-04-10
Czytaj: Re: [android-developers] who put an icon in status bar to indicate the mobile network type?

Re: [android-developers] Re: Conversion to Dalvik format failed with error

Hi.... I tried in SDK emulator. Even i have Same problem like yours. Till now i didnt run video on emulator.... Thank You Nithin N V
Informacja: 2009-04-10
Czytaj: Re: [android-developers] Re: Conversion to Dalvik format failed with error

Posts about Mobile Internet as of April 9, 2009

ARM Cortex-A8 MID debuts - motd.ambians.com 04/09/2009 HY Research announced what it calls the first mobile Internet Device (MID) based on the Texas Instruments BeagleBoard. Powered by the BeagleBoard
Informacja: 2009-04-10
Czytaj: Posts about Mobile Internet as of April 9, 2009

Re: [android-beginners] Install Android on a LapTop

That would probably be a question for whoever might be working on porting Android to work on your variety of laptop. You might consider scanning the archives of the [android-porting] Google Group to see if anyone is porting Android to your desired hardware: [link]
Informacja: 2009-04-10
Czytaj: Re: [android-beginners] Install Android on a LapTop

A Billion Served: Apple Throws Contest to Celebrate Download Milestone

Apple has announced a contest to celebrate the approaching 1 billionth download from the iTunes App Store: As of today, nearly one billion apps have been downloaded around the globe. So we just want to say thanks
Informacja: 2009-04-10
Czytaj: A Billion Served: Apple Throws Contest to Celebrate Download Milestone
Strony: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 »

Stronę wygenerowano w 0.1 sek. | Forum, programowanie | Gphone, platforma Google Android | Gabinet stomatologiczny Wrocław