2020-01-24 16:23:31 +01:00
|
|
|
package com.darkweb.genesissearchengine.helperManager;
|
|
|
|
|
|
|
|
import android.Manifest;
|
2020-10-20 16:55:08 +02:00
|
|
|
import android.annotation.SuppressLint;
|
2020-01-24 16:23:31 +01:00
|
|
|
import android.app.DownloadManager;
|
|
|
|
import android.content.ClipData;
|
|
|
|
import android.content.ClipboardManager;
|
|
|
|
import android.content.Context;
|
|
|
|
import android.content.Intent;
|
|
|
|
import android.content.pm.PackageManager;
|
|
|
|
import android.content.res.Resources;
|
|
|
|
import android.graphics.Color;
|
|
|
|
import android.graphics.Point;
|
2020-10-20 16:55:08 +02:00
|
|
|
import android.graphics.drawable.ColorDrawable;
|
2020-01-24 16:23:31 +01:00
|
|
|
import android.net.Uri;
|
|
|
|
import android.os.Build;
|
2020-10-20 16:55:08 +02:00
|
|
|
import android.os.Vibrator;
|
2020-01-24 16:23:31 +01:00
|
|
|
import android.text.SpannableString;
|
|
|
|
import android.text.Spanned;
|
|
|
|
import android.text.style.ForegroundColorSpan;
|
|
|
|
import android.view.Display;
|
|
|
|
import android.view.Gravity;
|
2020-10-20 16:55:08 +02:00
|
|
|
import android.view.LayoutInflater;
|
2020-01-24 16:23:31 +01:00
|
|
|
import android.view.View;
|
|
|
|
import android.view.ViewGroup;
|
|
|
|
import android.view.animation.Animation;
|
|
|
|
import android.view.animation.RotateAnimation;
|
|
|
|
import android.view.inputmethod.InputMethodManager;
|
2020-10-20 16:55:08 +02:00
|
|
|
import android.widget.ActionMenuView;
|
|
|
|
import android.widget.PopupWindow;
|
2020-01-24 16:23:31 +01:00
|
|
|
import android.widget.Toast;
|
|
|
|
|
|
|
|
import androidx.appcompat.app.AppCompatActivity;
|
|
|
|
import androidx.core.app.ActivityCompat;
|
|
|
|
import androidx.core.app.ShareCompat;
|
|
|
|
import androidx.core.content.ContextCompat;
|
|
|
|
|
|
|
|
import com.darkweb.genesissearchengine.constants.keys;
|
|
|
|
import com.darkweb.genesissearchengine.dataManager.dataController;
|
2020-10-05 13:12:00 +02:00
|
|
|
import com.darkweb.genesissearchengine.dataManager.dataEnums;
|
2020-01-24 16:23:31 +01:00
|
|
|
import com.example.myapplication.BuildConfig;
|
2020-10-20 16:55:08 +02:00
|
|
|
import com.example.myapplication.R;
|
2020-01-24 16:23:31 +01:00
|
|
|
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.net.HttpURLConnection;
|
|
|
|
import java.net.MalformedURLException;
|
|
|
|
import java.net.URI;
|
|
|
|
import java.net.URL;
|
|
|
|
import java.net.URLConnection;
|
|
|
|
import java.util.ArrayList;
|
2020-10-05 13:12:00 +02:00
|
|
|
import java.util.Arrays;
|
2020-01-24 16:23:31 +01:00
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
import javax.net.ssl.HttpsURLConnection;
|
|
|
|
|
2020-10-20 16:55:08 +02:00
|
|
|
import static android.content.Context.LAYOUT_INFLATER_SERVICE;
|
2020-01-24 16:23:31 +01:00
|
|
|
import static android.content.Intent.FLAG_ACTIVITY_NEW_TASK;
|
|
|
|
import static android.content.Intent.FLAG_ACTIVITY_NO_ANIMATION;
|
|
|
|
|
|
|
|
public class helperMethod
|
|
|
|
{
|
|
|
|
/*Helper Methods General*/
|
|
|
|
|
2020-11-11 13:11:13 +01:00
|
|
|
public static String completeURL(String pURL){
|
|
|
|
if(pURL.equals("about:blank")){
|
|
|
|
return pURL;
|
|
|
|
}
|
2020-01-24 16:23:31 +01:00
|
|
|
URL weburl = null;
|
|
|
|
try
|
|
|
|
{
|
2020-11-11 13:11:13 +01:00
|
|
|
weburl = new URL(pURL);
|
2020-01-24 16:23:31 +01:00
|
|
|
URLConnection result = weburl.openConnection();
|
|
|
|
|
|
|
|
if (result instanceof HttpsURLConnection) {
|
|
|
|
|
|
|
|
}
|
|
|
|
else if (result instanceof HttpURLConnection) {
|
|
|
|
// http
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// null or something bad happened
|
|
|
|
}
|
|
|
|
} catch (IOException e)
|
|
|
|
{
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
|
|
|
|
2020-11-11 13:11:13 +01:00
|
|
|
if(!pURL.startsWith("www.")&& !pURL.startsWith("http://")&& !pURL.startsWith("https://")){
|
|
|
|
pURL = ""+pURL;
|
2020-01-24 16:23:31 +01:00
|
|
|
}
|
2020-11-11 13:11:13 +01:00
|
|
|
if(!pURL.startsWith("http://")&&!pURL.startsWith("https://")){
|
|
|
|
pURL = "http://"+pURL;
|
2020-01-24 16:23:31 +01:00
|
|
|
}
|
2020-11-11 13:11:13 +01:00
|
|
|
return pURL;
|
2020-01-24 16:23:31 +01:00
|
|
|
}
|
|
|
|
|
2020-11-11 13:11:13 +01:00
|
|
|
public static SpannableString urlDesigner(String url, Context pContext){
|
2020-01-24 16:23:31 +01:00
|
|
|
|
|
|
|
if (url.contains("https://"))
|
|
|
|
{
|
|
|
|
SpannableString ss = new SpannableString(url);
|
|
|
|
ss.setSpan(new ForegroundColorSpan(Color.argb(255, 0, 123, 43)), 0, 5, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
|
|
|
|
ss.setSpan(new ForegroundColorSpan(Color.GRAY), 5, 8, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
|
|
|
|
return ss;
|
|
|
|
} else if (url.contains("http://"))
|
|
|
|
{
|
|
|
|
SpannableString ss = new SpannableString(url);
|
|
|
|
ss.setSpan(new ForegroundColorSpan(Color.argb(255, 0, 128, 43)), 0, 4, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
|
|
|
|
ss.setSpan(new ForegroundColorSpan(Color.GRAY), 4, 7, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
|
|
|
|
return ss;
|
|
|
|
} else
|
|
|
|
{
|
|
|
|
SpannableString ss = new SpannableString(url);
|
2020-11-11 13:11:13 +01:00
|
|
|
ss.setSpan(new ForegroundColorSpan(pContext.getResources().getColor(R.color.c_text_v1)), 0, url.length(), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
|
2020-01-24 16:23:31 +01:00
|
|
|
return ss;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void sendRateEmail(Context context){
|
|
|
|
Intent i = new Intent(Intent.ACTION_SENDTO, Uri.fromParts("mailto", "gamesolstudios@gmail.com", null));
|
|
|
|
i.putExtra(Intent.EXTRA_SUBJECT, "Issue Report");
|
|
|
|
i.putExtra(Intent.EXTRA_TEXT , "");
|
|
|
|
try {
|
|
|
|
if (i.resolveActivity(context.getPackageManager()) != null) {
|
|
|
|
context.startActivity(i);
|
|
|
|
}
|
|
|
|
} catch (android.content.ActivityNotFoundException ignored) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-28 19:10:00 +01:00
|
|
|
public static void sendBridgeEmail(Context context){
|
|
|
|
Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND);
|
|
|
|
String aEmailList[] = { "bridges@torproject.org"};
|
|
|
|
emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL, aEmailList);
|
|
|
|
emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "get transport");
|
|
|
|
emailIntent.setType("plain/text");
|
|
|
|
emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, "get transport");
|
|
|
|
context.startActivity(emailIntent);
|
|
|
|
}
|
|
|
|
|
2020-01-24 16:23:31 +01:00
|
|
|
public static void hideKeyboard(AppCompatActivity context) {
|
|
|
|
View view = context.findViewById(android.R.id.content);
|
|
|
|
if (view != null)
|
|
|
|
{
|
|
|
|
InputMethodManager imm = (InputMethodManager) context.getSystemService(Context.INPUT_METHOD_SERVICE);
|
|
|
|
assert imm != null;
|
|
|
|
imm.hideSoftInputFromWindow(view.getWindowToken(), 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void rateApp(AppCompatActivity context){
|
2020-10-20 16:55:08 +02:00
|
|
|
dataController.getInstance().invokePrefs(dataEnums.ePreferencesCommands.M_SET_BOOL, Arrays.asList(keys.PROXY_IS_APP_RATED,true));
|
2020-01-24 16:23:31 +01:00
|
|
|
context.startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=com.darkweb.genesissearchengine")));
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void shareApp(AppCompatActivity context) {
|
|
|
|
ShareCompat.IntentBuilder.from(context)
|
|
|
|
.setType("text/plain")
|
|
|
|
.setChooserTitle("Hi! Check out this Awesome App")
|
|
|
|
.setSubject("Hi! Check out this Awesome App")
|
|
|
|
.setText("Genesis | Onion Search | http://play.google.com/store/apps/details?id=" + context.getPackageName())
|
|
|
|
.startChooser();
|
|
|
|
}
|
|
|
|
|
2020-10-05 13:12:00 +02:00
|
|
|
public static void shareApp(AppCompatActivity context, String p_share, String p_title) {
|
|
|
|
ShareCompat.IntentBuilder.from(context)
|
|
|
|
.setType("text/plain")
|
|
|
|
.setChooserTitle("Hi! Check out this Awesome URL | " + p_title)
|
|
|
|
.setSubject("Hi! Check out this Awesome URL | " + p_title)
|
|
|
|
.setText("Website URL | " + p_share)
|
|
|
|
.startChooser();
|
|
|
|
}
|
|
|
|
|
2020-10-20 16:55:08 +02:00
|
|
|
public static void vibrate(AppCompatActivity context) {
|
|
|
|
Vibrator v = (Vibrator) context.getSystemService(Context.VIBRATOR_SERVICE);
|
|
|
|
v.vibrate(50);
|
|
|
|
}
|
|
|
|
|
2020-10-05 13:12:00 +02:00
|
|
|
public static void shareURL(AppCompatActivity context, String p_share) {
|
|
|
|
ShareCompat.IntentBuilder.from(context)
|
|
|
|
.setType("text/plain")
|
|
|
|
.setChooserTitle("Hi! Check out these Awesome URLS")
|
|
|
|
.setSubject("Hi! Check out these Awesome URL")
|
|
|
|
.setText("Website URL | " + p_share)
|
|
|
|
.startChooser();
|
|
|
|
}
|
|
|
|
|
2020-01-24 16:23:31 +01:00
|
|
|
public static void openDownloadFolder(AppCompatActivity context)
|
|
|
|
{
|
|
|
|
Intent intent = new Intent(DownloadManager.ACTION_VIEW_DOWNLOADS);
|
|
|
|
if(intent.resolveActivity(context.getPackageManager()) != null)
|
|
|
|
{
|
|
|
|
context.startActivity(intent);
|
|
|
|
}else {
|
|
|
|
helperMethod.showToastMessage("Download Folder Not Found",context);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-28 19:10:00 +01:00
|
|
|
public static void openLocaleSettings(Context context){
|
|
|
|
Intent i = new Intent(android.provider.Settings.ACTION_LOCALE_SETTINGS);
|
|
|
|
context.startActivity(i);
|
|
|
|
}
|
2020-01-24 16:23:31 +01:00
|
|
|
|
|
|
|
static String getHost(String link){
|
|
|
|
URL url;
|
|
|
|
try
|
|
|
|
{
|
|
|
|
url = new URL(link);
|
|
|
|
return url.getHost();
|
|
|
|
}
|
|
|
|
catch (MalformedURLException e)
|
|
|
|
{
|
|
|
|
e.printStackTrace();
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-02-28 19:10:00 +01:00
|
|
|
public static String capitalizeString(String string) {
|
|
|
|
char[] chars = string.toLowerCase().toCharArray();
|
|
|
|
boolean found = false;
|
|
|
|
for (int i = 0; i < chars.length; i++) {
|
|
|
|
if (!found && Character.isLetter(chars[i])) {
|
|
|
|
chars[i] = Character.toUpperCase(chars[i]);
|
|
|
|
found = true;
|
|
|
|
} else if (Character.isWhitespace(chars[i]) || chars[i]=='.' || chars[i]=='\'') { // You can add other chars here
|
|
|
|
found = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return String.valueOf(chars);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static String removeLastSlash(String url){
|
|
|
|
if(url.length()>2){
|
|
|
|
if(url.charAt(url.length()-1)=='/'){
|
|
|
|
return url.substring(0,url.length()-1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return url;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static String urlWithoutPrefix(String url){
|
|
|
|
try{
|
|
|
|
url = url.substring(url.indexOf(getHost(url)),url.length()).replace("www.","").replace("m.","");
|
|
|
|
return url;
|
|
|
|
}catch (Exception ex){
|
|
|
|
return url;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-24 16:23:31 +01:00
|
|
|
public static void openActivity( Class<?> cls,int type,AppCompatActivity context,boolean animation){
|
|
|
|
Intent myIntent = new Intent(context, cls);
|
2020-10-20 16:55:08 +02:00
|
|
|
myIntent.putExtra(keys.PROXY_LIST_TYPE, type);
|
2020-01-24 16:23:31 +01:00
|
|
|
if(!animation){
|
|
|
|
myIntent.addFlags(FLAG_ACTIVITY_NO_ANIMATION);
|
|
|
|
}
|
|
|
|
context.startActivity(myIntent);
|
|
|
|
}
|
|
|
|
|
2020-11-11 13:11:13 +01:00
|
|
|
public static void restartActivity( Intent pIntent, AppCompatActivity pContext){
|
|
|
|
pContext.finish();
|
|
|
|
pContext.startActivity(pIntent);
|
|
|
|
}
|
|
|
|
|
2020-01-24 16:23:31 +01:00
|
|
|
public static void onMinimizeApp(AppCompatActivity context){
|
|
|
|
Intent startMain = new Intent(Intent.ACTION_MAIN);
|
|
|
|
startMain.addCategory(Intent.CATEGORY_HOME);
|
|
|
|
startMain.setFlags(FLAG_ACTIVITY_NEW_TASK);
|
|
|
|
context.startActivity(startMain);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static int screenWidth()
|
|
|
|
{
|
|
|
|
return (Resources.getSystem().getDisplayMetrics().widthPixels);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static RotateAnimation getRotationAnimation(){
|
|
|
|
RotateAnimation rotate = new RotateAnimation(0, 360, Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF,0.5f);
|
|
|
|
rotate.setDuration(2000);
|
|
|
|
rotate.setRepeatCount(Animation.INFINITE);
|
|
|
|
return rotate;
|
|
|
|
}
|
|
|
|
|
2020-11-11 13:11:13 +01:00
|
|
|
public static void openNotification(AppCompatActivity pContext)
|
|
|
|
{
|
|
|
|
Intent intent = new Intent();
|
|
|
|
intent.setAction("android.settings.APP_NOTIFICATION_SETTINGS");
|
|
|
|
intent.putExtra("android.provider.extra.APP_PACKAGE", pContext.getPackageName());
|
|
|
|
pContext.startActivity(intent);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static String ellipsize(String input, int maxLength) {
|
|
|
|
String ellip = "...";
|
|
|
|
if (input == null || input.length() <= maxLength
|
|
|
|
|| input.length() < ellip.length()) {
|
|
|
|
return input;
|
|
|
|
}
|
|
|
|
return input.substring(0, maxLength - ellip.length()).concat(ellip);
|
|
|
|
}
|
|
|
|
|
2020-01-24 16:23:31 +01:00
|
|
|
public static String getDomainName(String url)
|
|
|
|
{
|
|
|
|
try{
|
|
|
|
URI uri = new URI(url);
|
|
|
|
String domain = uri.getHost();
|
|
|
|
return domain.startsWith("www.") ? domain.substring(4) : domain;
|
|
|
|
}catch (Exception ex){
|
|
|
|
return url;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static ViewGroup.MarginLayoutParams getCenterScreenPoint(ViewGroup.LayoutParams itemLayoutParams) {
|
|
|
|
double heightloader = Resources.getSystem().getDisplayMetrics().heightPixels*0.78;
|
|
|
|
ViewGroup.MarginLayoutParams params_loading = (ViewGroup.MarginLayoutParams) itemLayoutParams;
|
|
|
|
params_loading.topMargin = (int)(heightloader);
|
|
|
|
|
|
|
|
return params_loading;
|
|
|
|
}
|
|
|
|
|
|
|
|
@SuppressWarnings("ConstantConditions")
|
|
|
|
public static boolean isBuildValid (){
|
|
|
|
return BuildConfig.FLAVOR.equals("aarch64") && Build.SUPPORTED_ABIS[0].equals("arm64-v8a") || BuildConfig.FLAVOR.equals("arm") && Build.SUPPORTED_ABIS[0].equals("armeabi-v7a") || BuildConfig.FLAVOR.equals("x86") && Build.SUPPORTED_ABIS[0].equals("x86") || BuildConfig.FLAVOR.equals("x86_64") && Build.SUPPORTED_ABIS[0].equals("x86_64");
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void openPlayStore(String packageName,AppCompatActivity context)
|
|
|
|
{
|
|
|
|
Intent intent = new Intent(Intent.ACTION_VIEW);
|
|
|
|
intent.setData(Uri.parse("market://details?id="+packageName));
|
|
|
|
|
|
|
|
if(intent.resolveActivity(context.getPackageManager()) != null)
|
|
|
|
{
|
|
|
|
context.startActivity(intent);
|
|
|
|
}else {
|
|
|
|
helperMethod.showToastMessage("Playstore Not Found",context);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public static int dpFromPx(final Context context, final float px) {
|
|
|
|
return (int)(px / context.getResources().getDisplayMetrics().density);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static int pxFromDp(int dp){
|
|
|
|
return (int) (dp * Resources.getSystem().getDisplayMetrics().density);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static int getScreenHeight(AppCompatActivity context) {
|
|
|
|
Display display = context.getWindowManager().getDefaultDisplay();
|
|
|
|
Point size = new Point();
|
|
|
|
display.getRealSize(size);
|
|
|
|
return size.y;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static int getStatusBarHeight(Context context) {
|
|
|
|
int result = 0;
|
|
|
|
int resourceId = context.getResources().getIdentifier("status_bar_height", "dimen", "android");
|
|
|
|
if (resourceId > 0) {
|
|
|
|
result = context.getResources().getDimensionPixelSize(resourceId);
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public static void copyURL(String url,Context context){
|
2020-02-28 19:10:00 +01:00
|
|
|
|
2020-01-24 16:23:31 +01:00
|
|
|
ClipboardManager clipboard = (ClipboardManager) context.getSystemService(Context.CLIPBOARD_SERVICE);
|
|
|
|
ClipData clip = ClipData.newPlainText("link", url);
|
|
|
|
clipboard.setPrimaryClip(clip);
|
|
|
|
|
|
|
|
showToastMessage("Copied to Clipboard",context);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void showToastMessage(String message,Context context){
|
|
|
|
Toast toast=Toast.makeText(context.getApplicationContext(),message,Toast.LENGTH_SHORT);
|
|
|
|
toast.setGravity(Gravity.CENTER_HORIZONTAL|Gravity.BOTTOM, 0, 0);
|
|
|
|
toast.show();
|
|
|
|
}
|
|
|
|
|
|
|
|
public static boolean checkPermissions(AppCompatActivity context) {
|
|
|
|
String[] permissions = new String[]{
|
|
|
|
Manifest.permission.WRITE_EXTERNAL_STORAGE,
|
|
|
|
Manifest.permission.READ_EXTERNAL_STORAGE,
|
|
|
|
};
|
|
|
|
|
|
|
|
int result;
|
|
|
|
List<String> listPermissionsNeeded = new ArrayList<>();
|
|
|
|
for (String p : permissions) {
|
|
|
|
result = ContextCompat.checkSelfPermission(context, p);
|
|
|
|
if (result != PackageManager.PERMISSION_GRANTED) {
|
|
|
|
listPermissionsNeeded.add(p);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!listPermissionsNeeded.isEmpty()) {
|
|
|
|
ActivityCompat.requestPermissions(context, listPermissionsNeeded.toArray(new String[listPermissionsNeeded.size()]), 100);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-02-28 19:10:00 +01:00
|
|
|
public static void clearAppData(Context context) {
|
|
|
|
Intent intent = new Intent(android.provider.Settings.ACTION_APPLICATION_DETAILS_SETTINGS);
|
|
|
|
intent.setData(Uri.parse("package:" + context.getPackageName()));
|
|
|
|
context.startActivity(intent);
|
|
|
|
}
|
2020-10-20 16:55:08 +02:00
|
|
|
|
|
|
|
public static PopupWindow onCreateMenu(View p_view, int p_layout) {
|
|
|
|
PopupWindow popupWindow = null;
|
|
|
|
if(popupWindow!=null){
|
|
|
|
popupWindow.dismiss();
|
|
|
|
}
|
|
|
|
|
|
|
|
LayoutInflater layoutInflater
|
|
|
|
= (LayoutInflater) p_view.getContext()
|
|
|
|
.getSystemService(LAYOUT_INFLATER_SERVICE);
|
|
|
|
@SuppressLint("InflateParams") final View popupView = layoutInflater.inflate(p_layout, null);
|
|
|
|
|
|
|
|
|
|
|
|
popupWindow = new PopupWindow(
|
|
|
|
popupView,
|
|
|
|
ActionMenuView.LayoutParams.WRAP_CONTENT,
|
|
|
|
ActionMenuView.LayoutParams.WRAP_CONTENT, true);
|
|
|
|
|
|
|
|
popupWindow.setOutsideTouchable(true);
|
|
|
|
popupWindow.setFocusable(true);
|
|
|
|
popupWindow.setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
|
|
|
|
popupWindow.setAnimationStyle(R.style.popup_window_animation);
|
|
|
|
popupWindow.showAtLocation(p_view, Gravity.TOP|Gravity.END,0,0);
|
|
|
|
popupWindow.setElevation(7);
|
|
|
|
|
|
|
|
return popupWindow;
|
|
|
|
}
|
|
|
|
|
2020-01-24 16:23:31 +01:00
|
|
|
}
|