Android Developer sayfasının tasarımı yenilendiAndroid Developer Page refreshed by Design

Google, Android Geliştiricileri sayfasında Google I/O öncesinde çeşitli yenilikler yaptı. Tasarım bölümü bağlantısı sayfanın üstüne çıkarılarak daha dikkat çekici hâle getirilirken ana sayfa da biraz daha sadeleştirildi. Daha önceki sürümde yer alan yedi farklı sekmenin sayısı üçe düşürüldü. Google bu sadeleştirmeyi yazılımcıların üç farklı ilgi sepetiyle açıklıyor: Tasarım, Geliştirme ve Dağıtım. Her bir bölüm uygulama geliştirme sürecinin farklı safhalarına odaklanıyor. http://developer.android.com/index.html

A Faster Emulator with Better Hardware SupportA Faster Emulator with Better Hardware Support

Android team thrilled to announce several significant improvements to the emulator, including a dramatic performance upgrade and support for a broader range of hardware features, notably sensors and multi-finger input. The Android emulator is a key tool for Android developers in building and testing their apps. As the power and diversity of Android devices has grown quickly, it’s been hard for the emulator keep pace. Added GPU Support The system...

Arçelik Akıllı Kumanda / Beko TV RemoteArçelik Akıllı Kumanda / Beko TV Remote

"Arçelik Akıllı Kumanda" Google Play'de yerini aldı.. Bu uygulamanın kodlayıcısı olmaktan gurur duyduğumu belirtmek istiyorum..   :)   https://play.google.com/store/apps/details?id=arcelik.android.remote Ayrıca Beko TV Remote uygulamasını da markette bulabilirsiniz.. https://play.google.com/store/apps/details?id=arcelik.android.beko.remote Uygulama ile ilgili açıklamalar aşağıda.. Arçelik SMART Inter@ctive TV'nizi Android telefonunuzu kullanarak kontrol edebilirsiniz. Tek ihtiyacınız olan televizyonunuzu ve Android telefonunuzu aynı internet bağlantı noktasına bağlamanız. Telefonunuz, TV'nizi otomatik olarak bulur ve televizyonunuzu kontrol etmenizi sağlar. Özellikler: Uygulamanın Kumanda, Dokun, Klavye ekranları...

How to check disconnection in Java/Android

There are some issues to check disconnection between server and client sockets in the programming area. Inspite of connection closed in real, read method does not give an error to BufferedReader() method like below; if (bufferedReader.read()==-1 )  {          logger.info("CONNECTION TERMINATED!");           clientSocket.close(); setUpSocket(); //sets up the server to reconnect to the client  }else{ sendHeartBeat(); //Send a heartbeat to the client } Many...

Grundig TV Remote

Android Market'te adı "Grundig TV Remote" olan bir uygulama yayınladık. Bu Grundig/Arçelik AŞ'nin ve benim Marketteki ilk uygulaması. Bu uygulamanın kodlayıcısı olmaktan gurur duyduğumu belirtmek istiyorum.. Uygulama ile ilgili açıklamalar aşağıda..  :) https://play.google.com/store/apps/details?id=arcelik.android.grundig.remote Grundig TV Remote application allows you to control your Grundig SMART Inter@ctive TV by using your Android Phone. Only the connection between your TV and the Android Phone in the same Access point is required.Your Android Phone identifies...

Multitasking the Android Way

Android is fairly unique in the ways it allows multiple applications to run at the same time. Developers coming from a different platform may find the way it operates surprising. Understanding its behavior is important for designing applications that will work well and integrate seamlessly with the rest of the Android platform. This article covers the reasons for Android's multitasking design, its impact on how applications work, and how you...

Ten Tips for Android Application Development

Beginner tips Learn SQL and put your data models in a database Android has an excellent persistence system; use it to make your applications more robust in case of failure or shutdown, and to make suspending and resuming more efficient. Android's SQLite-based storage system is thoroughly integrated with Android's user interface classes. Android supports the observer pattern in Cursor, Adapter, and View classes, enabling the user interface to connect directly to...