Sponsored Content
Operating Systems Linux Android Basic Android platform information. Post 302851171 by Neo on Saturday 7th of September 2013 08:45:49 AM
Old 09-07-2013
Fantastic!

I look forward to your tutorial on this for everyone.

Who knows, maybe you will inspire others here to become Android programmers and they will create a nice app...

Don't let anyone discourage you, please.

Go for your dreams... never stop learning ... enjoy the fact you are motivated to do it
 

5 More Discussions You Might Find Interesting

1. UNIX Desktop Questions & Answers

Basic information please.

Good day all. I was glad to find this site. I am not new to computing as I have been in the field sense 1986 but my experience has almost all been with Windows systems. I garbed a book and managed to get a UNIX box running FreeBSD for my mail server and I'm serving 3 web sites off of two Win-98... (2 Replies)
Discussion started by: Sleeper =RG=
2 Replies

2. Android

Android is Linux (and Java)

In case you did not know, Android 2.1, Éclair, runs on the 2.6.29 Linux kernel. However, the user space it is built atop Dalvik, a Google-designed custom JVM (Java virtual machine). This is pretty interesting, when you think about it. The core of Android is the linux kernel, and the standard... (5 Replies)
Discussion started by: Neo
5 Replies

3. Android

Android Scripting Environment: Shell Scripting and Android

I just upgraded to Android 2.2 from 2.1. The GPS issue that was troublesome in 2.1 seems to have been fixed. Some of web browsing seems faster, but it could just be my connection is better today ;) Flash works in some browsers but not very good and it is too slow for Flash apps designed for... (0 Replies)
Discussion started by: Neo
0 Replies

4. Android

Basic commands for android!!

Hi, I have a n android phone and just rooted it. I access it using 'terminal Emulator'. I performed many basic linux-like commands in the terminal like rm,ls,df,reboot etc and they are working fine. But many of them are not like man <something>, clear,du etc. Can any of you please help to... (20 Replies)
Discussion started by: shekhar_4_u
20 Replies

5. Android

Security in Android apps

Hi, I am Conrad I was wondering, if anybody would be able to hack accounts on Android apps. I mean for example we are logged on ebay or Facebook app, and we simply quit to home screen, without logging out, and also disconnect from network and again turn on network. -To the point, Is it... (0 Replies)
Discussion started by: kondziorek
0 Replies
SDL::Tutorial(3)					User Contributed Perl Documentation					  SDL::Tutorial(3)

NAME
SDL::Tutorial - introduction to Perl SDL SYNOPSIS
# to read this tutorial $ perldoc SDL::Tutorial # to create a bare-bones SDL app based on this tutorial $ perl -MSDL::Tutorial -e 1 SDL BASICS
SDL, the Simple DirectMedia Layer, is a cross-platform multimedia library. These are the Perl 5 bindings. You can find out more about SDL at <http://www.libsdl.org/>. Creating an SDL application with Perl is easy. You have to know a few basics, though. Here's how to get up and running as quickly as possible. Surfaces All graphics in SDL live on a surface. You'll need at least one. That's what SDL::App provides. Of course, before you can get a surface, you need to initialize your video mode. SDL gives you several options, including whether to run in a window or take over the full screen, the size of the window, the bit depth of your colors, and whether to use hardware acceleration. For now, we'll build something really simple. Initialization SDL::App makes it easy to initialize video and create a surface. Here's how to ask for a windowed surface with 640x480x16 resolution: use SDL::App; my $app = SDL::App->new( -width => 640, -height => 480, -depth => 16, ); You can get more creative, especially if you use the "-title" and "-icon" attributes in a windowed application. Here's how to set the window title of the application to "My SDL Program": use SDL::App; my $app = SDL::App->new( -height => 640, -width => 480, -depth => 16, -title => 'My SDL Program', ); Setting an icon is a little more involved -- you have to load an image onto a surface. That's a bit more complicated, but see the "-name" parameter to "SDL::Surface-"new()> if you want to skip ahead. Working With The App Since $app from the code above is just an SDL surface with some extra sugar, it behaves much like SDL::Surface. In particular, the all- important "blit" and "update" methods work. You'll need to create SDL::Rect objects representing sources of graphics to draw onto the $app's surface, "blit" them there, then "update" the $app. Note: "blitting" is copying a chunk of memory from one place to another. That, however, is another tutorial. SEE ALSO
SDL::Tutorial::Drawing basic drawing with rectangles SDL::Tutorial::Animation basic rectangle animation SDL::Tutorial::Images image loading and animation AUTHOR
chromatic, <chromatic@wgz.org>. Written for and maintained by the Perl SDL project, <http://sdl.perl.org/>. COPYRIGHT
Copyright (c) 2003 - 2004, chromatic. All rights reserved. This module is distributed under the same terms as Perl itself, in the hope that it is useful but certainly under no guarantee. perl v5.12.1 2010-07-05 SDL::Tutorial(3)
All times are GMT -4. The time now is 05:29 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy