2014-04-28 15:41:40 -04:00
|
|
|
/*
|
|
|
|
* Copyright 2014 A.C.R. Development
|
|
|
|
*/
|
|
|
|
package acr.browser.lightning;
|
|
|
|
|
|
|
|
import android.app.Activity;
|
|
|
|
import android.content.Intent;
|
|
|
|
import android.net.Uri;
|
|
|
|
import android.os.Bundle;
|
|
|
|
import android.view.MenuItem;
|
|
|
|
import android.view.View;
|
|
|
|
|
|
|
|
/*
|
|
|
|
*NOTE: This activity must not be removed in order to comply with the Mozilla Public License v. 2.0
|
|
|
|
*under which this code is licensed. Unless you plan on providing other attribution in the app to
|
|
|
|
*the original source in another visible way, it is advised against the removal of this Activity.
|
|
|
|
*/
|
2014-06-08 16:44:02 +03:00
|
|
|
public class LicenseActivity extends Activity implements View.OnClickListener {
|
2014-04-28 15:41:40 -04:00
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onCreate(Bundle savedInstanceState) {
|
|
|
|
super.onCreate(savedInstanceState);
|
|
|
|
setContentView(R.layout.license_activity);
|
|
|
|
getActionBar().setHomeButtonEnabled(true);
|
|
|
|
getActionBar().setDisplayHomeAsUpEnabled(true);
|
2014-06-08 16:44:02 +03:00
|
|
|
findViewById(R.id.browserLicense).setOnClickListener(this);
|
|
|
|
findViewById(R.id.licenseAOSP).setOnClickListener(this);
|
|
|
|
findViewById(R.id.licenseHosts).setOnClickListener(this);
|
|
|
|
}
|
2014-07-18 19:43:42 -04:00
|
|
|
|
2014-06-08 16:44:02 +03:00
|
|
|
@Override
|
2014-07-18 19:43:42 -04:00
|
|
|
public void onClick(View v) {
|
|
|
|
switch (v.getId()) {
|
2014-07-19 16:49:33 +02:00
|
|
|
case R.id.browserLicense:
|
|
|
|
actionView("http://www.mozilla.org/MPL/2.0/");
|
|
|
|
break;
|
|
|
|
case R.id.licenseAOSP:
|
|
|
|
actionView("http://www.apache.org/licenses/LICENSE-2.0");
|
|
|
|
break;
|
|
|
|
case R.id.licenseHosts:
|
|
|
|
actionView("http://hosts-file.net/");
|
|
|
|
break;
|
2014-07-18 19:43:42 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-08 16:44:02 +03:00
|
|
|
private void actionView(String url) {
|
2014-07-28 17:09:03 -04:00
|
|
|
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(url), this, MainActivity.class));
|
2014-07-18 19:43:42 -04:00
|
|
|
finish();
|
2014-04-28 15:41:40 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onOptionsItemSelected(MenuItem item) {
|
|
|
|
finish();
|
|
|
|
return super.onOptionsItemSelected(item);
|
|
|
|
}
|
|
|
|
}
|