Difference between revisions of "Android Programming"

From Lazarus wiki
Jump to navigationJump to search
Line 7: Line 7:
 
==Details about Android devices==
 
==Details about Android devices==
  
Since there are so many Android devices, it can be useful to keep track of some information about them. See also in the wikipedia Comparison of Android Devices.
+
Since there are so many Android devices, it can be useful to keep track of some information about them. See also in the wikipedia Comparison of Android Devices [http://en.wikipedia.org/wiki/Comparison_of_Android_devices].
 +
 
 +
===Smartphones===
  
 
{| BORDER="1" CELLSPACING="0"
 
{| BORDER="1" CELLSPACING="0"
Line 18: Line 20:
 
!COLSPAN="1" STYLE="background:#ffdead;"|'''Comments'''
 
!COLSPAN="1" STYLE="background:#ffdead;"|'''Comments'''
 
|---
 
|---
|HTC||Wildfire||?||armv5||2.1=>2.2||Yes||-
+
|HTC||Wildfire||HTC Wildfire||armv5||2.1=>2.2||Yes||-
 
|---
 
|---
|Sony Erricson||Xperia X10||?||armv7||1.6=>2.1||No||-
+
|Sony Erricson||Xperia X10||X10i||armv7||1.6=>2.1||No||-
 +
|}
 +
 
 +
===Tablets===
 +
 
 +
{| BORDER="1" CELLSPACING="0"
 +
!COLSPAN="1" STYLE="background:#ffdead;"|'''Manufacturer'''
 +
!COLSPAN="1" STYLE="background:#ffdead;"|'''Model'''
 +
!COLSPAN="1" STYLE="background:#ffdead;"|'''Android API Name (Build.Model)'''
 +
!COLSPAN="1" STYLE="background:#ffdead;"|'''Processor'''
 +
!COLSPAN="1" STYLE="background:#ffdead;"|'''Android version'''
 +
!COLSPAN="1" STYLE="background:#ffdead;"|'''Multi-touch'''
 +
!COLSPAN="1" STYLE="background:#ffdead;"|'''Comments'''
 
|---
 
|---
|Toshiba||Folio 100 Tablet||?||armv7||2.2||Yes||-
+
|Toshiba||Folio 100 Tablet||TOSHIBA_FOLIO_AND_A||armv7||2.2||Yes||-
 
|}
 
|}
  

Revision as of 14:40, 18 March 2011

Go back to Android Interface

Knowing general Android programming can be very useful to help developing the Lazarus Android Interface.

Details about Android devices

Since there are so many Android devices, it can be useful to keep track of some information about them. See also in the wikipedia Comparison of Android Devices [1].

Smartphones

Manufacturer Model Android API Name (Build.Model) Processor Android version Multi-touch Comments
HTC Wildfire HTC Wildfire armv5 2.1=>2.2 Yes -
Sony Erricson Xperia X10 X10i armv7 1.6=>2.1 No -

Tablets

Manufacturer Model Android API Name (Build.Model) Processor Android version Multi-touch Comments
Toshiba Folio 100 Tablet TOSHIBA_FOLIO_AND_A armv7 2.2 Yes -

Creating a new Java Android Application

Generic instructions here: http://developer.android.com/guide/developing/other-ide.html

References