Thursday, August 1, 2013

Display Custom Info Window with ImageView on Google Map V2

Display Custom Info Window with ImageView on Google Map V2

Display Custom Info Window with ImageView on Google Map V2   To display image on Google Map V2 Bubble, we will be integrating Universal Image Loader Download Universal Image Loader In Map V2, to display custom bubble, there is a InfoWindowAdapter class.Implement the InfoWindowAdapter class and override 2 methods : 1. getInfoContents(Marker marker)2. getInfoWindow(Marker marker) Set InfoWindowAdapter googleMap.setInfoWindowAdapter(new...

Read More

Wednesday, July 31, 2013

Android Google Map V2

Android Google Map V2

To use the Google Maps Android API v2 in your app, you will first need to install the Google Play services SDK. Install Google Play Service Open Android SDK Manager and install Google Play services from Extras Obtain Google Map V2 Key Generate SHA-1 key of debug.keystore or application sign keystore. Debug keystore can be found at <userhome/.android/debug.keystore>...

Read More

Monday, November 21, 2011

Android Google Map Example

Android Google Map Example

Obtain a map key keytool -list -alias androiddebugkey -keystore /Volumes/MAC\ OS/Users/name/.android/debug.keystore -storepass android -keypass android Copy Certificate fingerprint (MD5) and paste it. Android Maps API Key Signup ...

Read More

Thursday, October 20, 2011

Custom ListView with CheckBox

Custom ListView with CheckBox

Hi, Layout: main.xml <Relativelayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" > <Button android:id="@+id/main_btn_data" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_alignparentbottom="true" android:layout_alignparentleft="true" android:onclick="onClickData" android:text="@string/hello" /> <Listview android:id="@+id/listView1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_above="@+id/main_btn_data" android:layout_alignparentleft="true" android:layout_alignparenttop="true" /> </Relativelayout> <Relativelayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="vertical" > <Textview android:id="@+id/textView1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignbaseline="@+id/checkBox1" android:layout_alignbottom="@+id/checkBox1" android:layout_alignparentleft="true" android:text="TextView" android:textappearance="?android:attr/textAppearanceLarge" /> <Checkbox android:id="@+id/checkBox1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignparentright="true" android:layout_alignparenttop="true" /> </Relativelayout> MultipleCheckerActivity.java public class MultipleCheckerActivity extends Activity {...

Read More

Tuesday, September 6, 2011

Android MediaRecorder Example

Android MediaRecorder Example

The android.media package contains classes to interact with the media subsystem. The android.media.MediaRecorder class is used to take samples of media, including audio and video. The MediaRecorder operates as a state machine. You need to set various parameters, such as source device and format. Once set, the recording may begin for an arbitrary amount of time until subsequently stopped. The code shown...

Read More

Monday, September 5, 2011

Gradient dividers in Android

Gradient dividers in Android

Many of Android’s screens use attractive dividers with gradients that fade from black to white to black.  Here’s how to create one of your own. 2. Create a view in the target layout and apply the gradient as the background.  The “black_white_gradient” in “@drawable/black_white_gradient” refers to the file name of the shape above. <View android:id="@+id/divider" android:background="@drawable/black_white_gradient" android:layout_width="fill_parent" android:layout_height="1dp" android:layout_below="@id/someOtherThing" />...

Read More

Update Android Gallery

Update Android Gallery

sendBroadcast(new Intent(Intent.ACTION_MEDIA_MOUNTED, Uri.parse("file://"+ Environment.getExternalStorageDirectory()))); ...

Read More