mirror of
https://github.com/SimpleMobileTools/Simple-Notes.git
synced 2025-04-04 18:51:14 +02:00
35 lines
980 B
Java
35 lines
980 B
Java
package com.simplemobiletools.notes;
|
|
|
|
import android.content.Intent;
|
|
import android.net.Uri;
|
|
import android.os.Bundle;
|
|
import android.support.v7.app.AppCompatActivity;
|
|
|
|
import butterknife.ButterKnife;
|
|
import butterknife.OnClick;
|
|
|
|
public class LicenseActivity extends AppCompatActivity {
|
|
@Override
|
|
protected void onCreate(Bundle savedInstanceState) {
|
|
super.onCreate(savedInstanceState);
|
|
setContentView(R.layout.activity_license);
|
|
ButterKnife.bind(this);
|
|
}
|
|
|
|
@OnClick(R.id.license_butterknife_title)
|
|
public void butterKnifeClicked() {
|
|
openUrl(R.string.butterknife_url);
|
|
}
|
|
|
|
@OnClick(R.id.license_ambilwarna_title)
|
|
public void ambilwarnaClicked() {
|
|
openUrl(R.string.ambilwarna_url);
|
|
}
|
|
|
|
private void openUrl(int id) {
|
|
final String url = getResources().getString(id);
|
|
final Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
|
|
startActivity(browserIntent);
|
|
}
|
|
}
|