Back to project page vegdroid.
The source code is released under:
Software ======== Copyright (c) 2012, Thiemo Nagel All rights reserved. BSD 3-clause license: Redistribution and use in source and binary forms, with or without modification, are permitted provided...
If you think the Android project vegdroid listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package de.thiemonagel.vegdroid; /*from w ww. j ava 2s .c o m*/ import android.os.Bundle; import android.text.Html; import android.text.method.LinkMovementMethod; import android.view.View; import android.widget.TextView; import com.actionbarsherlock.app.SherlockActivity; import com.google.android.gms.common.GooglePlayServicesUtil; public class AboutActivity extends SherlockActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_about); // display Google Maps API licensing info, as required in // https://developers.google.com/maps/documentation/android/intro { TextView tv = (TextView) findViewById(R.id.aboutText); tv.setText( Html.fromHtml(getString(R.string.text_about)) ); tv.setMovementMethod( LinkMovementMethod.getInstance() ); }{ TextView tv = (TextView) findViewById(R.id.GMapLegalese); tv.setText( GooglePlayServicesUtil.getOpenSourceSoftwareLicenseInfo( this ) ); } } /* @Override public boolean onCreateOptionsMenu(Menu menu) { // Inflate the menu; this adds items to the action bar if it is present. getSupportMenuInflater().inflate(R.menu.activity_about, menu); return true; } */ public void OK( View view ) { finish(); } }