Minggu, 16 Februari 2014

Writing a Muzei Plugin for Online Images

    Three days ago Roman Nurik released Muzei, an app that allows users to add plugins that change device wallpaper images after a set amount of time. Now that I have built my own plugin, I want to share what I learned and show how easy it is to build a plugin to interact with the Muzei app. The goal of this app is to pull a random cat image from the CatAPI and display it for the user. All source can be found here and the released plugin can be found here.


    Plugins for Muzei work by extending either the RemoteMuzeiArtSource or MuzeiArtSource service classes and registering them in the manifest. For this tutorial I will go over using RemoteMuzeiArtSource in order to use online resources for changing the wallpaper. The key method of RemoteMuzeiArtSource that must be implemented is onTryUpdate( int reason ). 

    @Override
protected void onTryUpdate( int reason ) throws RetryException {
String link;
try {
do {
link = getLink();
} while( !imageHasAcceptableExtension( link ) );
} catch( Exception e ) {
throw new RetryException();
}

setMuzeiImage( link );
}

    When a timer in Muzei goes off, this method is called. This is where an image should be pulled from an online resource and published. If an image cannot be pulled down, the RetryException exception is thrown, and Muzei handles it by using an exponential delay to attempt recalling onTryUpdate().

    In order to load the image, the image URL is needed. I do this through the getLink() method. It uses the CatAPI to get a random redirecting link, and returns the permanent link.

    public String getLink() throws IOException {

String link = BASE_URL;
URL url = new URL( link );
HttpURLConnection ucon = (HttpURLConnection) url.openConnection();
ucon.setInstanceFollowRedirects( false );
URL secondURL = new URL( ucon.getHeaderField( "Location" ) );

return secondURL.toString();
}

    Once that link is verified as a valid jpg image, it is passed to the setMuzeiImage method.

private void setMuzeiImage( String link ) {
publishArtwork(new Artwork.Builder()
.title(getApplication().getResources().getString(R.string.title))
.imageUri(Uri.parse(link))
.viewIntent( new Intent(Intent.ACTION_VIEW, Uri.parse( link ) ) )
.build() );

scheduleUpdate(System.currentTimeMillis() + ROTATE_TIME_MILLIS);
}

    This method uses the Muzei method publishArtwork to create a new Artwork object with a title, the image URL, and an intent to open the original image in a browser. Had another API been used with more information associated with each image, then the title can be more related to the specific image, and the intent URL could go to a web page describing the source. Another method that Artwork.Builder could use is token, which allows for tagging image that is currently being displayed. This is useful for selecting images from a stream in order to not use the same image twice in a row. The final thing handled in setMuzeiImage is scheduleUpdate, which tells Muzei when it should attempt to call onTryUpdate() in order to load in the next new image.

    Once the Muzei service is built, we must declare it in the manifest and have it accept intents for "com.google.android.apps.muzei.api.MuzeiArtSource"

    <service android:name=".MuzeiImageGenerator"
android:label="@string/app_name"
android:icon="@drawable/ic_launcher"
android:description="@string/description">
<intent-filter>
<action android:name="com.google.android.apps.muzei.api.MuzeiArtSource" />
</intent-filter>

<meta-data android:name="color" android:value="#67C7E2" />
</service>

    The icon used is displayed in Muzei when the user views their available plugins. The image should simple, be in a circle and have a transparent center image. The label and description are displayed below the icon, and the meta-data color attribute is used to change the display icon from white to a specified color. In this case I am using a cyan. The end result looks like this:


    And with that, we have a Muzei plugin! Other options include adding a settings activity so that the user choose which sources to pull from and how often the image should change, and integrating the service with existing apps to provide users wallpapers from images in the apps. I'm excited to see what comes from this, and hope others find this tutorial useful.

Read More..

Sabtu, 15 Februari 2014

Introduction to Using Google Maps v2

    Maps are arguably one of the most versatile and useful components when used correctly in a mobile application. For this project, I wanted to go over the basics of how to use a map in a fragment, as well as go over some of the tools that make maps useful. As with my other projects, the source code that I will be going over is available online here.


    To start, we're going to want to edit our manifest to include the Google Maps API key. There's plenty of tutorials out there already for getting this key, including this one from the Google documentation, so for the sake of brevity we'll skip over that process and assume that it exists as a value in the strings.xml file. We will want to include this key within the applications tag in the manifest as a piece of meta-data using the name "com.google.android.maps.v2.API_KEY".

<meta-data
android:name="com.google.android.maps.v2.API_KEY"
android:value="@string/maps_api_key" />

    We're also going to want to put in our play services version number as meta-data between the closing tags for application and manifest using the name "com.google.android.gms.version".

<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />

    To finish up the manifest, the last thing we'll need is our set of permissions for the app, such as Internet access, location access, and optionally local storage permissions. While local storage is not a necessity for using maps, I used it for saving persistent information about the map.

<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="com.ptrprograms.maps.permission.MAPS_RECEIVE" />

   The general layout of this project consist of three classes; the main activity, the map fragment, and a listener. The listener interface consists of two methods and is used for communicating from the fragment to the main activity.

public interface mapListener {
public void playServicesUnavailable();
public void longClickedMap( LatLng latLng );
}

    Both of these methods are fairly straight forward. One is called when the map determines that Google Play Services are unavailable, making the map unusable, and the other is called when the map detects a long click in order to send that location to the main activity.

    The purpose of the main activity is to control the high level functions of the application while leaving the fragment as a general tool that can be manipulated easily by the main activity. For this demonstration, MainActivity simply loads in our map fragment, handles the case of there being no Play Services ( puts up a dialog that leads the user to downloading services or closing the application ), and responds to a long click on the map by requesting that a marker be placed in the location.

    The bulk of the work in this application is handled through our map fragment. While Google provides a map fragment that can be accessed and manipulated from an activity, I decided to build my own fragment and include the GoogleMap in order to add my own helper functionality. I do include two listeners pertaining to GooglePlayServices in order to determine if the connection has succeeded, allowing the fragment to initialize, or failed.

public class PTRMapFragment extends Fragment implements GooglePlayServicesClient.ConnectionCallbacks, GooglePlayServicesClient.OnConnectionFailedListener

    Once the service has connected, the map is configured to show road and building names, as well as satellite images for the locations. The onMarkerClick and onMapLongClick listeners are also initialized on the map at this point.

    The action I have chosen when the user holds down on a location in the map is to simply add a marker to that location. This is done from the interface function longClickedMap( LatLng ) from our implemented MapListener class, and MainActivity simply calls the fragment's addMarker( LatLng ) function. addMarker( LatLng ) uses the GeoCoder object to retrieve the address listed for the given coordinates and adds a maker on that location with the address as a title for the marker.

public void addMarker( LatLng latLng ) {
if( latLng == null )
return;

Geocoder geocoder = new Geocoder( getActivity() );
String address;
try {
address = geocoder.getFromLocation( latLng.latitude, latLng.longitude, 1 ).get( 0 ).getAddressLine( 0 );
} catch( IOException e ) {
address = "";
}
Log.e( TAG, address );
addMarker( 0, latLng, address );
}

public void addMarker( float color, LatLng latLng, String title ) {
if( mMap == null )
mMap = ( (SupportMapFragment) getFragmentManager()
.findFragmentById( R.id.map ) )
.getMap();

if( latLng == null || mMap == null )
return;

MarkerOptions markerOptions = new MarkerOptions().position( latLng );
if( !title.isEmpty() )
markerOptions.title( title );

if( color == 0 )
color = BitmapDescriptorFactory.HUE_RED;

markerOptions.icon( BitmapDescriptorFactory.defaultMarker( color ) );
Marker marker = mMap.addMarker( markerOptions );
if( !markerLocations.contains( marker ) )
markerLocations.add( marker );

marker.showInfoWindow();
}



    Another important aspect of the map fragment is the camera. While I set the values for the camera in the fragment, they can also be set as attributes in the layout xml file. The method that I use checks for a shared preference to retrieve values that may have been changed by the user, or uses default values in order to focus the camera on the user's location and set the tilt, zoom and bearing.

     private void setInitialCameraPosition() {
double lng, lat;
float tilt, bearing, zoom;

SharedPreferences settings = getActivity().getSharedPreferences( EXTRAS_SHARED_PREFERENCES, 0 );
lng = Double.longBitsToDouble( settings.getLong( SAVED_STATE_LONG, Double.doubleToLongBits( mLocationClient.getLastLocation().getLongitude() ) ) );
lat = Double.longBitsToDouble( settings.getLong( SAVED_STATE_LAT, Double.doubleToLongBits( mLocationClient.getLastLocation().getLatitude() ) ) );
zoom = settings.getFloat( SAVED_STATE_ZOOM, 17 );
bearing = settings.getFloat( SAVED_STATE_BEARING, 0 );
tilt = settings.getFloat( SAVED_STATE_TILT, 30 );

CameraPosition cameraPosition = new CameraPosition.Builder()
.target( new LatLng( lat, lng) )
.zoom( zoom )
.bearing( bearing )
.tilt( tilt )
.build();
if( cameraPosition == null || mMap == null )
return;
mMap.animateCamera( CameraUpdateFactory.newCameraPosition( cameraPosition ) );
}

    While I only implemented some map functionality, others include the ability to add circles, lines, closed polygons and overlays to make maps even more useful for applications. I also touched on the capabilities of Geocoder, but there's a lot more that can be utilized from that package in order find locations based on addresses or common names. I highly recommend going through the official documentation and seeing the full capabilities of these classes in order to assist your users to the fullest capacity.
Read More..

Jumat, 31 Januari 2014

Android Random Quote Daydream

    Introduced with the release of Android 4.2, Daydream is the name of the screen saver functionality that activates when a device is docked or plugged into a charger. These daydreams can be purely visible, such as the sample program that I will be discussing, or they can interact with the user through gestures and touches in order to provide more functionality.

   In order to demonstrate the Daydream service, I have built a simple application that retrieves quotes from an online feed and displays them to the user. After a set period of time has passed, the displayed quote will fade out, and another will fade in to take its place. Some key components that I am using that are not part of the standard Android SDK are:
  • GSONRequest - a Volley adapter for JSON requests that will be parsed into Java objects by GSON. This file was written by Ognyan Bankov.
  • Volley - a Google library that handle's network requests.
    All code for this blog post can be found here.



    The starting point for all Daydream apps is a Java class that extends DreamService. The code in this example is very minimal, as all of the display is handled in our custom view, but the key function in this example is the onAttachedToWindow method that is called as soon as the Daydream is started.

public class DaydreamService extends DreamService {

@Override
public void onAttachedToWindow() {
super.onAttachedToWindow();

final QuoteView view = new QuoteView( this );
view.setLayoutParams( new ViewGroup.LayoutParams( ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT ) );

setContentView( view );
}
}

    QuoteView extends a simple TextView and uses a runnable with Volley and GSON to load quotes from an online API into a Quote model and animate their transitions as the quote is swapped out.

Quote model:
public class Quote {
private String json_class;
private String quote;
private String link;
private String source;

public void setJson_class( String json_class ) {
this.json_class = json_class;
}

public void setQuote( String quote ) {
this.quote = quote;
}

public void setLink( String link ) {
this.link = link;
}

public void setSource( String source ) {
this.source = source;
}

public String getJson_class() {
return json_class;
}

public String getQuote() {
return quote;
}

public String getLink() {
return link;
}

public String getSource() {
return source;
}
}

    While using the above Quote model object is not a necessity, it does keep data organized and easy to access in the application.

API Network Requests:
private void generateQuote() {
GsonRequest<Quote> request = new GsonRequest<Quote>(
Request.Method.GET,
getResources().getString( R.string.random_quote_url_json ),
Quote.class,
onSuccessListener(),
onErrorListener() );

Volley.newRequestQueue( getContext() ).add( request );
}

public Response.Listener onSuccessListener() {
return new Response.Listener<Quote>() {
@Override
public void onResponse( Quote quote ) {
if( quote == null )
return;

if( mQuote == null )
mQuote = new Quote();

mQuote.setJson_class( quote.getJson_class() );
mQuote.setLink( quote.getLink() );
mQuote.setSource( quote.getSource() );
mQuote.setQuote( quote.getQuote() );
startAnimation( mFadeOut );
}
};
}

protected Response.ErrorListener onErrorListener()
{
return new Response.ErrorListener()
{
@Override
public void onErrorResponse( VolleyError volleyError )
{
mQuote.setQuote( getResources().getString( R.string.volley_error ) );
startAnimation( mFadeOut );
}
};
}

The above code uses a simple Volley request as an argument to GSONRequest in order to pull the quote feed into a Quote object and fade out the currently displayed text. Once the text has completely faded out, the textview is set to the new quote and fades in using another animation.

view mid-transition

The animation objects are created and set with a listener in the initAnimation method

private void initAnimation() {
mFadeIn = new AlphaAnimation( 0.0f, 1.0f );
mFadeIn.setDuration( mFadeInTime );
mFadeIn.setFillAfter( true );

mFadeOut = new AlphaAnimation( 1.0f, 0.0f );
mFadeOut.setDuration( mFadeOutTime );
mFadeOut.setFillAfter( true );
mFadeOut.setAnimationListener( new Animation.AnimationListener() {

@Override
public void onAnimationStart(Animation animation) {
//Do nothing.
}

@Override
public void onAnimationEnd(Animation animation) {
displayQuote();
}

@Override
public void onAnimationRepeat(Animation animation) {
//Do nothing.
}
});
}

    The final portion of this app that must be considered is the manifest. Permission to use the client's network connection must be requested, the Daydream service must be declared and an intent for android.service.dreams.DreamService must filtered to the application in order for it to run within the system.

Manifest:
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="com.ptrprograms.daydream">

<uses-permission android:name="android.permission.INTERNET" />

<application>

<service
android:name=".services.DaydreamService"
android:exported="true"
android:label="@string/app_name">

<intent-filter>

<action android:name="android.service.dreams.DreamService" />
<category android:name="android.intent.category.DEFAULT" />

</intent-filter>

</service>

</application>

</manifest>

    As this example shows, most of the work in this Daydream application is handled through the view. Additional features, such as click listeners and gestures, can be applied as well in order to add user interaction. While this program was fairly minimalistic, it provides an introduction to Daydream that I hope others will find useful in building their own Android screen savers.
Read More..

Minggu, 26 Januari 2014

    One of the key characteristics of mobile devices that separates them from older platforms is that they carry a number of embedded sensors, which allow them to take readings from their environment. I have written a sample program that displays available sensors on an Android device, which then shows information and output from a selected sensor. All source code can be found here.

    The initial screen is a simple ListFragment that populates an adapter with a list of sensors on the device:

SensorListFragment.java
@Override
public void onViewCreated(View view, Bundle savedInstanceState) {
super.onViewCreated(view, savedInstanceState);

mAdapter = new SensorListAdapter( getActivity() );
setListAdapter(mAdapter);

mSensorManager = (SensorManager) getActivity()
.getSystemService( Context.SENSOR_SERVICE );

for( Sensor sensor : mSensorManager.getSensorList( Sensor.TYPE_ALL ) )
mAdapter.add( sensor );
}

    This adapter displays a simple_list_item_1 list row that is populated with the name of each sensor, so that the result looks like this on a Nexus 4:



    Using the ListFragment's built-in OnListItemClicked function, we can retrieve the sensor that has been selected by the user and pass it to another fragment that replaces the one currently attached to our activity.

SensorListFragment.java
    @Override
public void onListItemClick(ListView l, View v, int position, long id) {
super.onListItemClick(l, v, position, id);

Sensor sensor = (Sensor) getListAdapter().getItem( position );
SensorDetailFragment mFragment = SensorDetailFragment.newInstance( sensor );
FragmentTransaction transaction = getActivity().getSupportFragmentManager().beginTransaction();
transaction.replace(R.id.container, mFragment)
.addToBackStack(null)
.commit();
}

    The sensor is passed to the SensorDetailFragment and the type is stored as an argument that can be retrieved when the fragment is attached and created.

SensorDetailFragment.java
public static SensorDetailFragment newInstance( Sensor sensor ) {
SensorDetailFragment mFragment = new SensorDetailFragment();
Bundle args = new Bundle();
args.putInt( EXTRA_SENSOR_TYPE , sensor.getType() );
mFragment.setArguments(args);
return mFragment;
}

    When the fragment is attached and onCreate() is called, the SensorManager system service is retrieved and stored, then the sensor is retrieved from the manager by its type.

SensorDetailFragment.java
        mSensorManager = (SensorManager) getActivity().getSystemService( Context.SENSOR_SERVICE );
mSensor = mSensorManager.getDefaultSensor( type );

    After the TextViews, which label and display information, are initialized, the static information from the sensor is displayed using the sensor's various functions found here. The dynamic information, such as the readings from the sensor, are retrieved using the SensorEventListener. This interface consists of two methods that respond to events: onAccuracyChanged( Sensor sensor, int accuracy ) and onSensorChanged( SensorEvent event ).


    onAccuracyChanged passes the sensor that triggered the event, as well as an integer that matches with one of four values representing high, medium, low and unreliable accuracy of the given sensor.

    onSensorChanged passes a SensorEvent item that consists of various attributes such as

  • accuracy
  • timestamp - useful for throwing out data that occurs more rapidly than needed by the application, but not already associated with a sampling speed
  • sensor - the sensor that triggered the event
  • values - an array of the actual readings from the sensor. This can have indices 0 - 3 populated, depending on the type of sensor giving the reading. Some, such as the gravity sensor, give readings for values[0] - values[2] for the X, Y and Z axis of the device, while others, such as the barometer, only give readings in values[0].
    As with any listener interface, it is important to remember to register and unregister your listeners in a practical place, so as to not waste the device battery while the sensors are not being checked and their data used. In this sensor program, the listener is registered in onStart

SensorDetailFragment.java
mSensorManager.registerListener( SensorDetailFragment.this, mSensor, SensorManager.SENSOR_DELAY_UI );

and unregistered when the fragment is hidden.

SensorDetailFragment.java
    @Override
public void onHiddenChanged(boolean hidden) {
super.onHiddenChanged(hidden);
if( hidden )
mSensorManager.unregisterListener( this );
}

    While there is a lot more to sensor-use in the Android platform, especially in how the data can be interpreted and used to take your apps to the next level, I hope I have given a decent introduction to retrieving data from a list of sensors, and that the source code on GitHub can help someone out there looking to implement sensors in their own projects.
Read More..

Jumat, 12 April 2013

ANDROID MOBILE APPS




This Android app is based to all indian cricket live show or related channels. All cricket matches like as IPL, ONE DAY, TEST, WORLD CUP and many more.







This andorid app is based to all indian tv serial, film, cartoon, cricket, mythology, hindi, telgu, tamil and odia tv chanell  also. About 200+ Channnel .



http://www.bibhutv.com/Application/Muna/Live_Indian_TV.apk










 Searches related to 



indian live tv android app for  top download phone tablet rogers market online application mobile best top watching free









Read More..