Games :: Drawing Or Pictionary Style Game

Oct 17, 2010

Is there a game for android in which a person draws stuff on screen and others users guess? I have a game like it on my sister's ipad but want one for my Samsung Epic. Game is super addicting! Please let me know!

Games :: Drawing or pictionary style game


Games :: Compass Of Luck / A New Causal Style Game

Jul 15, 2009

Compass of Luck is a causal style game for all kind of players. Both full release version (paid) and free trial version are available in Google Android Market. This small game is a divination gadget and may bring good luck to you.

View 1 Replies View Related

Games :: Sort Or Splode Style Game On Android Yet?

May 8, 2010

One of the minigames from super mario 64 DS and new super mario brothers was "sort or splode", and I think it'd be great on android. Here's a video of it:

View 15 Replies View Related

Games :: HD Games - Only 1/4 Of The Whole Game Screen Is Viewed - Liked Zoomed The Game

Oct 16, 2010

I got Samsung Galaxy 5.

I got some gameloft games (HD versions) installed but as I Run them only Top left (approx 1/4)view of game screen appers.

As whole game can not to fitted on one screen..

|--------------------|
| |
| |
| |
|Gamel |
| |
|--------------------

It looks like half of screen is cut like on "oft" of Gameloft is invisible

View 3 Replies View Related

Android :: FrameLayout For Drawing Overlays In Game?

Nov 15, 2010

I've got a game, a custom View class draws my gameboard. I'm thinking of drawing some elements on a separate layer above the gameboard. I could do this in the View's canvas code, but since they won't change frequently, was thinking of introducing a frame layout to display this top layer.I'm not sure which route to take, the only reason I wouldn't do the FrameLayout is because I'm not sure if it has an impact on battery life. Everytime onDraw() is called, the system probably has to do an alpha composition of the two layers. Is that more battery consuming than drawing the elements from that layer myself in my canvas on every frame? Hard to answer since I'm not sure how complex the drawing will be yet, any general opinions?

View 1 Replies View Related

Android :: Game Stutters When Drawing Outside Screen

Apr 25, 2010

I have a game built for 480x320 screen resolution. When playing the game on a phone with a higher screen resolution (480 x 800 or 480 x 856) the game automatically stretches to fit the screen which works great. Because of different screen dimensions there is a piece of the screen on the right side (game is in landscape mode) that is black, not used by the game. I want to fill this up with an image, so the whole screen is filled. I only draw that image on screens bigger than 480x320. This all works fine, the image is displayed exactly the way I want to. The only problem is that the game runs less smooth then it used to run. There are small stutters noticeable. When I just draw a rectangle instead of an image the same problem occurs. Does anyone have an idea why this is happening?

View 8 Replies View Related

Games :: Need Point / Click Style Adventure Games

Jun 3, 2010

Greetings all, newbie here. I'm a huge fan of the old school point and click adventure games (Monkey Island, Sam and Max, Discworld, etc) and am hoping to find something in this genre for my new HTC hero. Any suggestions? Also, I know there's a ScummVM port, does anyone have any experience with that? I'm afraid direct ports will not work well on my 3.2 screen.

View 2 Replies View Related

Android :: Compensate Drawing Delay From Game Logic Updates

Aug 24, 2010

Now I have (1: the UI-loop, there my SurfaceView is placed), (2: a second thread, there the draw function from the UI-loop is called AND the update calculations from my Engine) and (3: the engine, there all the calculations stuff are).Now I wonder how the best and smoothest way to do the SurfaceView independent from the actual frame rate. How shall I do so it will compensate if there is a low frame rate?

View 2 Replies View Related

Android :: Drawing Bitmaps On Screen In Game Without Slow Performance

Sep 16, 2009

I want to make a tile based game for android. At the moment I am drawing each tile as a separate bitmap. I have a big for loop that reads from a string and draws different tiles depending on what character it finds to draw the level. I have allowed the user to scroll the screen using scrolling gestures. However the game is too slow. It takes a long time to update the screen after the user scrolls. I presume this is because it has to draw each tile's bitmap individually. What would be a faster way to draw the level? I was thinking I could merge all the tiles into one bitmap. But I don't know how to do this.

Anyway here is my code so you can see the problem:
package org.example.tutorial2d;
import android.app.Activity;
import android.os.Bundle;
import android.view.GestureDetector;
import android.view.MotionEvent;
import android.view.GestureDetector.OnGestureListener;
import org.example.tutorial2d.Panel;
public class Tutorial2D extends Activity implements OnGestureListener {
GestureDetector gestureScanner; Panel main;
/** Called when the activity is first created. */
@Override public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
gestureScanner = new GestureDetector(this);
//requestWindowFeature(Window.FEATURE_NO_TITLE);
main = new Panel(this); setContentView(main); }
@Override public boolean onTouchEvent(MotionEvent me) {
return gestureScanner.onTouchEvent(me); }
@Override public boolean onScroll(MotionEvent e1, MotionEvent e2, float distanceX, float distanceY) {
main.handleScroll(distanceX,distanceY); return true; }
@Override public boolean onDown(MotionEvent e) { return true;
} @Override public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY) { return true;
} @Override public void onLongPress(MotionEvent e){
} @Override public void onShowPress(MotionEvent e) {
} @Override public boolean onSingleTapUp(MotionEvent e) { return true; } }

And the class that does all the work:
package org.example.tutorial2d;
import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.drawable.Drawable;
import android.util.Log;
import android.view.View;
import org.example.tutorial2d.Point;
public class Panel extends View {
private int scrollX = 0; private int scrollY = 0;
public Panel(Context context) { super(context);
} @Override public void onDraw(Canvas canvas) {
/*Bitmap scratch; //Drawable scratch;
//scratch = getContext().getResources().getDrawable(
// R.drawable.icon); canvas.drawColor(Color.BLACK);
//scratch.draw(canvas); int origin = 0;
scratch = BitmapFactory.decodeResource(getResources(), R.drawable.horizontal5);
canvas.drawBitmap(scratch, origin, origin, null);
int width = scratch.getWidth(); int height = scratch.getHeight();
scratch = BitmapFactory.decodeResource(getResources(), R.drawable.room4entrynesw3x3);
canvas.drawBitmap(scratch, origin + width, origin - 32, null);
[Code]

View 3 Replies View Related

Android :: How To Create Sniper Style Game?

Jun 3, 2010

I am trying to make a sniper style game where the user looks through a scope to see a large image that he can navigate. The user can only see part of the image at a time. The image is supposed to be much larger than the screen size that way he has to actually navigate and look for the enemy. How do I use an image that is larger than the screen that the user can navigate?It is kind of like when you are zoomed in to an image and you can pan the image and move it around to see different parts.

View 1 Replies View Related

Motorola Droid :: Games - Drawing - Painting Apps

Nov 16, 2009

So this weekend while checking out the new Wegman's grocery in Leesburg, my almost 4 year old daughter asked to play with my iPod Touch. I didn't have it with me cause it has a cracked screen that I'm in the middle of fixing so I thought I would hand her my Droid to play with. I had put a couple of games and "painting" apps on one of the homepages that I designated for her, but after only a couple of minutes, she didn't like it. Are there any good games/drawing/painting apps out there for kids? On the iPod she had games like "Anisays" (spell the animal on the screen with drag and drop tiles and it makes a sound), "Animatch" (like memory,flip tiles to find a match and it makes a sound), and several decent drawing/painting apps that had pull out drawers where you could change colors or pencil size. Most of the stuff in the free area of the market seems kinda cheezy and with terrible graphics.

View 3 Replies View Related

Samsung Moment :: Barney Style Instructions For Setting Up Snes Games Using Apps

Nov 14, 2009

I'm sorry if this is a duplicate, but can someone post some barney style instructions for setting up snes games using apps and oldcomputer.com

I read a lot about this and I can't find any simple instructions.

View 8 Replies View Related

Games : Looking For A Game

Sep 28, 2010

I'm looking for a simple and "un-brained game" just to kill the time when I'm in the bathroom during working hours. In the iPhone I had the Absolutist Bubble Shooter and the iFighter.did you guys know something similar?

View 4 Replies View Related

Games : What Is That Game?

Aug 22, 2010

I remember a while back I saw some youtube video about a 3D racing type game where the racing track and background and things changed according to the music playing in the background - and this was music that you could select from your own collection of songs on your sd card or whatever.Tbh I can't remember if it was android or windows mobile (def not iphone).Does anyone know what I may be talking about?

View 4 Replies View Related

Games : Need A Game Name

Mar 31, 2010

I had this the first day & got my phone, uninstalled it and can't fine it anymore.It's one of those block games, similar to "parking break" or "sliding block puzzle" the blocks were a very muted semi transparent green and you had 1 red block which you had to get to the opening at the top. There might have been an option to change the blocks to blue. I remember it was very highly rated and had downloads in the thousands.Anyone know it?

View 1 Replies View Related

Games : Best Looking Game

Dec 22, 2009

As title, what game graphically looks great on android, I hate that my girlfriends iPhone game always look so much better, what can I get that shows off the phones graphics?

View 8 Replies View Related

Games : Looking For A Certain Game

Jun 1, 2010

Hello All! This is my first post over in this part of the forum. I'm looking for a dirt bike type game. I can't seem to find one of the market. Here's an example of what I'm looking for.

View 1 Replies View Related

Games :: New Word Game

Oct 21, 2010

"Letter Rip" from the makers of Word Up. Pretty cool. Letters slowly appear on a grid and you have to make words from them by moving them around the grid, then swiping the word. As more letters get on the grid, it makes it tougher to move the letters around until the whole grid is filled, then you can make words like Word Up until there is room to move letters again. Once the grid is full, you get no more letters, except for a few given to you at the top of the screen to mix in.Work fast!

View 1 Replies View Related

Games :: Can't Remember Game Name

Sep 6, 2010

Prior to taking my Dinc swimming, I had an addictive little game where you had to line up these spheres that were connected by colored bonds. You had to line up all the colored bonds so that all the spheres were connected and there were no free bonds. Kind of like chemistry, but fun.Can anyone tell me the name of this game?

View 4 Replies View Related

Games :: How Do I Put Game On My Phone?

Apr 1, 2010

OK, so I just got my HTC Desire. Please excuse the lame question but I'm eager to get a good game loaded on to it (know a good one?) How do I get a game onto the device? I've managed to get some music loaded but how on earth do I find a game off the internet and load it on the phone.

View 3 Replies View Related

Games :: What Is Best Golf Game Available?

Jan 13, 2010

What is the best golf game available as of now,...be it and android game or something that I could use one of the emulators to play?

View 4 Replies View Related

Games :: Want 3D Droid X Game

Aug 30, 2010

Title says it all. What's the best 3D game out their, I am aware of gameloft, and it doesn't matter if I have to pay for the game.

View 2 Replies View Related

Games :: 3D Party Game

Nov 20, 2010

We are a very small independent company that is trying to survive in the world of mobile games. Our very first game is a small one Called DrinkIt!. The game is very simple; you flip a card, you do what it says... or drink what it says! We wanted to try something different that could suit for anybody in a boring party situation. I you feel like it, go try it out: DrinkIt!

View 9 Replies View Related

Games :: Sensible Soccer Like Game

Jun 27, 2010

I've been working in a soccer game for some time, still a lot of work to do but you can see an early preview here: YouTube - Futbol / football / soccer game for Android

View 9 Replies View Related

Games :: How To Get FPS Game For Droid?

Jul 3, 2010

I am a big fan of FPS (first person shooters) and i think my droid has the capability of having a great fps, i am fairly new to android, My favorite that i know of is Quake 2. I am wanting to know what your favorite shooter games are?

View 19 Replies View Related

Games :: Looking For Similar Game

Nov 23, 2010

Some of you may recognize my name for the game I produce, thats off topic. I've been hooked on this game: Nuclearoids - Arcadem Pro for days now and I'm wondering if anyone knows of an Android equivalent. On the iOS, I think there is a similar game called "Spores" or something.

View 4 Replies View Related

Games :: Looking For Particular Sudoku Game

May 27, 2010

Today I had to wipe my Nexus One, and naturally I forgot to write down ALL the apps I'd installed. One in particular is hiding from my (I swear it is!) - it's a Sudoku game. Naturally I can't remember the exact title, but I do remember some things about it.. perhaps you can the app icon was a fading red to yellow background, with cyan blue grid lines when you launched the app there was a title page: black with some kind of blue rams head type motif in the upper/middle region of the screen on top of this were maybe 4 standard grey buttons to start, about, etc when playing you found the numbers across the top, including a blank space at the end you selected squares to enter new numbers into by taping that square, then a circle appeared inside (then you hit a number from the top) in the free version (which I had) the menu button showed 2 options: (I think) new, show errors, hide notes any of this sounding familiar? I liked this particular Sudoku because of it's simplicity - no timers, no scores, no options to speak of. I've tried others, and some are better looking, but this is a very quick and simple version.

View 12 Replies View Related

Games :: What's Game Called?

Mar 24, 2010

One of the very first games I had on my old G1 was a good platformer. You play as a ninja--like guy and fight hordes of insects. I think it had only two or three levels. All the dev files were available for download to add levels and stuff. Now I can't find it.

View 1 Replies View Related

Games :: Want To Get Feedback On A New Game

Oct 29, 2009

HoneyMilk Labs has released a free version of their classic arcade-style game Seawasp. The objective of this game is to shoot down enemy ships and avoid incoming missiles. Features of Seawasp include: - Increasing levels of difficulty - Various level styles - Classical arcade-style music and sound effects If you want to check Seawasp out for free, download it at from your Android phone and give it a try! hen you're done.

View 3 Replies View Related

Games :: New Game: Space STG - Sci-fi RTS

Jul 4, 2010

We've just published a full version of Space STG - a sci-fi real-time strategy game. Immerse yourself in a mortal war of clans. Explore solar systems, manage cities and create a space fleet. Win the war or perish!
Build 6 types of spaceships, 8 buildings and develop 8 technologies. Conquer 15 solar systems and crush your enemies! The game was developed by InventiVenture. Space STG was ADC2 finalist.

Here's Space STG video

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved