By Magesh Kumar
Posted at 10:14 PM
Android
After reaching smartphones and tablets, Google's mobile OS is stretching to electronic head wear And looking on the bright side, the CEO says Android fragmentation reflects innovation and flexibility. Google uses its Android mobile operating system to power its Glass devices,
By Magesh Kumar
Posted at 3:12 AM
Android
Google announced plans to acquire mobile phone and tablet maker Motorola Mobility for about $12.5bn.Google buys Motorola Mobility, Samsung and Apple fight it outMotorola Mobility exclusively ships phones and its Xoom tablet with Google's Android operating system. The deal will
By Magesh Kumar
Posted at 9:59 PM
Android
Method1: import android.app.Activity; import android.os.AsyncTask; import android.os.Bundle; import android.widget.Toast; public class Method1 extends Activity { class PrinterTask extends AsyncTask<String, Void, Void> { protected Void doInBackground(String... x) { while (true) { System.out.println(x[0]); test(); try { Thread.sleep(1000); test2(); } catch (InterruptedException ie) {
By Magesh Kumar
Posted at 9:41 PM
Android
import android.app.Activity; import android.app.ProgressDialog; import android.content.DialogInterface; import android.os.AsyncTask; import android.os.Bundle; import android.util.Log; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; import android.widget.Toast; public class AsyncTasks extends Activity { public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); Button upload = (Button) findViewById(R.id.widget27); upload.setOnClickListener(new OnClickListener() {
By Magesh Kumar
Posted at 2:37 AM
Android
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"> <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/hello" /> <ViewFlipper android:id="@+id/viewflipper" android:layout_width="fill_parent" android:layout_height="fill_parent"> <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="vertical"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="First Screen" /> <Button android:id="@+id/button1" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="Flip to second page" /> </LinearLayout> <LinearLayout android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical">
You've seen X-Files, haven't you? And you liked the effect they use for their title? Something very mysterious, right. Well, it isn't as complex as you might think. All you need is Photoshop and a little bit of patience.
1. Start a new file. File | new... Choose a suitable size and make sure you are in RGB mode and that the resolution is set to 72 dpi. Use Black as background color.Type in a optional text with white color.Layer
Back to top ↑