Pages

Monday, July 6, 2015

Android One Now Available In Pakistan



Google has finally launched the Android one phone in Pakistan.The new smartphone QMobile A1 is readily available for purchase at retail stores across the country. Q Mobile A1 is priced at 11,500 and is dual Sim.

Specifications:

1. Runs on Android 5.1 Lolipop

2. CPU 1.3 Ghz Quad Core

3. Camera: Rear 5MP , Front 2 Mp

4. Battery 1700 mAh

5. RAM 1 GB

6. Internal Memory 8 GB

7. Torch and FM radio



Download Driver Of Q Mobile A1 Here
Download PC Suite of Q MObile A1 here 

Android Studio Vs Eclipse

Android studio and Eclipse both are IDE to develop  Android applications. But Eclipse is old, Android Studio is new. Eclipse is obsolete without further support from Google so you will have problems downloading or working with updated API's or Libraries to support updated version of Android.

Studio uses gradle as build management system. With help of gradle you can automate build generation process simultaneously keeping different versions/variations of build. 

In the layout view you have the option to view both the actual layout and the xml at the same time, while in Eclipse you must choose between the two tabs. i.e Preview of resources (Drawables, styles, etc) along side code

Since Android Studio is quite new, you may not find answers online for the problems that you face. You will be getting more resources to learn for eclipse IDE than to android studio.

Android Studio can refactor your code in places where it’s just not possible using Eclipse and ADT. 

In Android Studio there is no need to manually add the .jar dependencies.

Friday, July 3, 2015

8 Computer Jokes That Will Make You Laugh.

1. How Programmers Review Code 






2. There is no cloud, its just someone else's computer 




3. 


Thursday, July 2, 2015

3 Must Have Websites For Android Developers

1. Material Design Colors: Download xml of material colors from here.



2. Icon Generator : Generate app icons, app bar icons, ,nine patch, notification icon from Android Asset Studio


3. App Icon Maker: Make glossy icons for your app here










Sunday, March 8, 2015

10 Must Have Apps For Your Android Smartphone

Here are 10 Android Apps that every Android owner should consider. These apps will make you more productive and smarter.
1. Pushbullet : Pushbullet, acts as a bridge between your mobile and desktop OSes. If you own an Android device, PushBullet is an easy way to push content to your Android device from desktop. With pushbullet you can send, files, note, links, reminders and addresses from your desktop to your phone/your friends phone (or vice versa) with just a click or two. Pushbullet automatically sends all your phone notifications over to your computer in the form of little windows. With Pushbullet, you can now copy something on one device and then paste it through another, instantly. This feature is called Universal Copy And Paste .
Download Pushbullet.

2. MXPlayer : Best media player for Android, capable of playing most types of video formats. Play your files with subtitles. It has other features like Pinch to zoom, zoom and pan  i.e Easily zoom in and out by pinching and swiping across the screen. Subtitles gesture i.e scroll forward/backward to move to next/previous text.
Download MXPlayer

Friday, February 13, 2015

How to use WhatsApp as Notepad.

1. Create a WhatsApp Group.
2. Add any friend.
3. Remove that friend.
Your notepad is ready :D

Saturday, September 28, 2013

Android Flashlight

You must add the permission  in AndroidManifest.xml:

1
2
<uses-permission android:name="android.permission.CAMERA" />
<uses-feature android:name="android.hardware.camera" />
Main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
    <Button 
        android:id="@+id/on_btn"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="Turn Flash ON" />
</LinearLayout>