21 lines
463 B
Java
21 lines
463 B
Java
package com.stardust.scriptdroid.tool;
|
|
|
|
import android.content.Context;
|
|
import android.widget.Toast;
|
|
|
|
import com.stardust.scriptdroid.R;
|
|
import com.stardust.util.IntentUtil;
|
|
|
|
/**
|
|
* Created by Stardust on 2017/4/12.
|
|
*/
|
|
|
|
public class IntentTool {
|
|
|
|
public static void browse(Context context, String url){
|
|
if (!IntentUtil.browse(context, url)) {
|
|
Toast.makeText(context, R.string.text_no_brower, Toast.LENGTH_SHORT).show();
|
|
}
|
|
}
|
|
}
|