Android Hybrid Applications Tel Hai October 2012 INFO

During the first semester (winter semester) of the 2012-2013 academic year I deliver an academic course that covers mobile hybrid applications development for the android platform. This course takes place as part of the academic program in computer science that takes place in the Tel Hai college. You can find the google group that was […]

Android Jump Start Lecture INFO

On November 8th I have delivered a jump start lecture for Android applications development in Java. The lecture took place in HIT and pizzas were served (sponsored by Google) during the break. You can download the slides I was using during the lecture. I believe they can assist you while doing your first steps.

MTA Android Course Final Project PRO

During Summer 2012 semester I delivered in Tel-Aviv Yaffo Academic College a course for android hybrid applications development. By the end of that course, the students developed an hybrid application for the android platform. The hybrid applications included a server side developed in PHP that worked with MySQL and a client side developed mainly using […]

Technion Android Crash Course Final Projects INFO

During Summer 2012 semester I delivered together with Dr. Amnon Dekel an academic crash source for android applications development. The course took place in the Technion (Electrical Engineering faculty). The final project the students developed was a sensors tracking application. Once the application is installed and the service is started the data is continuously collected […]

Android Crash Course in Technion INFO

During august – september 2012 I delivered an academic course for android applications development together with Dr. Amnon Dekel. The course took place in the Electric Engineering faculty in the Technion. The course focused on android applications development in Java and it included 28 academic hours. In order to assist with the delivery of the course […]

Android Logcat & PhoneGap PRO

When developing an hybrid application we encounter difficulties when tried to track (debug) code we wrote in Java Script that is executed inside the WebView object. The problem becomes even more complex when using PhoneGap. The following code sample shows how we can use the android logcat for getting log messages from the code we […]

Using The Android Sensors PRO

The android device has sensors we can use in our code. We can get data coming from these resources using the SensorManager object. The following code sample shows how to do it. package com.abelski.samples; import android.hardware.Sensor; import android.hardware.SensorEvent; import android.hardware.SensorEventListener; import android.hardware.SensorManager; import android.os.Bundle; import android.app.Activity; import android.content.Context; import android.util.Log; import android.view.Menu; import android.view.MenuItem; import […]

Android Resources Names PRO

Each resource has an ID number held in a static variable that belongs to one of the static inner classes in R. The name of that static variable is the very same name we specify as the name of the resource. It can be name of the string (string resource), the name of the image […]

Android Display Orientation PRO

When developing for the android platform we can create two versions for the same layout xml document and keep them separately within ‘layout’ and ‘layout-land’ folders. When the android platform executes our application it will automatically use the correct version in according with the display orientation. The following video clip shows that.

The Android findViewById Function PRO

Most Android developers are fairly well familiar with the findViewById function our activity inherits from the Activity class. This function receives the ID number of a specific View resource the activity user interface includes. If you ever try to call that function before calling the setContentView function (our activity inherits from the Activity class) then […]

Skip to content Update cookies preferences