Cartoons For Free

Cartoons For Free has just been released on Google Play.

Watch classic cartoons like Betty Boop, Felix, Popeye and Superman on your android device.

Posted in Android, App | Tagged , , | Leave a comment

One Direction Super Fan Quiz

BubblePixel are pleased to announce the release of their latest free Android App – One Direction Super Fan Quiz

Are you the biggest One Direction fan? Do you know everything about Liam, Louis, Niall, Harry and Zayn? Well now you can prove it with One Direction Super Fan Quiz.

One Direction Super Fan Quiz asks you 5 questions which you must answer as quickly as you can; the quicker you answer the more points you will score.

Answer questions about 1D’s music, lyrics and videos; as well as questions about Liam, Louis, Niall, Harry and Zayn, to prove you are the One Direction Super Fan.

Share and challenge your friends to beat your high score.

One Direction Super Fan Quiz can be downloaded for free from Google Play.

Posted in Android, App, News, Smartphone | Tagged , , , , , | Leave a comment

4G for Free – Our latest Android app

4G for Free is now available on Google Play

Fed up of your slow 3G connection? Why not upgrade to 4G? This little app converts your existing 3G connection to a new superfast 4G connection.

All carriers and mobile networks are supported and most devices are supported too – even those devices that do not officially have 4G capability!

Using a number of different methods the app will scan your current 3G connection and re-route it using the latest technology to a local 4G connection. Once complete the app will display a notification that 4G is connected. The app basically fools your phone into thinking it has access to a high speed internet connection through 4G.

This app will request permission to also install other software to keep you up to date with the latest offers. If you do not want to use this software, you can ignore it. Please make use of the added software as it will help us a lot to keep making more apps.

If you choose not to install the additional software 4G for Free will continue to work – so you don’t need to uninstall it!

Disclaimer: This app is for entertainment only. No changes are actually made to your data connection. This app is just a joke/prank app – you will not have access to a 4G network.

It is not possible to convert 3G to 4G but you can use this app to fool your friends into thinking you can!

Posted in Android, App, News | Tagged , , | Leave a comment

About QuizBattle for Android

Quiz Battle our new fast moving quiz game for Android was released at the end of last week.

QuizBattle is a fun GQuizBattle screenshoteneral Knowledge Quiz game that allows you to give your brain a workout.  The faster you answer the more points you score.  Challenge your friends to beat your highscore.  Bonus points multipliers for chains of correct answers.

New questions added weekly.

 

Coming soon: weekly highscore leaderboard – have you got the general knowlege skills to be number one?

QuizBattle for Android  is now available on Google Play

Posted in Android, App, Game review, News | Tagged , , , | 4 Comments

Quiz Battle for Android released.

Quiz Battle our new fast moving quiz game for Android is now available on Google Play.

Posted in Android, App, News | Tagged , , , | Leave a comment

“Maths Invaders” for Android gets update

Maths Invaders for Android has recently received an update. Players of this fun mental challenge game can now share their high score achievements with friends. There is also news of an ‘advanced’ edition of the game on the horizon which will contain tougher questions.

Posted in Android, App, News | Tagged , , | Leave a comment

Take a look at “One Hundred Wallpapers”

One Hundred Wallpapers has just been released on Google Play.

With 100 high quality wallpapers for your Android device you will be spoilt for choice.

Posted in Android, App, News, Smartphone | Tagged , , | Leave a comment

Android Asset Studio gets update.

The Android Asset Studio as previously discussed on bubblepixel.co.uk has recently been updated.

Users will find greater use of html5, and a host of new device frames including the Nexus 7 and Galaxy SIII.

There has also been a redesign to fit in with the new holo look.

Posted in Android, App, Development, Tutorial | Tagged , , | Leave a comment

Playing Videos in an Android App

Playing videos from within an Android application is relatively straightforward.  Using the VideoView you can play any video supported by the device within your application.  Videos can be stored in the resources folder, on the devices internal or external storage; you can even stream videos over the Internet.

For this tutoFolder layoutrial I will use the simple method of storing the video we want to play within the application itself in the resources.  To do this first create a folder named ‘raw’ within the ‘res’ directory in your application code.  Then place a video of a suitable format within the new ‘raw’ folder.

As you can see from the image to the left, the video files I have used in my app are all mp4 format.  This is the most widely supported video format on android devices – more information regarding video formats can be found on the Android Developer website.

 

Once you have added the video to the applications resources you will need to create a layout containing a VideoView for the application.  The sample below shows a layout that will display your video full screen:

<?xml version=”1.0″ encoding=”utf-8″?>
<FrameLayout xmlns:android=”http://schemas.android.com/apk/res/android”
android:keepScreenOn=”true”
android:layout_width=”fill_parent”
android:layout_height=”fill_parent”
android:orientation=”vertical” >

<VideoView
android:id=”@+id/videoView1″
android:layout_width=”fill_parent”
android:layout_height=”fill_parent”
android:layout_gravity=”center” />

</FrameLayout>

All thats is left to do know is right the code that will intitialise the VideoView and play your video;  there are five steps:

  1. Get a reference to the VideoView.
  2. Set a URI with the details of the video you wish to play.
  3. Pass the VideoView the URI of the video.
  4. Ready the VideoView by calling requestFocus().
  5. Start the video.

The four steps are shown in the code fragment below:

VideoView vidView = (VideoView)findViewById(R.id.videoView1);

Uri videoToPlay = Uri.parse("android.resource://"+getPackageName()+"/"+ R.raw.vid1);

vidView.setVideoURI(video);

vidView.requestFocus();

vidView.start();

 

Posted in Android, App, Development, Tutorial | Tagged , , , | Leave a comment

New android game – Maths Invaders released.

Bubblepixel is pleased to announce the release of our latest android game Maths Invaders.  Stop the Alien invasion by answering the maths puzzles. Maths Invaders is now available on Google Play -

https://play.google.com/store/apps/details?id=bubblepixel.games.mathsinvaders

Posted in Android, App, News | Tagged , , | Leave a comment