package com.pas.abtahibo.parvaz;


import anywheresoftware.b4a.B4AMenuItem;
import android.app.Activity;
import android.os.Bundle;
import anywheresoftware.b4a.BA;
import anywheresoftware.b4a.BALayout;
import anywheresoftware.b4a.B4AActivity;
import anywheresoftware.b4a.ObjectWrapper;
import anywheresoftware.b4a.objects.ActivityWrapper;
import java.lang.reflect.InvocationTargetException;
import anywheresoftware.b4a.B4AUncaughtException;
import anywheresoftware.b4a.debug.*;
import java.lang.ref.WeakReference;

public class playsrds extends Activity implements B4AActivity{
	public static playsrds mostCurrent;
	static boolean afterFirstLayout;
	static boolean isFirst = true;
    private static boolean processGlobalsRun = false;
	BALayout layout;
	public static BA processBA;
	BA activityBA;
    ActivityWrapper _activity;
    java.util.ArrayList<B4AMenuItem> menuItems;
	public static final boolean fullScreen = false;
	public static final boolean includeTitle = true;
    public static WeakReference<Activity> previousOne;
    public static boolean dontPause;

	@Override
	public void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
        mostCurrent = this;
		if (processBA == null) {
			processBA = new BA(this.getApplicationContext(), null, null, "com.pas.abtahibo.parvaz", "com.pas.abtahibo.parvaz.playsrds");
			processBA.loadHtSubs(this.getClass());
	        float deviceScale = getApplicationContext().getResources().getDisplayMetrics().density;
	        BALayout.setDeviceScale(deviceScale);
            
		}
		else if (previousOne != null) {
			Activity p = previousOne.get();
			if (p != null && p != this) {
                BA.LogInfo("Killing previous instance (playsrds).");
				p.finish();
			}
		}
        processBA.setActivityPaused(true);
        processBA.runHook("oncreate", this, null);
		if (!includeTitle) {
        	this.getWindow().requestFeature(android.view.Window.FEATURE_NO_TITLE);
        }
        if (fullScreen) {
        	getWindow().setFlags(android.view.WindowManager.LayoutParams.FLAG_FULLSCREEN,   
        			android.view.WindowManager.LayoutParams.FLAG_FULLSCREEN);
        }
		
        processBA.sharedProcessBA.activityBA = null;
		layout = new BALayout(this);
		setContentView(layout);
		afterFirstLayout = false;
        WaitForLayout wl = new WaitForLayout();
        if (anywheresoftware.b4a.objects.ServiceHelper.StarterHelper.startFromActivity(this, processBA, wl, false))
		    BA.handler.postDelayed(wl, 5);

	}
	static class WaitForLayout implements Runnable {
		public void run() {
			if (afterFirstLayout)
				return;
			if (mostCurrent == null)
				return;
            
			if (mostCurrent.layout.getWidth() == 0) {
				BA.handler.postDelayed(this, 5);
				return;
			}
			mostCurrent.layout.getLayoutParams().height = mostCurrent.layout.getHeight();
			mostCurrent.layout.getLayoutParams().width = mostCurrent.layout.getWidth();
			afterFirstLayout = true;
			mostCurrent.afterFirstLayout();
		}
	}
	private void afterFirstLayout() {
        if (this != mostCurrent)
			return;
		activityBA = new BA(this, layout, processBA, "com.pas.abtahibo.parvaz", "com.pas.abtahibo.parvaz.playsrds");
        
        processBA.sharedProcessBA.activityBA = new java.lang.ref.WeakReference<BA>(activityBA);
        anywheresoftware.b4a.objects.ViewWrapper.lastId = 0;
        _activity = new ActivityWrapper(activityBA, "activity");
        anywheresoftware.b4a.Msgbox.isDismissing = false;
        if (BA.isShellModeRuntimeCheck(processBA)) {
			if (isFirst)
				processBA.raiseEvent2(null, true, "SHELL", false);
			processBA.raiseEvent2(null, true, "CREATE", true, "com.pas.abtahibo.parvaz.playsrds", processBA, activityBA, _activity, anywheresoftware.b4a.keywords.Common.Density, mostCurrent);
			_activity.reinitializeForShell(activityBA, "activity");
		}
        initializeProcessGlobals();		
        initializeGlobals();
        
        BA.LogInfo("** Activity (playsrds) Create " + (isFirst ? "(first time)" : "") + " **");
        processBA.raiseEvent2(null, true, "activity_create", false, isFirst);
		isFirst = false;
		if (this != mostCurrent)
			return;
        processBA.setActivityPaused(false);
        BA.LogInfo("** Activity (playsrds) Resume **");
        processBA.raiseEvent(null, "activity_resume");
        if (android.os.Build.VERSION.SDK_INT >= 11) {
			try {
				android.app.Activity.class.getMethod("invalidateOptionsMenu").invoke(this,(Object[]) null);
			} catch (Exception e) {
				e.printStackTrace();
			}
		}

	}
	public void addMenuItem(B4AMenuItem item) {
		if (menuItems == null)
			menuItems = new java.util.ArrayList<B4AMenuItem>();
		menuItems.add(item);
	}
	@Override
	public boolean onCreateOptionsMenu(android.view.Menu menu) {
		super.onCreateOptionsMenu(menu);
        try {
            if (processBA.subExists("activity_actionbarhomeclick")) {
                Class.forName("android.app.ActionBar").getMethod("setHomeButtonEnabled", boolean.class).invoke(
                    getClass().getMethod("getActionBar").invoke(this), true);
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
        if (processBA.runHook("oncreateoptionsmenu", this, new Object[] {menu}))
            return true;
		if (menuItems == null)
			return false;
		for (B4AMenuItem bmi : menuItems) {
			android.view.MenuItem mi = menu.add(bmi.title);
			if (bmi.drawable != null)
				mi.setIcon(bmi.drawable);
            if (android.os.Build.VERSION.SDK_INT >= 11) {
				try {
                    if (bmi.addToBar) {
				        android.view.MenuItem.class.getMethod("setShowAsAction", int.class).invoke(mi, 1);
                    }
				} catch (Exception e) {
					e.printStackTrace();
				}
			}
			mi.setOnMenuItemClickListener(new B4AMenuItemsClickListener(bmi.eventName.toLowerCase(BA.cul)));
		}
        
		return true;
	}   
 @Override
 public boolean onOptionsItemSelected(android.view.MenuItem item) {
    if (item.getItemId() == 16908332) {
        processBA.raiseEvent(null, "activity_actionbarhomeclick");
        return true;
    }
    else
        return super.onOptionsItemSelected(item); 
}
@Override
 public boolean onPrepareOptionsMenu(android.view.Menu menu) {
    super.onPrepareOptionsMenu(menu);
    processBA.runHook("onprepareoptionsmenu", this, new Object[] {menu});
    return true;
    
 }
 protected void onStart() {
    super.onStart();
    processBA.runHook("onstart", this, null);
}
 protected void onStop() {
    super.onStop();
    processBA.runHook("onstop", this, null);
}
    public void onWindowFocusChanged(boolean hasFocus) {
       super.onWindowFocusChanged(hasFocus);
       if (processBA.subExists("activity_windowfocuschanged"))
           processBA.raiseEvent2(null, true, "activity_windowfocuschanged", false, hasFocus);
    }
	private class B4AMenuItemsClickListener implements android.view.MenuItem.OnMenuItemClickListener {
		private final String eventName;
		public B4AMenuItemsClickListener(String eventName) {
			this.eventName = eventName;
		}
		public boolean onMenuItemClick(android.view.MenuItem item) {
			processBA.raiseEventFromUI(item.getTitle(), eventName + "_click");
			return true;
		}
	}
    public static Class<?> getObject() {
		return playsrds.class;
	}
    private Boolean onKeySubExist = null;
    private Boolean onKeyUpSubExist = null;
	@Override
	public boolean onKeyDown(int keyCode, android.view.KeyEvent event) {
        if (processBA.runHook("onkeydown", this, new Object[] {keyCode, event}))
            return true;
		if (onKeySubExist == null)
			onKeySubExist = processBA.subExists("activity_keypress");
		if (onKeySubExist) {
			if (keyCode == anywheresoftware.b4a.keywords.constants.KeyCodes.KEYCODE_BACK &&
					android.os.Build.VERSION.SDK_INT >= 18) {
				HandleKeyDelayed hk = new HandleKeyDelayed();
				hk.kc = keyCode;
				BA.handler.post(hk);
				return true;
			}
			else {
				boolean res = new HandleKeyDelayed().runDirectly(keyCode);
				if (res)
					return true;
			}
		}
		return super.onKeyDown(keyCode, event);
	}
	private class HandleKeyDelayed implements Runnable {
		int kc;
		public void run() {
			runDirectly(kc);
		}
		public boolean runDirectly(int keyCode) {
			Boolean res =  (Boolean)processBA.raiseEvent2(_activity, false, "activity_keypress", false, keyCode);
			if (res == null || res == true) {
                return true;
            }
            else if (keyCode == anywheresoftware.b4a.keywords.constants.KeyCodes.KEYCODE_BACK) {
				finish();
				return true;
			}
            return false;
		}
		
	}
    @Override
	public boolean onKeyUp(int keyCode, android.view.KeyEvent event) {
        if (processBA.runHook("onkeyup", this, new Object[] {keyCode, event}))
            return true;
		if (onKeyUpSubExist == null)
			onKeyUpSubExist = processBA.subExists("activity_keyup");
		if (onKeyUpSubExist) {
			Boolean res =  (Boolean)processBA.raiseEvent2(_activity, false, "activity_keyup", false, keyCode);
			if (res == null || res == true)
				return true;
		}
		return super.onKeyUp(keyCode, event);
	}
	@Override
	public void onNewIntent(android.content.Intent intent) {
        super.onNewIntent(intent);
		this.setIntent(intent);
        processBA.runHook("onnewintent", this, new Object[] {intent});
	}
    @Override 
	public void onPause() {
		super.onPause();
        if (_activity == null)
            return;
        if (this != mostCurrent)
			return;
		anywheresoftware.b4a.Msgbox.dismiss(true);
        if (!dontPause)
            BA.LogInfo("** Activity (playsrds) Pause, UserClosed = " + activityBA.activity.isFinishing() + " **");
        else
            BA.LogInfo("** Activity (playsrds) Pause event (activity is not paused). **");
        if (mostCurrent != null)
            processBA.raiseEvent2(_activity, true, "activity_pause", false, activityBA.activity.isFinishing());		
        if (!dontPause) {
            processBA.setActivityPaused(true);
            mostCurrent = null;
        }

        if (!activityBA.activity.isFinishing())
			previousOne = new WeakReference<Activity>(this);
        anywheresoftware.b4a.Msgbox.isDismissing = false;
        processBA.runHook("onpause", this, null);
	}

	@Override
	public void onDestroy() {
        super.onDestroy();
		previousOne = null;
        processBA.runHook("ondestroy", this, null);
	}
    @Override 
	public void onResume() {
		super.onResume();
        mostCurrent = this;
        anywheresoftware.b4a.Msgbox.isDismissing = false;
        if (activityBA != null) { //will be null during activity create (which waits for AfterLayout).
        	ResumeMessage rm = new ResumeMessage(mostCurrent);
        	BA.handler.post(rm);
        }
        processBA.runHook("onresume", this, null);
	}
    private static class ResumeMessage implements Runnable {
    	private final WeakReference<Activity> activity;
    	public ResumeMessage(Activity activity) {
    		this.activity = new WeakReference<Activity>(activity);
    	}
		public void run() {
            playsrds mc = mostCurrent;
			if (mc == null || mc != activity.get())
				return;
			processBA.setActivityPaused(false);
            BA.LogInfo("** Activity (playsrds) Resume **");
            if (mc != mostCurrent)
                return;
		    processBA.raiseEvent(mc._activity, "activity_resume", (Object[])null);
		}
    }
	@Override
	protected void onActivityResult(int requestCode, int resultCode,
	      android.content.Intent data) {
		processBA.onActivityResult(requestCode, resultCode, data);
        processBA.runHook("onactivityresult", this, new Object[] {requestCode, resultCode});
	}
	private static void initializeGlobals() {
		processBA.raiseEvent2(null, true, "globals", false, (Object[])null);
	}
    public void onRequestPermissionsResult(int requestCode,
        String permissions[], int[] grantResults) {
        for (int i = 0;i < permissions.length;i++) {
            Object[] o = new Object[] {permissions[i], grantResults[i] == 0};
            processBA.raiseEventFromDifferentThread(null,null, 0, "activity_permissionresult", true, o);
        }
            
    }

public anywheresoftware.b4a.keywords.Common __c = null;
public static anywheresoftware.b4a.objects.SimpleExoPlayerWrapper _vvvvvvvv6 = null;
public static anywheresoftware.b4a.objects.Timer _vvvvvvvv7 = null;
public static anywheresoftware.b4a.objects.Timer _timer_play_time = null;
public static int _int_play_time = 0;
public flm.b4a.gesturedetector.GestureDetectorForB4A _vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv0 = null;
public anywheresoftware.b4a.objects.SimpleExoPlayerViewWrapper _simpleexoplayerview1 = null;
public static boolean _show_or_hide = false;
public anywheresoftware.b4a.objects.PanelWrapper _vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv2 = null;
public anywheresoftware.b4a.objects.LabelWrapper _lb_onvan = null;
public anywheresoftware.b4a.objects.LabelWrapper _lb_close = null;
public static int _vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv6 = 0;
public static int _vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv7 = 0;
public anywheresoftware.b4a.phone.Phone _pho_volume = null;
public anywheresoftware.b4a.phone.Phone _pho_brightness = null;
public anywheresoftware.b4a.objects.LabelWrapper _lb_volume = null;
public anywheresoftware.b4a.objects.LabelWrapper _lb_brightness = null;
public anywheresoftware.b4a.objects.LabelWrapper _lb_time = null;
public static boolean _vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv6 = false;
public anywheresoftware.b4a.objects.ImageViewWrapper _img_logo = null;
public anywheresoftware.b4a.phone.Phone _p_setbrightness = null;
public rotateloadingwrapper.rotateLoadingWrapper _vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv0 = null;
public anywheresoftware.b4a.phone.Phone.PhoneWakeState _vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv6 = null;
public anywheresoftware.b4a.objects.LabelWrapper _lb_lock = null;
public anywheresoftware.b4a.objects.LabelWrapper _lb_lock_release = null;
public static boolean _bol_lock = false;
public anywheresoftware.b4a.objects.PanelWrapper _p_paly = null;
public anywheresoftware.b4a.objects.LabelWrapper _img_play = null;
public anywheresoftware.b4a.objects.LabelWrapper _img_pause = null;
public anywheresoftware.b4a.objects.LabelWrapper _l_speed2 = null;
public anywheresoftware.b4a.objects.PanelWrapper _p_volume = null;
public anywheresoftware.b4a.objects.LabelWrapper _lb_kamel_volume = null;
public anywheresoftware.b4a.objects.LabelWrapper _lb_border_volume = null;
public anywheresoftware.b4a.objects.B4XCanvas _cvs_volume = null;
public anywheresoftware.b4a.objects.PanelWrapper _p_brightness = null;
public anywheresoftware.b4a.objects.LabelWrapper _lb_kamel_brightness = null;
public anywheresoftware.b4a.objects.LabelWrapper _lb_border_brightness = null;
public anywheresoftware.b4a.objects.B4XCanvas _cvs_brightness = null;
public anywheresoftware.b4a.objects.PanelWrapper _p_preview = null;
public anywheresoftware.b4a.objects.ImageViewWrapper _img_preview = null;
public static boolean _bol_der_right_left = false;
public static boolean _bol_brightness = false;
public static boolean _bol_volume = false;
public static int _vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv1 = 0;
public static int _vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv0 = 0;
public anywheresoftware.b4a.objects.PanelWrapper _p_next_dubble = null;
public anywheresoftware.b4a.objects.PanelWrapper _p_back_dubble = null;
public anywheresoftware.b4a.objects.ImageViewWrapper _img_next_dubble1 = null;
public anywheresoftware.b4a.objects.ImageViewWrapper _img_next_dubble12 = null;
public anywheresoftware.b4a.objects.ImageViewWrapper _img_next_dubble13 = null;
public anywheresoftware.b4a.objects.ImageViewWrapper _img_back_dubble1 = null;
public anywheresoftware.b4a.objects.ImageViewWrapper _img_back_dubble12 = null;
public anywheresoftware.b4a.objects.ImageViewWrapper _img_back_dubble13 = null;
public static String _vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv3 = "";
public static float _vvvvvvvvvvvvvvvvvvvvvvvvvvvv6 = 0f;
public anywheresoftware.b4a.objects.LabelWrapper _vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv3 = null;
public anywheresoftware.b4a.objects.LabelWrapper _vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv4 = null;
public static String _vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv5 = "";
public static String _vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv4 = "";
public b4a.example.dateutils _vvvvvvvvvvvvvvvv1 = null;
public com.pas.abtahibo.parvaz.main _vvvvvvvvvvvvvvvv2 = null;
public com.pas.abtahibo.parvaz.actbook _vvvvvvvvvvvvvvvv3 = null;
public com.pas.abtahibo.parvaz.actapps _vvvvvvvvvvvvvvvv4 = null;
public com.pas.abtahibo.parvaz.actguide _vvvvvvvvvvvvvvvv5 = null;
public com.pas.abtahibo.parvaz.actnotific _vvvvvvvvvvvvvvvv6 = null;
public com.pas.abtahibo.parvaz.func _vvvvvvvvvvvvvvvv7 = null;
public com.pas.abtahibo.parvaz.myservice _vvvvvvvvvvvvvvvv0 = null;
public com.pas.abtahibo.parvaz.playservicebook _vvvvvvvvvvvvvvvvv1 = null;
public com.pas.abtahibo.parvaz.starter _vvvvvvvvvvvvvvvvv3 = null;
public com.pas.abtahibo.parvaz.support _vvvvvvvvvvvvvvvvv4 = null;
public com.pas.abtahibo.parvaz.urls _vvvvvvvvvvvvvvvvv5 = null;
public com.pas.abtahibo.parvaz.xuiviewsutils _vvvvvvvvvvvvvvvvv6 = null;

public static void initializeProcessGlobals() {
             try {
                Class.forName(BA.applicationContext.getPackageName() + ".main").getMethod("initializeProcessGlobals").invoke(null, null);
            } catch (Exception e) {
                throw new RuntimeException(e);
            }
}
public static String  _activity_create(boolean _firsttime) throws Exception{
String _title = "";
anywheresoftware.b4j.object.JavaObject _jo = null;
Object _event = null;
anywheresoftware.b4j.object.JavaObject _jo1 = null;
Object _event1 = null;
anywheresoftware.b4j.object.JavaObject _jo3 = null;
anywheresoftware.b4j.object.JavaObject _jo4 = null;
anywheresoftware.b4a.agraham.reflection.Reflection _r = null;
anywheresoftware.b4j.object.JavaObject _timebar = null;
Object _listener = null;
 //BA.debugLineNum = 99;BA.debugLine="Sub Activity_Create(FirstTime As Boolean)";
 //BA.debugLineNum = 101;BA.debugLine="int_play_time = 0";
_int_play_time = (int) (0);
 //BA.debugLineNum = 102;BA.debugLine="doubleTapDelay.Initialize(\"doubleTapDelay\",500)";
_vvvvvvvv7.Initialize(processBA,"doubleTapDelay",(long) (500));
 //BA.debugLineNum = 103;BA.debugLine="timer_play_time.Initialize(\"timer_play_time\",1000";
_timer_play_time.Initialize(processBA,"timer_play_time",(long) (1000));
 //BA.debugLineNum = 105;BA.debugLine="TransparentNavigationBar";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv2();
 //BA.debugLineNum = 107;BA.debugLine="urlAll = func.readPFM(\"list_film\" )";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv3 = mostCurrent._vvvvvvvvvvvvvvvv7._vvvv0 /*String*/ (mostCurrent.activityBA,"list_film");
 //BA.debugLineNum = 108;BA.debugLine="Dim title As String = func.readPFM(\"name_zirFilm\"";
_title = mostCurrent._vvvvvvvvvvvvvvvv7._vvvv0 /*String*/ (mostCurrent.activityBA,"name_zirFilm");
 //BA.debugLineNum = 110;BA.debugLine="sName = title";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv4 = _title;
 //BA.debugLineNum = 111;BA.debugLine="idDs  = func.readPFM(\"idDs\")";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv5 = mostCurrent._vvvvvvvvvvvvvvvv7._vvvv0 /*String*/ (mostCurrent.activityBA,"idDs");
 //BA.debugLineNum = 113;BA.debugLine="wake.KeepAlive(True)";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv6.KeepAlive(processBA,anywheresoftware.b4a.keywords.Common.True);
 //BA.debugLineNum = 116;BA.debugLine="player1.Initialize(\"player\")";
_vvvvvvvv6.Initialize(processBA,"player");
 //BA.debugLineNum = 118;BA.debugLine="Activity.LoadLayout(\"Player\")";
mostCurrent._activity.LoadLayout("Player",mostCurrent.activityBA);
 //BA.debugLineNum = 119;BA.debugLine="SimpleExoPlayerView1.Player = player1";
mostCurrent._simpleexoplayerview1.setPlayer(_vvvvvvvv6);
 //BA.debugLineNum = 120;BA.debugLine="SimpleExoPlayerView1.UseController = False";
mostCurrent._simpleexoplayerview1.setUseController(anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 124;BA.debugLine="SimpleExoPlayerView1.Height = SimpleExoPlayerView";
mostCurrent._simpleexoplayerview1.setHeight((int) (mostCurrent._simpleexoplayerview1.getHeight()+_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv7()));
 //BA.debugLineNum = 125;BA.debugLine="Activity.Height = SimpleExoPlayerView1.Height";
mostCurrent._activity.setHeight(mostCurrent._simpleexoplayerview1.getHeight());
 //BA.debugLineNum = 128;BA.debugLine="GD.SetOnGestureListener(SimpleExoPlayerView1, \"Ge";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv0.SetOnGestureListener(processBA,(android.view.View)(mostCurrent._simpleexoplayerview1.getObject()),"Gesture");
 //BA.debugLineNum = 130;BA.debugLine="Dim jo As JavaObject = player1";
_jo = new anywheresoftware.b4j.object.JavaObject();
_jo = (anywheresoftware.b4j.object.JavaObject) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4j.object.JavaObject(), (java.lang.Object)(_vvvvvvvv6));
 //BA.debugLineNum = 131;BA.debugLine="Dim event As Object = jo.CreateEventFromUI(\"com.g";
_event = _jo.CreateEventFromUI(processBA,"com.google.android.exoplayer2.Player$EventListener","statechanged",(Object)(anywheresoftware.b4a.keywords.Common.False));
 //BA.debugLineNum = 132;BA.debugLine="jo.GetFieldJO(\"player\").RunMethod(\"addListener\",";
_jo.GetFieldJO("player").RunMethod("addListener",new Object[]{_event});
 //BA.debugLineNum = 134;BA.debugLine="Dim jo1 As JavaObject = SimpleExoPlayerView1";
_jo1 = new anywheresoftware.b4j.object.JavaObject();
_jo1 = (anywheresoftware.b4j.object.JavaObject) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4j.object.JavaObject(), (java.lang.Object)(mostCurrent._simpleexoplayerview1.getObject()));
 //BA.debugLineNum = 135;BA.debugLine="Dim event1 As Object = jo1.CreateEventFromUI(\"com";
_event1 = _jo1.CreateEventFromUI(processBA,"com/google/android/exoplayer2/ui/PlayerControlView.VisibilityListener".replace("/","."),"VisibilityChange",anywheresoftware.b4a.keywords.Common.Null);
 //BA.debugLineNum = 136;BA.debugLine="jo1.RunMethod(\"setControllerVisibilityListener\",";
_jo1.RunMethod("setControllerVisibilityListener",new Object[]{_event1});
 //BA.debugLineNum = 138;BA.debugLine="Dim jo3 As JavaObject = SimpleExoPlayerView1";
_jo3 = new anywheresoftware.b4j.object.JavaObject();
_jo3 = (anywheresoftware.b4j.object.JavaObject) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4j.object.JavaObject(), (java.lang.Object)(mostCurrent._simpleexoplayerview1.getObject()));
 //BA.debugLineNum = 139;BA.debugLine="jo3.RunMethod(\"setFastForwardIncrementMs\", Array(";
_jo3.RunMethod("setFastForwardIncrementMs",new Object[]{(Object)(10000)});
 //BA.debugLineNum = 141;BA.debugLine="Dim jo4 As JavaObject = SimpleExoPlayerView1";
_jo4 = new anywheresoftware.b4j.object.JavaObject();
_jo4 = (anywheresoftware.b4j.object.JavaObject) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4j.object.JavaObject(), (java.lang.Object)(mostCurrent._simpleexoplayerview1.getObject()));
 //BA.debugLineNum = 142;BA.debugLine="jo4.RunMethod(\"setRewindIncrementMs\", Array(10000";
_jo4.RunMethod("setRewindIncrementMs",new Object[]{(Object)(10000)});
 //BA.debugLineNum = 144;BA.debugLine="Dim r As Reflector";
_r = new anywheresoftware.b4a.agraham.reflection.Reflection();
 //BA.debugLineNum = 145;BA.debugLine="r.Target = SimpleExoPlayerView1";
_r.Target = (Object)(mostCurrent._simpleexoplayerview1.getObject());
 //BA.debugLineNum = 146;BA.debugLine="r.Target = r.GetField(\"controller\")";
_r.Target = _r.GetField("controller");
 //BA.debugLineNum = 147;BA.debugLine="Dim timebar As JavaObject = r.GetField(\"timeBar\")";
_timebar = new anywheresoftware.b4j.object.JavaObject();
_timebar = (anywheresoftware.b4j.object.JavaObject) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4j.object.JavaObject(), (java.lang.Object)(_r.GetField("timeBar")));
 //BA.debugLineNum = 148;BA.debugLine="Dim listener As Object = timebar.CreateEventFromU";
_listener = _timebar.CreateEventFromUI(processBA,"com.google.android.exoplayer2.ui.TimeBar$OnScrubListener","Scrub",(Object)(anywheresoftware.b4a.keywords.Common.False));
 //BA.debugLineNum = 149;BA.debugLine="timebar.RunMethod(\"addListener\", Array(listener))";
_timebar.RunMethod("addListener",new Object[]{_listener});
 //BA.debugLineNum = 154;BA.debugLine="p_next_dubble.Initialize(\"p_next_dubble\")";
mostCurrent._p_next_dubble.Initialize(mostCurrent.activityBA,"p_next_dubble");
 //BA.debugLineNum = 155;BA.debugLine="Activity.AddView(p_next_dubble,70%x,-20%y,70%x,14";
mostCurrent._activity.AddView((android.view.View)(mostCurrent._p_next_dubble.getObject()),anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (70),mostCurrent.activityBA),(int) (-anywheresoftware.b4a.keywords.Common.PerYToCurrent((float) (20),mostCurrent.activityBA)),anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (70),mostCurrent.activityBA),(int) (anywheresoftware.b4a.keywords.Common.PerYToCurrent((float) (140),mostCurrent.activityBA)+_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv7()));
 //BA.debugLineNum = 156;BA.debugLine="func.color_border(p_next_dubble,0x14FFFFFF,1000di";
mostCurrent._vvvvvvvvvvvvvvvv7._color_border /*String*/ (mostCurrent.activityBA,(anywheresoftware.b4a.objects.ConcreteViewWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.ConcreteViewWrapper(), (android.view.View)(mostCurrent._p_next_dubble.getObject())),((int)0x14ffffff),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (1000)));
 //BA.debugLineNum = 157;BA.debugLine="p_next_dubble.Visible = False";
mostCurrent._p_next_dubble.setVisible(anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 159;BA.debugLine="img_next_dubble1.Initialize(\"img_next_dubble1\")";
mostCurrent._img_next_dubble1.Initialize(mostCurrent.activityBA,"img_next_dubble1");
 //BA.debugLineNum = 160;BA.debugLine="img_next_dubble1.Gravity = Gravity.FILL";
mostCurrent._img_next_dubble1.setGravity(anywheresoftware.b4a.keywords.Common.Gravity.FILL);
 //BA.debugLineNum = 161;BA.debugLine="img_next_dubble1.Bitmap = LoadBitmap(File.DirAsse";
mostCurrent._img_next_dubble1.setBitmap((android.graphics.Bitmap)(anywheresoftware.b4a.keywords.Common.LoadBitmap(anywheresoftware.b4a.keywords.Common.File.getDirAssets(),"arrowhead.png").getObject()));
 //BA.debugLineNum = 162;BA.debugLine="p_next_dubble.AddView(img_next_dubble1,30%x/2-22.";
mostCurrent._p_next_dubble.AddView((android.view.View)(mostCurrent._img_next_dubble1.getObject()),(int) (anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (30),mostCurrent.activityBA)/(double)2-anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (22.5))),(int) (mostCurrent._p_next_dubble.getHeight()/(double)2-anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (7.5))),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (15)),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (15)));
 //BA.debugLineNum = 164;BA.debugLine="img_next_dubble12.Initialize(\"img_next_dubble12\")";
mostCurrent._img_next_dubble12.Initialize(mostCurrent.activityBA,"img_next_dubble12");
 //BA.debugLineNum = 165;BA.debugLine="img_next_dubble12.Gravity = Gravity.FILL";
mostCurrent._img_next_dubble12.setGravity(anywheresoftware.b4a.keywords.Common.Gravity.FILL);
 //BA.debugLineNum = 166;BA.debugLine="img_next_dubble12.Bitmap = LoadBitmap(File.DirAss";
mostCurrent._img_next_dubble12.setBitmap((android.graphics.Bitmap)(anywheresoftware.b4a.keywords.Common.LoadBitmap(anywheresoftware.b4a.keywords.Common.File.getDirAssets(),"arrowhead.png").getObject()));
 //BA.debugLineNum = 167;BA.debugLine="p_next_dubble.AddView(img_next_dubble12,30%x/2-7.";
mostCurrent._p_next_dubble.AddView((android.view.View)(mostCurrent._img_next_dubble12.getObject()),(int) (anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (30),mostCurrent.activityBA)/(double)2-anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (7.5))),(int) (mostCurrent._p_next_dubble.getHeight()/(double)2-anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (7.5))),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (15)),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (15)));
 //BA.debugLineNum = 169;BA.debugLine="img_next_dubble13.Initialize(\"img_next_dubble13\")";
mostCurrent._img_next_dubble13.Initialize(mostCurrent.activityBA,"img_next_dubble13");
 //BA.debugLineNum = 170;BA.debugLine="img_next_dubble13.Gravity = Gravity.FILL";
mostCurrent._img_next_dubble13.setGravity(anywheresoftware.b4a.keywords.Common.Gravity.FILL);
 //BA.debugLineNum = 171;BA.debugLine="img_next_dubble13.Bitmap = LoadBitmap(File.DirAss";
mostCurrent._img_next_dubble13.setBitmap((android.graphics.Bitmap)(anywheresoftware.b4a.keywords.Common.LoadBitmap(anywheresoftware.b4a.keywords.Common.File.getDirAssets(),"arrowhead.png").getObject()));
 //BA.debugLineNum = 172;BA.debugLine="p_next_dubble.AddView(img_next_dubble13,30%x/2+7.";
mostCurrent._p_next_dubble.AddView((android.view.View)(mostCurrent._img_next_dubble13.getObject()),(int) (anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (30),mostCurrent.activityBA)/(double)2+anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (7.5))),(int) (mostCurrent._p_next_dubble.getHeight()/(double)2-anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (7.5))),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (15)),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (15)));
 //BA.debugLineNum = 174;BA.debugLine="p_back_dubble.Initialize(\"p_back_dubble\")";
mostCurrent._p_back_dubble.Initialize(mostCurrent.activityBA,"p_back_dubble");
 //BA.debugLineNum = 175;BA.debugLine="Activity.AddView(p_back_dubble,-40%x,-20%y,70%x,1";
mostCurrent._activity.AddView((android.view.View)(mostCurrent._p_back_dubble.getObject()),(int) (-anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (40),mostCurrent.activityBA)),(int) (-anywheresoftware.b4a.keywords.Common.PerYToCurrent((float) (20),mostCurrent.activityBA)),anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (70),mostCurrent.activityBA),(int) (anywheresoftware.b4a.keywords.Common.PerYToCurrent((float) (140),mostCurrent.activityBA)+_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv7()));
 //BA.debugLineNum = 176;BA.debugLine="func.color_border(p_back_dubble,0x14FFFFFF,1000di";
mostCurrent._vvvvvvvvvvvvvvvv7._color_border /*String*/ (mostCurrent.activityBA,(anywheresoftware.b4a.objects.ConcreteViewWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.ConcreteViewWrapper(), (android.view.View)(mostCurrent._p_back_dubble.getObject())),((int)0x14ffffff),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (1000)));
 //BA.debugLineNum = 177;BA.debugLine="p_back_dubble.Visible = False";
mostCurrent._p_back_dubble.setVisible(anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 179;BA.debugLine="img_back_dubble1.Initialize(\"img_back_dubble1\")";
mostCurrent._img_back_dubble1.Initialize(mostCurrent.activityBA,"img_back_dubble1");
 //BA.debugLineNum = 180;BA.debugLine="img_back_dubble1.Gravity = Gravity.FILL";
mostCurrent._img_back_dubble1.setGravity(anywheresoftware.b4a.keywords.Common.Gravity.FILL);
 //BA.debugLineNum = 181;BA.debugLine="img_back_dubble1.Bitmap = LoadBitmap(File.DirAsse";
mostCurrent._img_back_dubble1.setBitmap((android.graphics.Bitmap)(anywheresoftware.b4a.keywords.Common.LoadBitmap(anywheresoftware.b4a.keywords.Common.File.getDirAssets(),"arrowhead.png").getObject()));
 //BA.debugLineNum = 182;BA.debugLine="p_back_dubble.AddView(img_back_dubble1,55%x+7.5di";
mostCurrent._p_back_dubble.AddView((android.view.View)(mostCurrent._img_back_dubble1.getObject()),(int) (anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (55),mostCurrent.activityBA)+anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (7.5))),(int) (mostCurrent._p_back_dubble.getHeight()/(double)2-anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (7.5))),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (15)),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (15)));
 //BA.debugLineNum = 183;BA.debugLine="func.SetRotation(img_back_dubble1,180)";
mostCurrent._vvvvvvvvvvvvvvvv7._vvvvvv6 /*String*/ (mostCurrent.activityBA,(anywheresoftware.b4a.objects.ConcreteViewWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.ConcreteViewWrapper(), (android.view.View)(mostCurrent._img_back_dubble1.getObject())),(float) (180));
 //BA.debugLineNum = 185;BA.debugLine="img_back_dubble12.Initialize(\"img_back_dubble12\")";
mostCurrent._img_back_dubble12.Initialize(mostCurrent.activityBA,"img_back_dubble12");
 //BA.debugLineNum = 186;BA.debugLine="img_back_dubble12.Gravity = Gravity.FILL";
mostCurrent._img_back_dubble12.setGravity(anywheresoftware.b4a.keywords.Common.Gravity.FILL);
 //BA.debugLineNum = 187;BA.debugLine="img_back_dubble12.Bitmap = LoadBitmap(File.DirAss";
mostCurrent._img_back_dubble12.setBitmap((android.graphics.Bitmap)(anywheresoftware.b4a.keywords.Common.LoadBitmap(anywheresoftware.b4a.keywords.Common.File.getDirAssets(),"arrowhead.png").getObject()));
 //BA.debugLineNum = 188;BA.debugLine="p_back_dubble.AddView(img_back_dubble12,55%x-7.5d";
mostCurrent._p_back_dubble.AddView((android.view.View)(mostCurrent._img_back_dubble12.getObject()),(int) (anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (55),mostCurrent.activityBA)-anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (7.5))),(int) (mostCurrent._p_back_dubble.getHeight()/(double)2-anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (7.5))),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (15)),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (15)));
 //BA.debugLineNum = 189;BA.debugLine="func.SetRotation(img_back_dubble12,180)";
mostCurrent._vvvvvvvvvvvvvvvv7._vvvvvv6 /*String*/ (mostCurrent.activityBA,(anywheresoftware.b4a.objects.ConcreteViewWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.ConcreteViewWrapper(), (android.view.View)(mostCurrent._img_back_dubble12.getObject())),(float) (180));
 //BA.debugLineNum = 191;BA.debugLine="img_back_dubble13.Initialize(\"img_back_dubble13\")";
mostCurrent._img_back_dubble13.Initialize(mostCurrent.activityBA,"img_back_dubble13");
 //BA.debugLineNum = 192;BA.debugLine="img_back_dubble13.Gravity = Gravity.FILL";
mostCurrent._img_back_dubble13.setGravity(anywheresoftware.b4a.keywords.Common.Gravity.FILL);
 //BA.debugLineNum = 193;BA.debugLine="img_back_dubble13.Bitmap = LoadBitmap(File.DirAss";
mostCurrent._img_back_dubble13.setBitmap((android.graphics.Bitmap)(anywheresoftware.b4a.keywords.Common.LoadBitmap(anywheresoftware.b4a.keywords.Common.File.getDirAssets(),"arrowhead.png").getObject()));
 //BA.debugLineNum = 194;BA.debugLine="p_back_dubble.AddView(img_back_dubble13,55%x-22.5";
mostCurrent._p_back_dubble.AddView((android.view.View)(mostCurrent._img_back_dubble13.getObject()),(int) (anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (55),mostCurrent.activityBA)-anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (22.5))),(int) (mostCurrent._p_back_dubble.getHeight()/(double)2-anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (7.5))),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (15)),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (15)));
 //BA.debugLineNum = 195;BA.debugLine="func.SetRotation(img_back_dubble13,180)";
mostCurrent._vvvvvvvvvvvvvvvv7._vvvvvv6 /*String*/ (mostCurrent.activityBA,(anywheresoftware.b4a.objects.ConcreteViewWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.ConcreteViewWrapper(), (android.view.View)(mostCurrent._img_back_dubble13.getObject())),(float) (180));
 //BA.debugLineNum = 199;BA.debugLine="p_paly.Initialize(\"p_paly\")";
mostCurrent._p_paly.Initialize(mostCurrent.activityBA,"p_paly");
 //BA.debugLineNum = 200;BA.debugLine="Activity.AddView(p_paly,50%x-35dip,50%y-35dip,70d";
mostCurrent._activity.AddView((android.view.View)(mostCurrent._p_paly.getObject()),(int) (anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (50),mostCurrent.activityBA)-anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (35))),(int) (anywheresoftware.b4a.keywords.Common.PerYToCurrent((float) (50),mostCurrent.activityBA)-anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (35))),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (70)),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (70)));
 //BA.debugLineNum = 201;BA.debugLine="func.color_border1(p_paly,0x5AFAFAFA,1000dip,3dip";
mostCurrent._vvvvvvvvvvvvvvvv7._color_border1 /*String*/ (mostCurrent.activityBA,(anywheresoftware.b4a.objects.ConcreteViewWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.ConcreteViewWrapper(), (android.view.View)(mostCurrent._p_paly.getObject())),((int)0x5afafafa),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (1000)),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (3)),((int)0xfffffb81));
 //BA.debugLineNum = 202;BA.debugLine="p_paly.Visible = False";
mostCurrent._p_paly.setVisible(anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 204;BA.debugLine="img_play.Initialize(\"img_play\")";
mostCurrent._img_play.Initialize(mostCurrent.activityBA,"img_play");
 //BA.debugLineNum = 205;BA.debugLine="p_paly.AddView(img_play,0,0,70dip,70dip)";
mostCurrent._p_paly.AddView((android.view.View)(mostCurrent._img_play.getObject()),(int) (0),(int) (0),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (70)),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (70)));
 //BA.debugLineNum = 206;BA.debugLine="img_play.Gravity = Bit.Or(Gravity.CENTER,Gravity.";
mostCurrent._img_play.setGravity(anywheresoftware.b4a.keywords.Common.Bit.Or(anywheresoftware.b4a.keywords.Common.Gravity.CENTER,anywheresoftware.b4a.keywords.Common.Gravity.CENTER_VERTICAL));
 //BA.debugLineNum = 207;BA.debugLine="img_play.Text = Chr(0xE037)";
mostCurrent._img_play.setText(BA.ObjectToCharSequence(anywheresoftware.b4a.keywords.Common.Chr(((int)0xe037))));
 //BA.debugLineNum = 208;BA.debugLine="img_play.TextColor = 0xFFFFFB81";
mostCurrent._img_play.setTextColor(((int)0xfffffb81));
 //BA.debugLineNum = 209;BA.debugLine="img_play.Typeface = Typeface.MATERIALICONS";
mostCurrent._img_play.setTypeface(anywheresoftware.b4a.keywords.Common.Typeface.getMATERIALICONS());
 //BA.debugLineNum = 210;BA.debugLine="func.MinimomFontLabel(img_play,50)";
mostCurrent._vvvvvvvvvvvvvvvv7._vvvv3 /*String*/ (mostCurrent.activityBA,mostCurrent._img_play,(int) (50));
 //BA.debugLineNum = 212;BA.debugLine="img_pause.Initialize(\"img_pause\")";
mostCurrent._img_pause.Initialize(mostCurrent.activityBA,"img_pause");
 //BA.debugLineNum = 213;BA.debugLine="p_paly.AddView(img_pause,0,0,70dip,70dip)";
mostCurrent._p_paly.AddView((android.view.View)(mostCurrent._img_pause.getObject()),(int) (0),(int) (0),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (70)),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (70)));
 //BA.debugLineNum = 214;BA.debugLine="img_pause.Gravity = Bit.Or(Gravity.CENTER,Gravity";
mostCurrent._img_pause.setGravity(anywheresoftware.b4a.keywords.Common.Bit.Or(anywheresoftware.b4a.keywords.Common.Gravity.CENTER,anywheresoftware.b4a.keywords.Common.Gravity.CENTER_VERTICAL));
 //BA.debugLineNum = 215;BA.debugLine="img_pause.Text = Chr(0xE034)";
mostCurrent._img_pause.setText(BA.ObjectToCharSequence(anywheresoftware.b4a.keywords.Common.Chr(((int)0xe034))));
 //BA.debugLineNum = 216;BA.debugLine="img_pause.TextColor = 0xFFFFFB81";
mostCurrent._img_pause.setTextColor(((int)0xfffffb81));
 //BA.debugLineNum = 217;BA.debugLine="img_pause.Typeface = Typeface.MATERIALICONS";
mostCurrent._img_pause.setTypeface(anywheresoftware.b4a.keywords.Common.Typeface.getMATERIALICONS());
 //BA.debugLineNum = 218;BA.debugLine="func.MinimomFontLabel(img_pause,50)";
mostCurrent._vvvvvvvvvvvvvvvv7._vvvv3 /*String*/ (mostCurrent.activityBA,mostCurrent._img_pause,(int) (50));
 //BA.debugLineNum = 220;BA.debugLine="img_play.Visible = True";
mostCurrent._img_play.setVisible(anywheresoftware.b4a.keywords.Common.True);
 //BA.debugLineNum = 221;BA.debugLine="img_pause.Visible = False";
mostCurrent._img_pause.setVisible(anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 227;BA.debugLine="p_preview.Initialize(\"p_preview\")";
mostCurrent._p_preview.Initialize(mostCurrent.activityBA,"p_preview");
 //BA.debugLineNum = 228;BA.debugLine="Activity.AddView(p_preview,8dip,100%y-GetHiContro";
mostCurrent._activity.AddView((android.view.View)(mostCurrent._p_preview.getObject()),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (8)),(int) (anywheresoftware.b4a.keywords.Common.PerYToCurrent((float) (100),mostCurrent.activityBA)-_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv1()-anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (100))-anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (20))),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (150)),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (100)));
 //BA.debugLineNum = 229;BA.debugLine="func.color_border1(p_preview,Colors.Black,0,2dip,";
mostCurrent._vvvvvvvvvvvvvvvv7._color_border1 /*String*/ (mostCurrent.activityBA,(anywheresoftware.b4a.objects.ConcreteViewWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.ConcreteViewWrapper(), (android.view.View)(mostCurrent._p_preview.getObject())),anywheresoftware.b4a.keywords.Common.Colors.Black,(int) (0),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (2)),anywheresoftware.b4a.keywords.Common.Colors.White);
 //BA.debugLineNum = 230;BA.debugLine="p_preview.Visible = False";
mostCurrent._p_preview.setVisible(anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 232;BA.debugLine="img_preview.Initialize(\"img_preview\")";
mostCurrent._img_preview.Initialize(mostCurrent.activityBA,"img_preview");
 //BA.debugLineNum = 233;BA.debugLine="p_preview.AddView(img_preview,0,0,150dip,100dip)";
mostCurrent._p_preview.AddView((android.view.View)(mostCurrent._img_preview.getObject()),(int) (0),(int) (0),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (150)),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (100)));
 //BA.debugLineNum = 234;BA.debugLine="img_preview.Gravity = Gravity.FILL";
mostCurrent._img_preview.setGravity(anywheresoftware.b4a.keywords.Common.Gravity.FILL);
 //BA.debugLineNum = 237;BA.debugLine="img_logo.Initialize(\"img_logo\")";
mostCurrent._img_logo.Initialize(mostCurrent.activityBA,"img_logo");
 //BA.debugLineNum = 238;BA.debugLine="Activity.AddView(img_logo,100%x-30dip,18dip+Statu";
mostCurrent._activity.AddView((android.view.View)(mostCurrent._img_logo.getObject()),(int) (anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (100),mostCurrent.activityBA)-anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (30))),(int) (anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (18))+_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv7()),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (20)),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (20)));
 //BA.debugLineNum = 239;BA.debugLine="img_logo.Gravity = Gravity.FILL";
mostCurrent._img_logo.setGravity(anywheresoftware.b4a.keywords.Common.Gravity.FILL);
 //BA.debugLineNum = 240;BA.debugLine="img_logo.SetBackgroundImage(LoadBitmap(File.DirAs";
mostCurrent._img_logo.SetBackgroundImageNew((android.graphics.Bitmap)(anywheresoftware.b4a.keywords.Common.LoadBitmap(anywheresoftware.b4a.keywords.Common.File.getDirAssets(),"logo.png").getObject()));
 //BA.debugLineNum = 241;BA.debugLine="img_logo.Visible = False";
mostCurrent._img_logo.setVisible(anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 243;BA.debugLine="ActionBar.Initialize(\"\")";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.Initialize(mostCurrent.activityBA,"");
 //BA.debugLineNum = 244;BA.debugLine="Activity.AddView(ActionBar,0dip,StatusBarHeight,1";
mostCurrent._activity.AddView((android.view.View)(mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.getObject()),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (0)),_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv7(),anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (100),mostCurrent.activityBA),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (56)));
 //BA.debugLineNum = 245;BA.debugLine="ActionBar.Color = 0x96000000";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.setColor(((int)0x96000000));
 //BA.debugLineNum = 247;BA.debugLine="lb_close.Initialize(\"lb_close\")";
mostCurrent._lb_close.Initialize(mostCurrent.activityBA,"lb_close");
 //BA.debugLineNum = 248;BA.debugLine="ActionBar.AddView(lb_close,100%x-56dip,0,56dip,56";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.AddView((android.view.View)(mostCurrent._lb_close.getObject()),(int) (anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (100),mostCurrent.activityBA)-anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (56))),(int) (0),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (56)),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (56)));
 //BA.debugLineNum = 249;BA.debugLine="lb_close.Text = Chr(0xE5C8)";
mostCurrent._lb_close.setText(BA.ObjectToCharSequence(anywheresoftware.b4a.keywords.Common.Chr(((int)0xe5c8))));
 //BA.debugLineNum = 250;BA.debugLine="lb_close.TextColor = Colors.White";
mostCurrent._lb_close.setTextColor(anywheresoftware.b4a.keywords.Common.Colors.White);
 //BA.debugLineNum = 251;BA.debugLine="lb_close.Typeface = Typeface.MATERIALICONS";
mostCurrent._lb_close.setTypeface(anywheresoftware.b4a.keywords.Common.Typeface.getMATERIALICONS());
 //BA.debugLineNum = 252;BA.debugLine="lb_close.Gravity = Bit.Or(Gravity.CENTER,Gravity.";
mostCurrent._lb_close.setGravity(anywheresoftware.b4a.keywords.Common.Bit.Or(anywheresoftware.b4a.keywords.Common.Gravity.CENTER,anywheresoftware.b4a.keywords.Common.Gravity.CENTER_VERTICAL));
 //BA.debugLineNum = 253;BA.debugLine="lb_close.TextSize = 27";
mostCurrent._lb_close.setTextSize((float) (27));
 //BA.debugLineNum = 255;BA.debugLine="lb_onvan.Initialize(\"lb_onvan\")";
mostCurrent._lb_onvan.Initialize(mostCurrent.activityBA,"lb_onvan");
 //BA.debugLineNum = 256;BA.debugLine="ActionBar.AddView(lb_onvan,56dip,0,100%x-112dip,5";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.AddView((android.view.View)(mostCurrent._lb_onvan.getObject()),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (56)),(int) (0),(int) (anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (100),mostCurrent.activityBA)-anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (112))),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (56)));
 //BA.debugLineNum = 257;BA.debugLine="lb_onvan.Text = title";
mostCurrent._lb_onvan.setText(BA.ObjectToCharSequence(_title));
 //BA.debugLineNum = 258;BA.debugLine="lb_onvan.Typeface = Typeface.LoadFromAssets(func.";
mostCurrent._lb_onvan.setTypeface(anywheresoftware.b4a.keywords.Common.Typeface.LoadFromAssets(mostCurrent._vvvvvvvvvvvvvvvv7._vv7 /*String*/ (mostCurrent.activityBA)));
 //BA.debugLineNum = 259;BA.debugLine="lb_onvan.TextColor = Colors.White";
mostCurrent._lb_onvan.setTextColor(anywheresoftware.b4a.keywords.Common.Colors.White);
 //BA.debugLineNum = 260;BA.debugLine="lb_onvan.TextSize = 16";
mostCurrent._lb_onvan.setTextSize((float) (16));
 //BA.debugLineNum = 261;BA.debugLine="lb_onvan.Gravity = Bit.Or(Gravity.RIGHT,Gravity.C";
mostCurrent._lb_onvan.setGravity(anywheresoftware.b4a.keywords.Common.Bit.Or(anywheresoftware.b4a.keywords.Common.Gravity.RIGHT,anywheresoftware.b4a.keywords.Common.Gravity.CENTER_VERTICAL));
 //BA.debugLineNum = 262;BA.debugLine="lb_onvan.SingleLine = True";
mostCurrent._lb_onvan.setSingleLine(anywheresoftware.b4a.keywords.Common.True);
 //BA.debugLineNum = 263;BA.debugLine="lb_onvan.Ellipsize = \"END\"";
mostCurrent._lb_onvan.setEllipsize("END");
 //BA.debugLineNum = 266;BA.debugLine="labShare.Initialize(\"labShare\")";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv3.Initialize(mostCurrent.activityBA,"labShare");
 //BA.debugLineNum = 267;BA.debugLine="Activity.AddView(labShare,100%x-53dip,ActionBar.H";
mostCurrent._activity.AddView((android.view.View)(mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv3.getObject()),(int) (anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (100),mostCurrent.activityBA)-anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (53))),(int) (mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.getHeight()+mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.getTop()+anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (2))),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (50)),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (50)));
 //BA.debugLineNum = 268;BA.debugLine="labShare.Text = Chr(0xE80D)";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv3.setText(BA.ObjectToCharSequence(anywheresoftware.b4a.keywords.Common.Chr(((int)0xe80d))));
 //BA.debugLineNum = 269;BA.debugLine="labShare.TextColor = Colors.White";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv3.setTextColor(anywheresoftware.b4a.keywords.Common.Colors.White);
 //BA.debugLineNum = 270;BA.debugLine="labShare.Typeface = Typeface.MATERIALICONS";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv3.setTypeface(anywheresoftware.b4a.keywords.Common.Typeface.getMATERIALICONS());
 //BA.debugLineNum = 271;BA.debugLine="labShare.Gravity = Bit.Or(Gravity.CENTER,Gravity.";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv3.setGravity(anywheresoftware.b4a.keywords.Common.Bit.Or(anywheresoftware.b4a.keywords.Common.Gravity.CENTER,anywheresoftware.b4a.keywords.Common.Gravity.CENTER_VERTICAL));
 //BA.debugLineNum = 272;BA.debugLine="func.MinimomFontLabel(labShare,25)";
mostCurrent._vvvvvvvvvvvvvvvv7._vvvv3 /*String*/ (mostCurrent.activityBA,mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv3,(int) (25));
 //BA.debugLineNum = 273;BA.debugLine="func.color_border(labShare,0x96000000,1000dip)";
mostCurrent._vvvvvvvvvvvvvvvv7._color_border /*String*/ (mostCurrent.activityBA,(anywheresoftware.b4a.objects.ConcreteViewWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.ConcreteViewWrapper(), (android.view.View)(mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv3.getObject())),((int)0x96000000),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (1000)));
 //BA.debugLineNum = 275;BA.debugLine="labDl.Initialize(\"labDl\")";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv4.Initialize(mostCurrent.activityBA,"labDl");
 //BA.debugLineNum = 276;BA.debugLine="Activity.AddView(labDl,100%x-63dip-50dip,ActionBa";
mostCurrent._activity.AddView((android.view.View)(mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv4.getObject()),(int) (anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (100),mostCurrent.activityBA)-anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (63))-anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (50))),(int) (mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.getHeight()+mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.getTop()+anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (2))),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (50)),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (50)));
 //BA.debugLineNum = 277;BA.debugLine="labDl.Text = Chr(0xF0ED)";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv4.setText(BA.ObjectToCharSequence(anywheresoftware.b4a.keywords.Common.Chr(((int)0xf0ed))));
 //BA.debugLineNum = 278;BA.debugLine="labDl.TextColor = Colors.White";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv4.setTextColor(anywheresoftware.b4a.keywords.Common.Colors.White);
 //BA.debugLineNum = 279;BA.debugLine="labDl.Typeface = Typeface.FONTAWESOME";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv4.setTypeface(anywheresoftware.b4a.keywords.Common.Typeface.getFONTAWESOME());
 //BA.debugLineNum = 280;BA.debugLine="labDl.Gravity = Bit.Or(Gravity.CENTER,Gravity.CEN";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv4.setGravity(anywheresoftware.b4a.keywords.Common.Bit.Or(anywheresoftware.b4a.keywords.Common.Gravity.CENTER,anywheresoftware.b4a.keywords.Common.Gravity.CENTER_VERTICAL));
 //BA.debugLineNum = 281;BA.debugLine="func.MinimomFontLabel(labDl,25)";
mostCurrent._vvvvvvvvvvvvvvvv7._vvvv3 /*String*/ (mostCurrent.activityBA,mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv4,(int) (25));
 //BA.debugLineNum = 282;BA.debugLine="func.color_border(labDl,0x96000000,1000dip)";
mostCurrent._vvvvvvvvvvvvvvvv7._color_border /*String*/ (mostCurrent.activityBA,(anywheresoftware.b4a.objects.ConcreteViewWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.ConcreteViewWrapper(), (android.view.View)(mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv4.getObject())),((int)0x96000000),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (1000)));
 //BA.debugLineNum = 285;BA.debugLine="visLab(labShare,False)";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv5(mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv3,anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 286;BA.debugLine="visLab(labDl,False)";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv5(mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv4,anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 288;BA.debugLine="If func.readPFM(\"typePlats\") = 1 Then";
if ((mostCurrent._vvvvvvvvvvvvvvvv7._vvvv0 /*String*/ (mostCurrent.activityBA,"typePlats")).equals(BA.NumberToString(1))) { 
 //BA.debugLineNum = 290;BA.debugLine="If File.Exists(func.choose2DIR,\"anvarvahy2/sokha";
if (anywheresoftware.b4a.keywords.Common.File.Exists(mostCurrent._vvvvvvvvvvvvvvvv7._vv1 /*String*/ (mostCurrent.activityBA),"anvarvahy2/sokhan_roz/"+mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv5+"-"+mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv4+".mp4")) { 
 //BA.debugLineNum = 291;BA.debugLine="labDl.Typeface = Typeface.MATERIALICONS";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv4.setTypeface(anywheresoftware.b4a.keywords.Common.Typeface.getMATERIALICONS());
 //BA.debugLineNum = 292;BA.debugLine="labDl.Text = Chr(0xE5CA)";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv4.setText(BA.ObjectToCharSequence(anywheresoftware.b4a.keywords.Common.Chr(((int)0xe5ca))));
 }else {
 //BA.debugLineNum = 294;BA.debugLine="labDl.Typeface = Typeface.FONTAWESOME";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv4.setTypeface(anywheresoftware.b4a.keywords.Common.Typeface.getFONTAWESOME());
 //BA.debugLineNum = 295;BA.debugLine="labDl.Text = Chr(0xF0ED)";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv4.setText(BA.ObjectToCharSequence(anywheresoftware.b4a.keywords.Common.Chr(((int)0xf0ed))));
 };
 };
 //BA.debugLineNum = 301;BA.debugLine="lb_lock.Initialize(\"lb_lock\")";
mostCurrent._lb_lock.Initialize(mostCurrent.activityBA,"lb_lock");
 //BA.debugLineNum = 302;BA.debugLine="Activity.AddView(lb_lock,10dip+50dip,ActionBar.He";
mostCurrent._activity.AddView((android.view.View)(mostCurrent._lb_lock.getObject()),(int) (anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (10))+anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (50))),(int) (mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.getHeight()+mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.getTop()+anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (2))),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (50)),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (50)));
 //BA.debugLineNum = 303;BA.debugLine="lb_lock.Text = Chr(0xE898)";
mostCurrent._lb_lock.setText(BA.ObjectToCharSequence(anywheresoftware.b4a.keywords.Common.Chr(((int)0xe898))));
 //BA.debugLineNum = 304;BA.debugLine="lb_lock.TextColor = Colors.White";
mostCurrent._lb_lock.setTextColor(anywheresoftware.b4a.keywords.Common.Colors.White);
 //BA.debugLineNum = 305;BA.debugLine="lb_lock.Typeface = Typeface.MATERIALICONS";
mostCurrent._lb_lock.setTypeface(anywheresoftware.b4a.keywords.Common.Typeface.getMATERIALICONS());
 //BA.debugLineNum = 306;BA.debugLine="lb_lock.Gravity = Bit.Or(Gravity.CENTER,Gravity.C";
mostCurrent._lb_lock.setGravity(anywheresoftware.b4a.keywords.Common.Bit.Or(anywheresoftware.b4a.keywords.Common.Gravity.CENTER,anywheresoftware.b4a.keywords.Common.Gravity.CENTER_VERTICAL));
 //BA.debugLineNum = 307;BA.debugLine="func.MinimomFontLabel(lb_lock,25)";
mostCurrent._vvvvvvvvvvvvvvvv7._vvvv3 /*String*/ (mostCurrent.activityBA,mostCurrent._lb_lock,(int) (25));
 //BA.debugLineNum = 308;BA.debugLine="func.color_border(lb_lock,0x96000000,1000dip)";
mostCurrent._vvvvvvvvvvvvvvvv7._color_border /*String*/ (mostCurrent.activityBA,(anywheresoftware.b4a.objects.ConcreteViewWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.ConcreteViewWrapper(), (android.view.View)(mostCurrent._lb_lock.getObject())),((int)0x96000000),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (1000)));
 //BA.debugLineNum = 309;BA.debugLine="lb_lock.Visible = False";
mostCurrent._lb_lock.setVisible(anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 311;BA.debugLine="lb_lock_release.Initialize(\"lb_lock_release\")";
mostCurrent._lb_lock_release.Initialize(mostCurrent.activityBA,"lb_lock_release");
 //BA.debugLineNum = 312;BA.debugLine="Activity.AddView(lb_lock_release,10dip+50dip,Acti";
mostCurrent._activity.AddView((android.view.View)(mostCurrent._lb_lock_release.getObject()),(int) (anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (10))+anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (50))),(int) (mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.getHeight()+mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.getTop()+anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (2))),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (50)),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (50)));
 //BA.debugLineNum = 313;BA.debugLine="lb_lock_release.Text = Chr(0xE899)";
mostCurrent._lb_lock_release.setText(BA.ObjectToCharSequence(anywheresoftware.b4a.keywords.Common.Chr(((int)0xe899))));
 //BA.debugLineNum = 314;BA.debugLine="lb_lock_release.TextColor = Colors.White";
mostCurrent._lb_lock_release.setTextColor(anywheresoftware.b4a.keywords.Common.Colors.White);
 //BA.debugLineNum = 315;BA.debugLine="lb_lock_release.Typeface = Typeface.MATERIALICONS";
mostCurrent._lb_lock_release.setTypeface(anywheresoftware.b4a.keywords.Common.Typeface.getMATERIALICONS());
 //BA.debugLineNum = 316;BA.debugLine="lb_lock_release.Gravity = Bit.Or(Gravity.CENTER,G";
mostCurrent._lb_lock_release.setGravity(anywheresoftware.b4a.keywords.Common.Bit.Or(anywheresoftware.b4a.keywords.Common.Gravity.CENTER,anywheresoftware.b4a.keywords.Common.Gravity.CENTER_VERTICAL));
 //BA.debugLineNum = 317;BA.debugLine="func.MinimomFontLabel(lb_lock_release,25)";
mostCurrent._vvvvvvvvvvvvvvvv7._vvvv3 /*String*/ (mostCurrent.activityBA,mostCurrent._lb_lock_release,(int) (25));
 //BA.debugLineNum = 318;BA.debugLine="func.color_border(lb_lock_release,0x96000000,1000";
mostCurrent._vvvvvvvvvvvvvvvv7._color_border /*String*/ (mostCurrent.activityBA,(anywheresoftware.b4a.objects.ConcreteViewWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.ConcreteViewWrapper(), (android.view.View)(mostCurrent._lb_lock_release.getObject())),((int)0x96000000),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (1000)));
 //BA.debugLineNum = 319;BA.debugLine="lb_lock_release.Visible = False";
mostCurrent._lb_lock_release.setVisible(anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 322;BA.debugLine="L_Speed2.Initialize(\"L_Speed2\")";
mostCurrent._l_speed2.Initialize(mostCurrent.activityBA,"L_Speed2");
 //BA.debugLineNum = 323;BA.debugLine="Activity.AddView(L_Speed2,3dip,ActionBar.Height+A";
mostCurrent._activity.AddView((android.view.View)(mostCurrent._l_speed2.getObject()),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (3)),(int) (mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.getHeight()+mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.getTop()+anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (2))),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (50)),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (50)));
 //BA.debugLineNum = 324;BA.debugLine="L_Speed2.Typeface = Typeface.CreateNew(Typeface.L";
mostCurrent._l_speed2.setTypeface(anywheresoftware.b4a.keywords.Common.Typeface.CreateNew(anywheresoftware.b4a.keywords.Common.Typeface.LoadFromAssets(mostCurrent._vvvvvvvvvvvvvvvv7._vv7 /*String*/ (mostCurrent.activityBA)),anywheresoftware.b4a.keywords.Common.Typeface.STYLE_BOLD));
 //BA.debugLineNum = 325;BA.debugLine="L_Speed2.TextColor = Colors.White";
mostCurrent._l_speed2.setTextColor(anywheresoftware.b4a.keywords.Common.Colors.White);
 //BA.debugLineNum = 326;BA.debugLine="L_Speed2.Gravity = Bit.Or(Gravity.CENTER,Gravity.";
mostCurrent._l_speed2.setGravity(anywheresoftware.b4a.keywords.Common.Bit.Or(anywheresoftware.b4a.keywords.Common.Gravity.CENTER,anywheresoftware.b4a.keywords.Common.Gravity.CENTER_VERTICAL));
 //BA.debugLineNum = 327;BA.debugLine="L_Speed2.Text=\"1X\"";
mostCurrent._l_speed2.setText(BA.ObjectToCharSequence("1X"));
 //BA.debugLineNum = 328;BA.debugLine="func.MinimomFontLabel(L_Speed2,17)";
mostCurrent._vvvvvvvvvvvvvvvv7._vvvv3 /*String*/ (mostCurrent.activityBA,mostCurrent._l_speed2,(int) (17));
 //BA.debugLineNum = 329;BA.debugLine="speedSound = 1";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvv6 = (float) (1);
 //BA.debugLineNum = 332;BA.debugLine="Volume = pho_Volume.GetVolume(pho_Volume.VOLUME_M";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv6 = mostCurrent._pho_volume.GetVolume(mostCurrent._pho_volume.VOLUME_MUSIC);
 //BA.debugLineNum = 333;BA.debugLine="Try";
try { //BA.debugLineNum = 334;BA.debugLine="Brightness = pho_Brightness.GetSettings(\"screen_";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv7 = (int)(Double.parseDouble(mostCurrent._pho_brightness.GetSettings("screen_brightness")));
 } 
       catch (Exception e176) {
			processBA.setLastException(e176); //BA.debugLineNum = 336;BA.debugLine="Brightness = 50";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv7 = (int) (50);
 //BA.debugLineNum = 337;BA.debugLine="Log(LastException)";
anywheresoftware.b4a.keywords.Common.LogImpl("346924014",BA.ObjectToString(anywheresoftware.b4a.keywords.Common.LastException(mostCurrent.activityBA)),0);
 };
 //BA.debugLineNum = 341;BA.debugLine="p_Volume.Initialize(\"p_Volume\")";
mostCurrent._p_volume.Initialize(mostCurrent.activityBA,"p_Volume");
 //BA.debugLineNum = 342;BA.debugLine="Activity.AddView(p_Volume,100%x-40dip-6.5dip,lb_l";
mostCurrent._activity.AddView((android.view.View)(mostCurrent._p_volume.getObject()),(int) (anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (100),mostCurrent.activityBA)-anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (40))-anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (6.5))),(int) (mostCurrent._lb_lock.getHeight()+mostCurrent._lb_lock.getTop()+anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (10))),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (40)),(int) (anywheresoftware.b4a.keywords.Common.PerYToCurrent((float) (100),mostCurrent.activityBA)-anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (90))-anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (10))-(mostCurrent._lb_lock.getHeight()+mostCurrent._lb_lock.getTop()+anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (10)))));
 //BA.debugLineNum = 343;BA.debugLine="func.color_border(p_Volume,0x96000000,10dip)";
mostCurrent._vvvvvvvvvvvvvvvv7._color_border /*String*/ (mostCurrent.activityBA,(anywheresoftware.b4a.objects.ConcreteViewWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.ConcreteViewWrapper(), (android.view.View)(mostCurrent._p_volume.getObject())),((int)0x96000000),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (10)));
 //BA.debugLineNum = 344;BA.debugLine="p_Volume.Visible = False";
mostCurrent._p_volume.setVisible(anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 346;BA.debugLine="lb_kamel_Volume.Initialize(\"lb_kamel_Volume\")";
mostCurrent._lb_kamel_volume.Initialize(mostCurrent.activityBA,"lb_kamel_Volume");
 //BA.debugLineNum = 347;BA.debugLine="p_Volume.AddView(lb_kamel_Volume,12.5dip,10dip,15";
mostCurrent._p_volume.AddView((android.view.View)(mostCurrent._lb_kamel_volume.getObject()),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (12.5)),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (10)),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (15)),(int) (mostCurrent._p_volume.getHeight()-anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (20))));
 //BA.debugLineNum = 349;BA.debugLine="cvs_Volume.Initialize(lb_kamel_Volume)";
mostCurrent._cvs_volume.Initialize((anywheresoftware.b4a.objects.B4XViewWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.B4XViewWrapper(), (java.lang.Object)(mostCurrent._lb_kamel_volume.getObject())));
 //BA.debugLineNum = 350;BA.debugLine="func.SetRotation(lb_kamel_Volume,180)";
mostCurrent._vvvvvvvvvvvvvvvv7._vvvvvv6 /*String*/ (mostCurrent.activityBA,(anywheresoftware.b4a.objects.ConcreteViewWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.ConcreteViewWrapper(), (android.view.View)(mostCurrent._lb_kamel_volume.getObject())),(float) (180));
 //BA.debugLineNum = 352;BA.debugLine="lb_border_Volume.Initialize(\"lb_border_Volume\")";
mostCurrent._lb_border_volume.Initialize(mostCurrent.activityBA,"lb_border_Volume");
 //BA.debugLineNum = 353;BA.debugLine="p_Volume.AddView(lb_border_Volume,lb_kamel_Volume";
mostCurrent._p_volume.AddView((android.view.View)(mostCurrent._lb_border_volume.getObject()),mostCurrent._lb_kamel_volume.getLeft(),mostCurrent._lb_kamel_volume.getTop(),mostCurrent._lb_kamel_volume.getWidth(),mostCurrent._lb_kamel_volume.getHeight());
 //BA.debugLineNum = 354;BA.debugLine="func.color_border1(lb_border_Volume,Colors.Transp";
mostCurrent._vvvvvvvvvvvvvvvv7._color_border1 /*String*/ (mostCurrent.activityBA,(anywheresoftware.b4a.objects.ConcreteViewWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.ConcreteViewWrapper(), (android.view.View)(mostCurrent._lb_border_volume.getObject())),anywheresoftware.b4a.keywords.Common.Colors.Transparent,(int) (0),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (1)),anywheresoftware.b4a.keywords.Common.Colors.White);
 //BA.debugLineNum = 356;BA.debugLine="lb_Volume.Initialize(\"lb_Volume\")";
mostCurrent._lb_volume.Initialize(mostCurrent.activityBA,"lb_Volume");
 //BA.debugLineNum = 357;BA.debugLine="Activity.AddView(lb_Volume,40%x,45%y,20%x,10%y)";
mostCurrent._activity.AddView((android.view.View)(mostCurrent._lb_volume.getObject()),anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (40),mostCurrent.activityBA),anywheresoftware.b4a.keywords.Common.PerYToCurrent((float) (45),mostCurrent.activityBA),anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (20),mostCurrent.activityBA),anywheresoftware.b4a.keywords.Common.PerYToCurrent((float) (10),mostCurrent.activityBA));
 //BA.debugLineNum = 358;BA.debugLine="lb_Volume.TextColor = Colors.Black";
mostCurrent._lb_volume.setTextColor(anywheresoftware.b4a.keywords.Common.Colors.Black);
 //BA.debugLineNum = 359;BA.debugLine="lb_Volume.Text = func.gland(355)&\" : \"&\"100\"&\" %\"";
mostCurrent._lb_volume.setText(BA.ObjectToCharSequence(mostCurrent._vvvvvvvvvvvvvvvv7._vvv1 /*String*/ (mostCurrent.activityBA,(int) (355))+" : "+"100"+" %"));
 //BA.debugLineNum = 360;BA.debugLine="lb_Volume.Typeface = Typeface.LoadFromAssets(func";
mostCurrent._lb_volume.setTypeface(anywheresoftware.b4a.keywords.Common.Typeface.LoadFromAssets(mostCurrent._vvvvvvvvvvvvvvvv7._vv7 /*String*/ (mostCurrent.activityBA)));
 //BA.debugLineNum = 361;BA.debugLine="lb_Volume.Gravity = Bit.Or(Gravity.CENTER,Gravity";
mostCurrent._lb_volume.setGravity(anywheresoftware.b4a.keywords.Common.Bit.Or(anywheresoftware.b4a.keywords.Common.Gravity.CENTER,anywheresoftware.b4a.keywords.Common.Gravity.CENTER_VERTICAL));
 //BA.debugLineNum = 362;BA.debugLine="func.color_border(lb_Volume,Colors.ARGB(150,255,2";
mostCurrent._vvvvvvvvvvvvvvvv7._color_border /*String*/ (mostCurrent.activityBA,(anywheresoftware.b4a.objects.ConcreteViewWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.ConcreteViewWrapper(), (android.view.View)(mostCurrent._lb_volume.getObject())),anywheresoftware.b4a.keywords.Common.Colors.ARGB((int) (150),(int) (255),(int) (255),(int) (255)),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (10)));
 //BA.debugLineNum = 363;BA.debugLine="func.MinimomFontLabel(lb_Volume,14)";
mostCurrent._vvvvvvvvvvvvvvvv7._vvvv3 /*String*/ (mostCurrent.activityBA,mostCurrent._lb_volume,(int) (14));
 //BA.debugLineNum = 364;BA.debugLine="lb_Volume.Visible = False";
mostCurrent._lb_volume.setVisible(anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 368;BA.debugLine="p_Brightness.Initialize(\"p_Brightness\")";
mostCurrent._p_brightness.Initialize(mostCurrent.activityBA,"p_Brightness");
 //BA.debugLineNum = 369;BA.debugLine="Activity.AddView(p_Brightness,6.5dip,lb_lock.Heig";
mostCurrent._activity.AddView((android.view.View)(mostCurrent._p_brightness.getObject()),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (6.5)),(int) (mostCurrent._lb_lock.getHeight()+mostCurrent._lb_lock.getTop()+anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (10))),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (40)),(int) (anywheresoftware.b4a.keywords.Common.PerYToCurrent((float) (100),mostCurrent.activityBA)-anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (90))-anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (10))-(mostCurrent._lb_lock.getHeight()+mostCurrent._lb_lock.getTop()+anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (10)))));
 //BA.debugLineNum = 370;BA.debugLine="func.color_border(p_Brightness,0x96000000,10dip)";
mostCurrent._vvvvvvvvvvvvvvvv7._color_border /*String*/ (mostCurrent.activityBA,(anywheresoftware.b4a.objects.ConcreteViewWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.ConcreteViewWrapper(), (android.view.View)(mostCurrent._p_brightness.getObject())),((int)0x96000000),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (10)));
 //BA.debugLineNum = 371;BA.debugLine="p_Brightness.Visible = False";
mostCurrent._p_brightness.setVisible(anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 373;BA.debugLine="lb_kamel_Brightness.Initialize(\"lb_kamel_Brightne";
mostCurrent._lb_kamel_brightness.Initialize(mostCurrent.activityBA,"lb_kamel_Brightness");
 //BA.debugLineNum = 374;BA.debugLine="p_Brightness.AddView(lb_kamel_Brightness,12.5dip,";
mostCurrent._p_brightness.AddView((android.view.View)(mostCurrent._lb_kamel_brightness.getObject()),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (12.5)),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (10)),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (15)),(int) (mostCurrent._p_brightness.getHeight()-anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (20))));
 //BA.debugLineNum = 376;BA.debugLine="cvs_Brightness.Initialize(lb_kamel_Brightness)";
mostCurrent._cvs_brightness.Initialize((anywheresoftware.b4a.objects.B4XViewWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.B4XViewWrapper(), (java.lang.Object)(mostCurrent._lb_kamel_brightness.getObject())));
 //BA.debugLineNum = 377;BA.debugLine="func.SetRotation(lb_kamel_Brightness,180)";
mostCurrent._vvvvvvvvvvvvvvvv7._vvvvvv6 /*String*/ (mostCurrent.activityBA,(anywheresoftware.b4a.objects.ConcreteViewWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.ConcreteViewWrapper(), (android.view.View)(mostCurrent._lb_kamel_brightness.getObject())),(float) (180));
 //BA.debugLineNum = 379;BA.debugLine="lb_border_Brightness.Initialize(\"lb_border_Bright";
mostCurrent._lb_border_brightness.Initialize(mostCurrent.activityBA,"lb_border_Brightness");
 //BA.debugLineNum = 380;BA.debugLine="p_Brightness.AddView(lb_border_Brightness,lb_kame";
mostCurrent._p_brightness.AddView((android.view.View)(mostCurrent._lb_border_brightness.getObject()),mostCurrent._lb_kamel_brightness.getLeft(),mostCurrent._lb_kamel_brightness.getTop(),mostCurrent._lb_kamel_brightness.getWidth(),mostCurrent._lb_kamel_brightness.getHeight());
 //BA.debugLineNum = 381;BA.debugLine="func.color_border1(lb_border_Brightness,Colors.Tr";
mostCurrent._vvvvvvvvvvvvvvvv7._color_border1 /*String*/ (mostCurrent.activityBA,(anywheresoftware.b4a.objects.ConcreteViewWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.ConcreteViewWrapper(), (android.view.View)(mostCurrent._lb_border_brightness.getObject())),anywheresoftware.b4a.keywords.Common.Colors.Transparent,(int) (0),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (1)),anywheresoftware.b4a.keywords.Common.Colors.White);
 //BA.debugLineNum = 383;BA.debugLine="lb_Brightness.Initialize(\"lb_Brightness\")";
mostCurrent._lb_brightness.Initialize(mostCurrent.activityBA,"lb_Brightness");
 //BA.debugLineNum = 384;BA.debugLine="Activity.AddView(lb_Brightness,40%x,45%y,20%x,10%";
mostCurrent._activity.AddView((android.view.View)(mostCurrent._lb_brightness.getObject()),anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (40),mostCurrent.activityBA),anywheresoftware.b4a.keywords.Common.PerYToCurrent((float) (45),mostCurrent.activityBA),anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (20),mostCurrent.activityBA),anywheresoftware.b4a.keywords.Common.PerYToCurrent((float) (10),mostCurrent.activityBA));
 //BA.debugLineNum = 385;BA.debugLine="lb_Brightness.TextColor = Colors.Black";
mostCurrent._lb_brightness.setTextColor(anywheresoftware.b4a.keywords.Common.Colors.Black);
 //BA.debugLineNum = 386;BA.debugLine="lb_Brightness.Text = func.gland(354)&\" : \"&\"100\"&";
mostCurrent._lb_brightness.setText(BA.ObjectToCharSequence(mostCurrent._vvvvvvvvvvvvvvvv7._vvv1 /*String*/ (mostCurrent.activityBA,(int) (354))+" : "+"100"+" %"));
 //BA.debugLineNum = 387;BA.debugLine="lb_Brightness.Typeface = Typeface.LoadFromAssets(";
mostCurrent._lb_brightness.setTypeface(anywheresoftware.b4a.keywords.Common.Typeface.LoadFromAssets(mostCurrent._vvvvvvvvvvvvvvvv7._vv7 /*String*/ (mostCurrent.activityBA)));
 //BA.debugLineNum = 388;BA.debugLine="lb_Brightness.Gravity = Bit.Or(Gravity.CENTER,Gra";
mostCurrent._lb_brightness.setGravity(anywheresoftware.b4a.keywords.Common.Bit.Or(anywheresoftware.b4a.keywords.Common.Gravity.CENTER,anywheresoftware.b4a.keywords.Common.Gravity.CENTER_VERTICAL));
 //BA.debugLineNum = 389;BA.debugLine="func.color_border(lb_Brightness,Colors.ARGB(150,2";
mostCurrent._vvvvvvvvvvvvvvvv7._color_border /*String*/ (mostCurrent.activityBA,(anywheresoftware.b4a.objects.ConcreteViewWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.ConcreteViewWrapper(), (android.view.View)(mostCurrent._lb_brightness.getObject())),anywheresoftware.b4a.keywords.Common.Colors.ARGB((int) (150),(int) (255),(int) (255),(int) (255)),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (10)));
 //BA.debugLineNum = 390;BA.debugLine="func.MinimomFontLabel(lb_Brightness,14)";
mostCurrent._vvvvvvvvvvvvvvvv7._vvvv3 /*String*/ (mostCurrent.activityBA,mostCurrent._lb_brightness,(int) (14));
 //BA.debugLineNum = 391;BA.debugLine="lb_Brightness.Visible = False";
mostCurrent._lb_brightness.setVisible(anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 394;BA.debugLine="lb_time.Initialize(\"lb_time\")";
mostCurrent._lb_time.Initialize(mostCurrent.activityBA,"lb_time");
 //BA.debugLineNum = 395;BA.debugLine="Activity.AddView(lb_time,40%x,45%y,20%x,10%y)";
mostCurrent._activity.AddView((android.view.View)(mostCurrent._lb_time.getObject()),anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (40),mostCurrent.activityBA),anywheresoftware.b4a.keywords.Common.PerYToCurrent((float) (45),mostCurrent.activityBA),anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (20),mostCurrent.activityBA),anywheresoftware.b4a.keywords.Common.PerYToCurrent((float) (10),mostCurrent.activityBA));
 //BA.debugLineNum = 396;BA.debugLine="lb_time.TextColor = Colors.Black";
mostCurrent._lb_time.setTextColor(anywheresoftware.b4a.keywords.Common.Colors.Black);
 //BA.debugLineNum = 397;BA.debugLine="lb_time.Text = \"99:99:99\"";
mostCurrent._lb_time.setText(BA.ObjectToCharSequence("99:99:99"));
 //BA.debugLineNum = 398;BA.debugLine="lb_time.Typeface = Typeface.LoadFromAssets(func.f";
mostCurrent._lb_time.setTypeface(anywheresoftware.b4a.keywords.Common.Typeface.LoadFromAssets(mostCurrent._vvvvvvvvvvvvvvvv7._vv7 /*String*/ (mostCurrent.activityBA)));
 //BA.debugLineNum = 399;BA.debugLine="lb_time.Gravity = Bit.Or(Gravity.CENTER,Gravity.C";
mostCurrent._lb_time.setGravity(anywheresoftware.b4a.keywords.Common.Bit.Or(anywheresoftware.b4a.keywords.Common.Gravity.CENTER,anywheresoftware.b4a.keywords.Common.Gravity.CENTER_VERTICAL));
 //BA.debugLineNum = 400;BA.debugLine="func.color_border(lb_time,Colors.ARGB(150,255,255";
mostCurrent._vvvvvvvvvvvvvvvv7._color_border /*String*/ (mostCurrent.activityBA,(anywheresoftware.b4a.objects.ConcreteViewWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.ConcreteViewWrapper(), (android.view.View)(mostCurrent._lb_time.getObject())),anywheresoftware.b4a.keywords.Common.Colors.ARGB((int) (150),(int) (255),(int) (255),(int) (255)),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (10)));
 //BA.debugLineNum = 401;BA.debugLine="func.MinimomFontLabel(lb_time,14)";
mostCurrent._vvvvvvvvvvvvvvvv7._vvvv3 /*String*/ (mostCurrent.activityBA,mostCurrent._lb_time,(int) (14));
 //BA.debugLineNum = 402;BA.debugLine="lb_time.Visible = False";
mostCurrent._lb_time.setVisible(anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 405;BA.debugLine="LVCircularRing1.Initialize(\"LVCircularRing1\")";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv0.Initialize(processBA,"LVCircularRing1");
 //BA.debugLineNum = 406;BA.debugLine="Activity.AddView(LVCircularRing1,50%x-35dip,50%y-";
mostCurrent._activity.AddView((android.view.View)(mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv0.getObject()),(int) (anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (50),mostCurrent.activityBA)-anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (35))),(int) (anywheresoftware.b4a.keywords.Common.PerYToCurrent((float) (50),mostCurrent.activityBA)-anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (35))),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (70)),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (70)));
 //BA.debugLineNum = 407;BA.debugLine="LVCircularRing1.CircleWidth = 5";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv0.setCircleWidth((int) (5));
 //BA.debugLineNum = 408;BA.debugLine="LVCircularRing1.ShadowColor = Colors.Transparent";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv0.setShadowColor(anywheresoftware.b4a.keywords.Common.Colors.Transparent);
 //BA.debugLineNum = 409;BA.debugLine="LVCircularRing1.CircleColor =  Colors.White";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv0.setCircleColor(anywheresoftware.b4a.keywords.Common.Colors.White);
 //BA.debugLineNum = 410;BA.debugLine="LVCircularRing1.FadeInTime = 10";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv0.setFadeInTime((long) (10));
 //BA.debugLineNum = 411;BA.debugLine="LVCircularRing1.FadeOutTime = 3000";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv0.setFadeOutTime((long) (3000));
 //BA.debugLineNum = 412;BA.debugLine="LVCircularRing1.start";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv0.start();
 //BA.debugLineNum = 415;BA.debugLine="Show_Film1";
_show_film1();
 //BA.debugLineNum = 417;BA.debugLine="show_navication(True,False)";
_show_navication(anywheresoftware.b4a.keywords.Common.True,anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 419;BA.debugLine="End Sub";
return "";
}
public static boolean  _activity_keypress(int _keycode) throws Exception{
 //BA.debugLineNum = 1254;BA.debugLine="Sub Activity_KeyPress (KeyCode As Int) As Boolean";
 //BA.debugLineNum = 1256;BA.debugLine="If KeyCode = KeyCodes.KEYCODE_BACK Then";
if (_keycode==anywheresoftware.b4a.keywords.Common.KeyCodes.KEYCODE_BACK) { 
 //BA.debugLineNum = 1258;BA.debugLine="If bol_lock = False Then";
if (_bol_lock==anywheresoftware.b4a.keywords.Common.False) { 
 //BA.debugLineNum = 1259;BA.debugLine="exit_ppplayer(True)";
_exit_ppplayer(anywheresoftware.b4a.keywords.Common.True);
 };
 }else if(_keycode==anywheresoftware.b4a.keywords.Common.KeyCodes.KEYCODE_VOLUME_DOWN || _keycode==anywheresoftware.b4a.keywords.Common.KeyCodes.KEYCODE_VOLUME_UP) { 
 //BA.debugLineNum = 1264;BA.debugLine="If bol_lock = False Then";
if (_bol_lock==anywheresoftware.b4a.keywords.Common.False) { 
 //BA.debugLineNum = 1266;BA.debugLine="Volume = pho_Volume.GetVolume(pho_Volume.VOLUME";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv6 = mostCurrent._pho_volume.GetVolume(mostCurrent._pho_volume.VOLUME_MUSIC);
 //BA.debugLineNum = 1268;BA.debugLine="lb_Volume.Text =func.gland(355)&\" : \"&Round((Vo";
mostCurrent._lb_volume.setText(BA.ObjectToCharSequence(mostCurrent._vvvvvvvvvvvvvvvv7._vvv1 /*String*/ (mostCurrent.activityBA,(int) (355))+" : "+BA.NumberToString(anywheresoftware.b4a.keywords.Common.Round((_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv6*100)/(double)15))+" %"));
 //BA.debugLineNum = 1270;BA.debugLine="DrawValue_Volume(Round((Volume*100)/15))";
_drawvalue_volume((float) (anywheresoftware.b4a.keywords.Common.Round((_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv6*100)/(double)15)));
 //BA.debugLineNum = 1272;BA.debugLine="p_Volume.Visible = True";
mostCurrent._p_volume.setVisible(anywheresoftware.b4a.keywords.Common.True);
 //BA.debugLineNum = 1273;BA.debugLine="lb_Volume.Visible = True";
mostCurrent._lb_volume.setVisible(anywheresoftware.b4a.keywords.Common.True);
 };
 //BA.debugLineNum = 1277;BA.debugLine="Return False";
if (true) return anywheresoftware.b4a.keywords.Common.False;
 };
 //BA.debugLineNum = 1281;BA.debugLine="Return True";
if (true) return anywheresoftware.b4a.keywords.Common.True;
 //BA.debugLineNum = 1283;BA.debugLine="End Sub";
return false;
}
public static boolean  _activity_keyup(int _keycode) throws Exception{
 //BA.debugLineNum = 1284;BA.debugLine="Sub Activity_KeyUp (KeyCode As Int) As Boolean";
 //BA.debugLineNum = 1285;BA.debugLine="If KeyCode = KeyCodes.KEYCODE_VOLUME_DOWN Or KeyC";
if (_keycode==anywheresoftware.b4a.keywords.Common.KeyCodes.KEYCODE_VOLUME_DOWN || _keycode==anywheresoftware.b4a.keywords.Common.KeyCodes.KEYCODE_VOLUME_UP) { 
 //BA.debugLineNum = 1286;BA.debugLine="p_Volume.SetVisibleAnimated(500,False)";
mostCurrent._p_volume.SetVisibleAnimated((int) (500),anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 1287;BA.debugLine="lb_Volume.SetVisibleAnimated(500,False)";
mostCurrent._lb_volume.SetVisibleAnimated((int) (500),anywheresoftware.b4a.keywords.Common.False);
 };
 //BA.debugLineNum = 1289;BA.debugLine="Return True";
if (true) return anywheresoftware.b4a.keywords.Common.True;
 //BA.debugLineNum = 1290;BA.debugLine="End Sub";
return false;
}
public static String  _activity_pause(boolean _userclosed) throws Exception{
 //BA.debugLineNum = 1297;BA.debugLine="Sub Activity_Pause (UserClosed As Boolean)";
 //BA.debugLineNum = 1299;BA.debugLine="If SimpleExoPlayerView1.IsInitialized And player1";
if (mostCurrent._simpleexoplayerview1.IsInitialized() && _vvvvvvvv6.getPosition()>0) { 
 //BA.debugLineNum = 1300;BA.debugLine="player1.Pause";
_vvvvvvvv6.Pause();
 //BA.debugLineNum = 1301;BA.debugLine="If img_pause.IsInitialized And img_play.IsInitia";
if (mostCurrent._img_pause.IsInitialized() && mostCurrent._img_play.IsInitialized()) { 
 //BA.debugLineNum = 1302;BA.debugLine="img_pause.Visible = False";
mostCurrent._img_pause.setVisible(anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 1303;BA.debugLine="img_play.Visible = True";
mostCurrent._img_play.setVisible(anywheresoftware.b4a.keywords.Common.True);
 };
 };
 //BA.debugLineNum = 1307;BA.debugLine="If UserClosed Then";
if (_userclosed) { 
 //BA.debugLineNum = 1308;BA.debugLine="wake.ReleaseKeepAlive";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv6.ReleaseKeepAlive();
 };
 //BA.debugLineNum = 1311;BA.debugLine="End Sub";
return "";
}
public static String  _activity_resume() throws Exception{
 //BA.debugLineNum = 1293;BA.debugLine="Sub Activity_Resume";
 //BA.debugLineNum = 1295;BA.debugLine="End Sub";
return "";
}
public static String  _vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv1(float _s_speed) throws Exception{
anywheresoftware.b4j.object.JavaObject _jo20 = null;
anywheresoftware.b4j.object.JavaObject _playbackparameters = null;
float _speed_f = 0f;
 //BA.debugLineNum = 611;BA.debugLine="Sub ChangeSpeed(s_speed As Float)";
 //BA.debugLineNum = 612;BA.debugLine="Dim jo20 As JavaObject = player1";
_jo20 = new anywheresoftware.b4j.object.JavaObject();
_jo20 = (anywheresoftware.b4j.object.JavaObject) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4j.object.JavaObject(), (java.lang.Object)(_vvvvvvvv6));
 //BA.debugLineNum = 613;BA.debugLine="jo20 = jo20.GetField(\"player\")";
_jo20 = (anywheresoftware.b4j.object.JavaObject) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4j.object.JavaObject(), (java.lang.Object)(_jo20.GetField("player")));
 //BA.debugLineNum = 614;BA.debugLine="Dim PlaybackParameters As JavaObject";
_playbackparameters = new anywheresoftware.b4j.object.JavaObject();
 //BA.debugLineNum = 615;BA.debugLine="Dim speed_f As Float = s_speed";
_speed_f = _s_speed;
 //BA.debugLineNum = 616;BA.debugLine="PlaybackParameters.InitializeNewInstance(\"com.goo";
_playbackparameters.InitializeNewInstance("com.google.android.exoplayer2.PlaybackParameters",new Object[]{(Object)(_speed_f)});
 //BA.debugLineNum = 617;BA.debugLine="jo20.RunMethod(\"setPlaybackParameters\", Array(Pla";
_jo20.RunMethod("setPlaybackParameters",new Object[]{(Object)(_playbackparameters.getObject())});
 //BA.debugLineNum = 618;BA.debugLine="End Sub";
return "";
}
public static String  _dialog_type_itemselected(de.amberhome.materialdialogs.MaterialDialogWrapper _dialog,int _position,String _text) throws Exception{
 //BA.debugLineNum = 1205;BA.debugLine="Sub Dialog_type_ItemSelected (Dialog As MaterialDi";
 //BA.debugLineNum = 1207;BA.debugLine="If Position = 0 Then";
if (_position==0) { 
 //BA.debugLineNum = 1208;BA.debugLine="shareFiles";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv2();
 }else {
 //BA.debugLineNum = 1210;BA.debugLine="shareLinks";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv3();
 };
 //BA.debugLineNum = 1213;BA.debugLine="End Sub";
return "";
}
public static String  _doubletapdelay_tick() throws Exception{
 //BA.debugLineNum = 1037;BA.debugLine="Sub doubleTapDelay_Tick";
 //BA.debugLineNum = 1038;BA.debugLine="p_next_dubble.Visible = False";
mostCurrent._p_next_dubble.setVisible(anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 1039;BA.debugLine="p_back_dubble.Visible = False";
mostCurrent._p_back_dubble.setVisible(anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 1040;BA.debugLine="doubleTapDelay.Enabled = False";
_vvvvvvvv7.setEnabled(anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 1041;BA.debugLine="lb_time.SetVisibleAnimated(500,False)";
mostCurrent._lb_time.SetVisibleAnimated((int) (500),anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 1042;BA.debugLine="End Sub";
return "";
}
public static String  _download_pakhsh() throws Exception{
 //BA.debugLineNum = 1175;BA.debugLine="Sub download_pakhsh";
 //BA.debugLineNum = 1177;BA.debugLine="labDl.Typeface = Typeface.MATERIALICONS";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv4.setTypeface(anywheresoftware.b4a.keywords.Common.Typeface.getMATERIALICONS());
 //BA.debugLineNum = 1178;BA.debugLine="labDl.Text = Chr(0xE5CA)";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv4.setText(BA.ObjectToCharSequence(anywheresoftware.b4a.keywords.Common.Chr(((int)0xe5ca))));
 //BA.debugLineNum = 1182;BA.debugLine="End Sub";
return "";
}
public static String  _drawvalue_brightness(float _value) throws Exception{
 //BA.debugLineNum = 571;BA.debugLine="Private Sub DrawValue_Brightness(Value As Float)";
 //BA.debugLineNum = 572;BA.debugLine="cvs_Brightness.ClearRect(cvs_Brightness.TargetRec";
mostCurrent._cvs_brightness.ClearRect(mostCurrent._cvs_brightness.getTargetRect());
 //BA.debugLineNum = 573;BA.debugLine="cvs_Brightness.DrawLine(cvs_Brightness.TargetRect";
mostCurrent._cvs_brightness.DrawLine(mostCurrent._cvs_brightness.getTargetRect().getCenterX(),(float) (0),mostCurrent._cvs_brightness.getTargetRect().getCenterX(),mostCurrent._cvs_brightness.getTargetRect().getBottom(),anywheresoftware.b4a.keywords.Common.Colors.Transparent,(float) (anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (15))));
 //BA.debugLineNum = 574;BA.debugLine="cvs_Brightness.DrawLine(cvs_Brightness.TargetRect";
mostCurrent._cvs_brightness.DrawLine(mostCurrent._cvs_brightness.getTargetRect().getCenterX(),(float) (0),mostCurrent._cvs_brightness.getTargetRect().getCenterX(),(float) (_value/(double)100*mostCurrent._cvs_brightness.getTargetRect().getBottom()),((int)0xffd0a848),(float) (anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (15))));
 //BA.debugLineNum = 575;BA.debugLine="cvs_Brightness.Invalidate";
mostCurrent._cvs_brightness.Invalidate();
 //BA.debugLineNum = 576;BA.debugLine="End Sub";
return "";
}
public static String  _drawvalue_volume(float _value) throws Exception{
 //BA.debugLineNum = 564;BA.debugLine="Private Sub DrawValue_Volume(Value As Float)";
 //BA.debugLineNum = 565;BA.debugLine="cvs_Volume.ClearRect(cvs_Volume.TargetRect)";
mostCurrent._cvs_volume.ClearRect(mostCurrent._cvs_volume.getTargetRect());
 //BA.debugLineNum = 566;BA.debugLine="cvs_Volume.DrawLine(cvs_Volume.TargetRect.CenterX";
mostCurrent._cvs_volume.DrawLine(mostCurrent._cvs_volume.getTargetRect().getCenterX(),(float) (0),mostCurrent._cvs_volume.getTargetRect().getCenterX(),mostCurrent._cvs_volume.getTargetRect().getBottom(),anywheresoftware.b4a.keywords.Common.Colors.Transparent,(float) (anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (15))));
 //BA.debugLineNum = 567;BA.debugLine="cvs_Volume.DrawLine(cvs_Volume.TargetRect.CenterX";
mostCurrent._cvs_volume.DrawLine(mostCurrent._cvs_volume.getTargetRect().getCenterX(),(float) (0),mostCurrent._cvs_volume.getTargetRect().getCenterX(),(float) (_value/(double)100*mostCurrent._cvs_volume.getTargetRect().getBottom()),((int)0xff4e78cc),(float) (anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (15))));
 //BA.debugLineNum = 568;BA.debugLine="cvs_Volume.Invalidate";
mostCurrent._cvs_volume.Invalidate();
 //BA.debugLineNum = 569;BA.debugLine="End Sub";
return "";
}
public static String  _exit_ppplayer(boolean _save_ppotion) throws Exception{
 //BA.debugLineNum = 1142;BA.debugLine="Sub exit_ppplayer(save_ppotion As Boolean)";
 //BA.debugLineNum = 1143;BA.debugLine="If doubleTapDelay.IsInitialized And doubleTapDela";
if (_vvvvvvvv7.IsInitialized() && _vvvvvvvv7.getEnabled()) { 
_vvvvvvvv7.setEnabled(anywheresoftware.b4a.keywords.Common.False);};
 //BA.debugLineNum = 1144;BA.debugLine="If timer_play_time.IsInitialized And timer_play_t";
if (_timer_play_time.IsInitialized() && _timer_play_time.getEnabled()) { 
_timer_play_time.setEnabled(anywheresoftware.b4a.keywords.Common.False);};
 //BA.debugLineNum = 1145;BA.debugLine="player1.Pause";
_vvvvvvvv6.Pause();
 //BA.debugLineNum = 1146;BA.debugLine="player1.Release";
_vvvvvvvv6.Release();
 //BA.debugLineNum = 1148;BA.debugLine="Activity.Finish";
mostCurrent._activity.Finish();
 //BA.debugLineNum = 1151;BA.debugLine="End Sub";
return "";
}
public static String  _vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv4(double _angle) throws Exception{
 //BA.debugLineNum = 1063;BA.debugLine="Sub fromAngle(angle As Double) As String";
 //BA.debugLineNum = 1064;BA.debugLine="If (inRange(angle, 45, 135)) Then";
if ((_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv5(_angle,(float) (45),(float) (135)))) { 
 //BA.debugLineNum = 1065;BA.debugLine="Return \"up\"";
if (true) return "up";
 }else if((_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv5(_angle,(float) (225),(float) (315)))) { 
 //BA.debugLineNum = 1067;BA.debugLine="Return \"down\"";
if (true) return "down";
 }else if((_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv5(_angle,(float) (135),(float) (225)))) { 
 //BA.debugLineNum = 1069;BA.debugLine="Return \"left\"";
if (true) return "left";
 }else if((_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv5(_angle,(float) (0),(float) (45)) || _vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv5(_angle,(float) (315),(float) (360)))) { 
 //BA.debugLineNum = 1071;BA.debugLine="Return \"right\"";
if (true) return "right";
 }else {
 //BA.debugLineNum = 1073;BA.debugLine="Return \"Null\"";
if (true) return "Null";
 };
 //BA.debugLineNum = 1075;BA.debugLine="End Sub";
return "";
}
public static void  _gesture_ondoubletap(float _x,float _y,Object _motionevent) throws Exception{
ResumableSub_Gesture_onDoubleTap rsub = new ResumableSub_Gesture_onDoubleTap(null,_x,_y,_motionevent);
rsub.resume(processBA, null);
}
public static class ResumableSub_Gesture_onDoubleTap extends BA.ResumableSub {
public ResumableSub_Gesture_onDoubleTap(com.pas.abtahibo.parvaz.playsrds parent,float _x,float _y,Object _motionevent) {
this.parent = parent;
this._x = _x;
this._y = _y;
this._motionevent = _motionevent;
}
com.pas.abtahibo.parvaz.playsrds parent;
float _x;
float _y;
Object _motionevent;
anywheresoftware.b4j.object.JavaObject _re1 = null;
float _e1_getx = 0f;
anywheresoftware.b4j.object.JavaObject _jo20 = null;
long _position20 = 0L;
long _seekto20 = 0L;
anywheresoftware.b4j.object.JavaObject _jo2 = null;
long _position2 = 0L;
long _seekto2 = 0L;

@Override
public void resume(BA ba, Object[] result) throws Exception{

    while (true) {
        switch (state) {
            case -1:
return;

case 0:
//C
this.state = 1;
 //BA.debugLineNum = 951;BA.debugLine="If bol_lock = False Then";
if (true) break;

case 1:
//if
this.state = 29;
if (parent._bol_lock==anywheresoftware.b4a.keywords.Common.False) { 
this.state = 3;
}if (true) break;

case 3:
//C
this.state = 4;
 //BA.debugLineNum = 953;BA.debugLine="If show_or_hide = False Then";
if (true) break;

case 4:
//if
this.state = 7;
if (parent._show_or_hide==anywheresoftware.b4a.keywords.Common.False) { 
this.state = 6;
}if (true) break;

case 6:
//C
this.state = 7;
 //BA.debugLineNum = 954;BA.debugLine="show_controller(True)";
_show_controller(anywheresoftware.b4a.keywords.Common.True);
 //BA.debugLineNum = 955;BA.debugLine="ActionBar.Visible = True";
parent.mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.setVisible(anywheresoftware.b4a.keywords.Common.True);
 //BA.debugLineNum = 956;BA.debugLine="lb_lock.Visible = True";
parent.mostCurrent._lb_lock.setVisible(anywheresoftware.b4a.keywords.Common.True);
 //BA.debugLineNum = 957;BA.debugLine="L_Speed2.Visible = True";
parent.mostCurrent._l_speed2.setVisible(anywheresoftware.b4a.keywords.Common.True);
 //BA.debugLineNum = 958;BA.debugLine="visLab(labDl,True)";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv5(parent.mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv4,anywheresoftware.b4a.keywords.Common.True);
 //BA.debugLineNum = 959;BA.debugLine="visLab(labShare,True)";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv5(parent.mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv3,anywheresoftware.b4a.keywords.Common.True);
 //BA.debugLineNum = 960;BA.debugLine="show_or_hide = True";
parent._show_or_hide = anywheresoftware.b4a.keywords.Common.True;
 if (true) break;

case 7:
//C
this.state = 8;
;
 //BA.debugLineNum = 963;BA.debugLine="lb_time.Visible = True";
parent.mostCurrent._lb_time.setVisible(anywheresoftware.b4a.keywords.Common.True);
 //BA.debugLineNum = 965;BA.debugLine="Dim re1 As JavaObject = MotionEvent";
_re1 = new anywheresoftware.b4j.object.JavaObject();
_re1 = (anywheresoftware.b4j.object.JavaObject) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4j.object.JavaObject(), (java.lang.Object)(_motionevent));
 //BA.debugLineNum = 966;BA.debugLine="Dim e1_getX As Float = re1.RunMethod(\"getX\",Null";
_e1_getx = (float)(BA.ObjectToNumber(_re1.RunMethod("getX",(Object[])(anywheresoftware.b4a.keywords.Common.Null))));
 //BA.debugLineNum = 968;BA.debugLine="If e1_getX > 70%x Then";
if (true) break;

case 8:
//if
this.state = 25;
if (_e1_getx>anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (70),mostCurrent.activityBA)) { 
this.state = 10;
}else if(_e1_getx<anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (30),mostCurrent.activityBA)) { 
this.state = 18;
}if (true) break;

case 10:
//C
this.state = 11;
 //BA.debugLineNum = 969;BA.debugLine="p_next_dubble.Visible = True";
parent.mostCurrent._p_next_dubble.setVisible(anywheresoftware.b4a.keywords.Common.True);
 //BA.debugLineNum = 971;BA.debugLine="Dim jo20 As JavaObject = player1";
_jo20 = new anywheresoftware.b4j.object.JavaObject();
_jo20 = (anywheresoftware.b4j.object.JavaObject) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4j.object.JavaObject(), (java.lang.Object)(parent._vvvvvvvv6));
 //BA.debugLineNum = 972;BA.debugLine="jo20 = jo20.GetField(\"player\")";
_jo20 = (anywheresoftware.b4j.object.JavaObject) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4j.object.JavaObject(), (java.lang.Object)(_jo20.GetField("player")));
 //BA.debugLineNum = 973;BA.debugLine="Dim position20 As Long = jo20.RunMethod(\"getCur";
_position20 = BA.ObjectToLongNumber(_jo20.RunMethod("getCurrentPosition",(Object[])(anywheresoftware.b4a.keywords.Common.Null)));
 //BA.debugLineNum = 974;BA.debugLine="Dim seekto20 As Long = position20+10000";
_seekto20 = (long) (_position20+10000);
 //BA.debugLineNum = 975;BA.debugLine="If seekto20 > player1.Duration Then seekto20 =";
if (true) break;

case 11:
//if
this.state = 16;
if (_seekto20>parent._vvvvvvvv6.getDuration()) { 
this.state = 13;
;}if (true) break;

case 13:
//C
this.state = 16;
_seekto20 = parent._vvvvvvvv6.getDuration();
if (true) break;

case 16:
//C
this.state = 25;
;
 //BA.debugLineNum = 976;BA.debugLine="lb_time.Text = func.ConvertMillisecondsToString";
parent.mostCurrent._lb_time.setText(BA.ObjectToCharSequence(parent.mostCurrent._vvvvvvvvvvvvvvvv7._vv2 /*String*/ (mostCurrent.activityBA,_seekto20)));
 //BA.debugLineNum = 977;BA.debugLine="jo20.RunMethod(\"seekTo\", Array(seekto20))";
_jo20.RunMethod("seekTo",new Object[]{(Object)(_seekto20)});
 //BA.debugLineNum = 979;BA.debugLine="img_next_dubble1.SetVisibleAnimated(200,False)";
parent.mostCurrent._img_next_dubble1.SetVisibleAnimated((int) (200),anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 980;BA.debugLine="Sleep(50)";
anywheresoftware.b4a.keywords.Common.Sleep(mostCurrent.activityBA,this,(int) (50));
this.state = 30;
return;
case 30:
//C
this.state = 25;
;
 //BA.debugLineNum = 981;BA.debugLine="img_next_dubble12.SetVisibleAnimated(200,False)";
parent.mostCurrent._img_next_dubble12.SetVisibleAnimated((int) (200),anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 982;BA.debugLine="Sleep(50)";
anywheresoftware.b4a.keywords.Common.Sleep(mostCurrent.activityBA,this,(int) (50));
this.state = 31;
return;
case 31:
//C
this.state = 25;
;
 //BA.debugLineNum = 983;BA.debugLine="img_next_dubble13.SetVisibleAnimated(200,False)";
parent.mostCurrent._img_next_dubble13.SetVisibleAnimated((int) (200),anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 984;BA.debugLine="Sleep(50)";
anywheresoftware.b4a.keywords.Common.Sleep(mostCurrent.activityBA,this,(int) (50));
this.state = 32;
return;
case 32:
//C
this.state = 25;
;
 //BA.debugLineNum = 985;BA.debugLine="img_next_dubble1.SetVisibleAnimated(200,True)";
parent.mostCurrent._img_next_dubble1.SetVisibleAnimated((int) (200),anywheresoftware.b4a.keywords.Common.True);
 //BA.debugLineNum = 986;BA.debugLine="Sleep(50)";
anywheresoftware.b4a.keywords.Common.Sleep(mostCurrent.activityBA,this,(int) (50));
this.state = 33;
return;
case 33:
//C
this.state = 25;
;
 //BA.debugLineNum = 987;BA.debugLine="img_next_dubble12.SetVisibleAnimated(200,True)";
parent.mostCurrent._img_next_dubble12.SetVisibleAnimated((int) (200),anywheresoftware.b4a.keywords.Common.True);
 //BA.debugLineNum = 988;BA.debugLine="Sleep(50)";
anywheresoftware.b4a.keywords.Common.Sleep(mostCurrent.activityBA,this,(int) (50));
this.state = 34;
return;
case 34:
//C
this.state = 25;
;
 //BA.debugLineNum = 989;BA.debugLine="img_next_dubble13.SetVisibleAnimated(200,True)";
parent.mostCurrent._img_next_dubble13.SetVisibleAnimated((int) (200),anywheresoftware.b4a.keywords.Common.True);
 //BA.debugLineNum = 990;BA.debugLine="Sleep(50)";
anywheresoftware.b4a.keywords.Common.Sleep(mostCurrent.activityBA,this,(int) (50));
this.state = 35;
return;
case 35:
//C
this.state = 25;
;
 //BA.debugLineNum = 991;BA.debugLine="img_next_dubble1.SetVisibleAnimated(200,False)";
parent.mostCurrent._img_next_dubble1.SetVisibleAnimated((int) (200),anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 992;BA.debugLine="Sleep(50)";
anywheresoftware.b4a.keywords.Common.Sleep(mostCurrent.activityBA,this,(int) (50));
this.state = 36;
return;
case 36:
//C
this.state = 25;
;
 //BA.debugLineNum = 993;BA.debugLine="img_next_dubble12.SetVisibleAnimated(200,False)";
parent.mostCurrent._img_next_dubble12.SetVisibleAnimated((int) (200),anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 994;BA.debugLine="Sleep(50)";
anywheresoftware.b4a.keywords.Common.Sleep(mostCurrent.activityBA,this,(int) (50));
this.state = 37;
return;
case 37:
//C
this.state = 25;
;
 //BA.debugLineNum = 995;BA.debugLine="img_next_dubble13.SetVisibleAnimated(200,False)";
parent.mostCurrent._img_next_dubble13.SetVisibleAnimated((int) (200),anywheresoftware.b4a.keywords.Common.False);
 if (true) break;

case 18:
//C
this.state = 19;
 //BA.debugLineNum = 998;BA.debugLine="p_back_dubble.Visible = True";
parent.mostCurrent._p_back_dubble.setVisible(anywheresoftware.b4a.keywords.Common.True);
 //BA.debugLineNum = 1000;BA.debugLine="Dim jo2 As JavaObject = player1";
_jo2 = new anywheresoftware.b4j.object.JavaObject();
_jo2 = (anywheresoftware.b4j.object.JavaObject) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4j.object.JavaObject(), (java.lang.Object)(parent._vvvvvvvv6));
 //BA.debugLineNum = 1001;BA.debugLine="jo2 = jo2.GetField(\"player\")";
_jo2 = (anywheresoftware.b4j.object.JavaObject) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4j.object.JavaObject(), (java.lang.Object)(_jo2.GetField("player")));
 //BA.debugLineNum = 1002;BA.debugLine="Dim position2 As Long = jo2.RunMethod(\"getCurre";
_position2 = BA.ObjectToLongNumber(_jo2.RunMethod("getCurrentPosition",(Object[])(anywheresoftware.b4a.keywords.Common.Null)));
 //BA.debugLineNum = 1003;BA.debugLine="Dim seekto2 As Long = position2-10000";
_seekto2 = (long) (_position2-10000);
 //BA.debugLineNum = 1004;BA.debugLine="If seekto2 < 0 Then seekto2 = 0";
if (true) break;

case 19:
//if
this.state = 24;
if (_seekto2<0) { 
this.state = 21;
;}if (true) break;

case 21:
//C
this.state = 24;
_seekto2 = (long) (0);
if (true) break;

case 24:
//C
this.state = 25;
;
 //BA.debugLineNum = 1005;BA.debugLine="lb_time.Text = func.ConvertMillisecondsToString";
parent.mostCurrent._lb_time.setText(BA.ObjectToCharSequence(parent.mostCurrent._vvvvvvvvvvvvvvvv7._vv2 /*String*/ (mostCurrent.activityBA,_seekto2)));
 //BA.debugLineNum = 1006;BA.debugLine="jo2.RunMethod(\"seekTo\", Array(seekto2))";
_jo2.RunMethod("seekTo",new Object[]{(Object)(_seekto2)});
 //BA.debugLineNum = 1009;BA.debugLine="img_back_dubble1.SetVisibleAnimated(200,False)";
parent.mostCurrent._img_back_dubble1.SetVisibleAnimated((int) (200),anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 1010;BA.debugLine="Sleep(50)";
anywheresoftware.b4a.keywords.Common.Sleep(mostCurrent.activityBA,this,(int) (50));
this.state = 38;
return;
case 38:
//C
this.state = 25;
;
 //BA.debugLineNum = 1011;BA.debugLine="img_back_dubble12.SetVisibleAnimated(200,False)";
parent.mostCurrent._img_back_dubble12.SetVisibleAnimated((int) (200),anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 1012;BA.debugLine="Sleep(50)";
anywheresoftware.b4a.keywords.Common.Sleep(mostCurrent.activityBA,this,(int) (50));
this.state = 39;
return;
case 39:
//C
this.state = 25;
;
 //BA.debugLineNum = 1013;BA.debugLine="img_back_dubble13.SetVisibleAnimated(200,False)";
parent.mostCurrent._img_back_dubble13.SetVisibleAnimated((int) (200),anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 1014;BA.debugLine="Sleep(50)";
anywheresoftware.b4a.keywords.Common.Sleep(mostCurrent.activityBA,this,(int) (50));
this.state = 40;
return;
case 40:
//C
this.state = 25;
;
 //BA.debugLineNum = 1015;BA.debugLine="img_back_dubble1.SetVisibleAnimated(200,True)";
parent.mostCurrent._img_back_dubble1.SetVisibleAnimated((int) (200),anywheresoftware.b4a.keywords.Common.True);
 //BA.debugLineNum = 1016;BA.debugLine="Sleep(50)";
anywheresoftware.b4a.keywords.Common.Sleep(mostCurrent.activityBA,this,(int) (50));
this.state = 41;
return;
case 41:
//C
this.state = 25;
;
 //BA.debugLineNum = 1017;BA.debugLine="img_back_dubble12.SetVisibleAnimated(200,True)";
parent.mostCurrent._img_back_dubble12.SetVisibleAnimated((int) (200),anywheresoftware.b4a.keywords.Common.True);
 //BA.debugLineNum = 1018;BA.debugLine="Sleep(50)";
anywheresoftware.b4a.keywords.Common.Sleep(mostCurrent.activityBA,this,(int) (50));
this.state = 42;
return;
case 42:
//C
this.state = 25;
;
 //BA.debugLineNum = 1019;BA.debugLine="img_back_dubble13.SetVisibleAnimated(200,True)";
parent.mostCurrent._img_back_dubble13.SetVisibleAnimated((int) (200),anywheresoftware.b4a.keywords.Common.True);
 //BA.debugLineNum = 1020;BA.debugLine="Sleep(50)";
anywheresoftware.b4a.keywords.Common.Sleep(mostCurrent.activityBA,this,(int) (50));
this.state = 43;
return;
case 43:
//C
this.state = 25;
;
 //BA.debugLineNum = 1021;BA.debugLine="img_back_dubble1.SetVisibleAnimated(200,False)";
parent.mostCurrent._img_back_dubble1.SetVisibleAnimated((int) (200),anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 1022;BA.debugLine="Sleep(50)";
anywheresoftware.b4a.keywords.Common.Sleep(mostCurrent.activityBA,this,(int) (50));
this.state = 44;
return;
case 44:
//C
this.state = 25;
;
 //BA.debugLineNum = 1023;BA.debugLine="img_back_dubble12.SetVisibleAnimated(200,False)";
parent.mostCurrent._img_back_dubble12.SetVisibleAnimated((int) (200),anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 1024;BA.debugLine="Sleep(50)";
anywheresoftware.b4a.keywords.Common.Sleep(mostCurrent.activityBA,this,(int) (50));
this.state = 45;
return;
case 45:
//C
this.state = 25;
;
 //BA.debugLineNum = 1025;BA.debugLine="img_back_dubble13.SetVisibleAnimated(200,False)";
parent.mostCurrent._img_back_dubble13.SetVisibleAnimated((int) (200),anywheresoftware.b4a.keywords.Common.False);
 if (true) break;
;
 //BA.debugLineNum = 1029;BA.debugLine="If doubleTapDelay.Enabled = True Then";

case 25:
//if
this.state = 28;
if (parent._vvvvvvvv7.getEnabled()==anywheresoftware.b4a.keywords.Common.True) { 
this.state = 27;
}if (true) break;

case 27:
//C
this.state = 28;
 //BA.debugLineNum = 1030;BA.debugLine="doubleTapDelay.Enabled = False";
parent._vvvvvvvv7.setEnabled(anywheresoftware.b4a.keywords.Common.False);
 if (true) break;

case 28:
//C
this.state = 29;
;
 //BA.debugLineNum = 1032;BA.debugLine="doubleTapDelay.Enabled = True";
parent._vvvvvvvv7.setEnabled(anywheresoftware.b4a.keywords.Common.True);
 if (true) break;

case 29:
//C
this.state = -1;
;
 //BA.debugLineNum = 1036;BA.debugLine="End Sub";
if (true) break;

            }
        }
    }
}
public static String  _gesture_onscroll(float _distancex,float _distancey,Object _motionevent1,Object _motionevent2) throws Exception{
anywheresoftware.b4j.object.JavaObject _re1 = null;
float _e1_gety = 0f;
float _e1_getx = 0f;
float _e1_rawgetx = 0f;
float _e1_rawgety = 0f;
anywheresoftware.b4j.object.JavaObject _re12 = null;
int _e12_gety = 0;
float _e12_getx = 0f;
float _e12_rawgetx = 0f;
float _e12_rawgety = 0f;
float _deltax = 0f;
float _deltay = 0f;
anywheresoftware.b4j.object.JavaObject _jo20 = null;
long _position20 = 0L;
long _seekto20 = 0L;
anywheresoftware.b4j.object.JavaObject _jo2 = null;
long _position2 = 0L;
long _seekto2 = 0L;
 //BA.debugLineNum = 837;BA.debugLine="Sub Gesture_onScroll(distanceX As Float, distanceY";
 //BA.debugLineNum = 839;BA.debugLine="If bol_lock = False Then";
if (_bol_lock==anywheresoftware.b4a.keywords.Common.False) { 
 //BA.debugLineNum = 841;BA.debugLine="Dim re1 As JavaObject = MotionEvent1";
_re1 = new anywheresoftware.b4j.object.JavaObject();
_re1 = (anywheresoftware.b4j.object.JavaObject) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4j.object.JavaObject(), (java.lang.Object)(_motionevent1));
 //BA.debugLineNum = 843;BA.debugLine="Dim e1_getY As Float = re1.RunMethod(\"getY\",Null";
_e1_gety = (float)(BA.ObjectToNumber(_re1.RunMethod("getY",(Object[])(anywheresoftware.b4a.keywords.Common.Null))));
 //BA.debugLineNum = 844;BA.debugLine="Dim e1_getX As Float = re1.RunMethod(\"getX\",Null";
_e1_getx = (float)(BA.ObjectToNumber(_re1.RunMethod("getX",(Object[])(anywheresoftware.b4a.keywords.Common.Null))));
 //BA.debugLineNum = 846;BA.debugLine="Dim e1_RawgetX As Float = re1.RunMethod(\"getRawX";
_e1_rawgetx = (float)(BA.ObjectToNumber(_re1.RunMethod("getRawX",(Object[])(anywheresoftware.b4a.keywords.Common.Null))));
 //BA.debugLineNum = 847;BA.debugLine="Dim e1_RawgetY As Float = re1.RunMethod(\"getRawY";
_e1_rawgety = (float)(BA.ObjectToNumber(_re1.RunMethod("getRawY",(Object[])(anywheresoftware.b4a.keywords.Common.Null))));
 //BA.debugLineNum = 849;BA.debugLine="Dim re12 As JavaObject = MotionEvent2";
_re12 = new anywheresoftware.b4j.object.JavaObject();
_re12 = (anywheresoftware.b4j.object.JavaObject) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4j.object.JavaObject(), (java.lang.Object)(_motionevent2));
 //BA.debugLineNum = 851;BA.debugLine="Dim e12_getY As Int = re12.RunMethod(\"getY\",Null";
_e12_gety = (int)(BA.ObjectToNumber(_re12.RunMethod("getY",(Object[])(anywheresoftware.b4a.keywords.Common.Null))));
 //BA.debugLineNum = 852;BA.debugLine="Dim e12_getX As Float = re12.RunMethod(\"getX\",Nu";
_e12_getx = (float)(BA.ObjectToNumber(_re12.RunMethod("getX",(Object[])(anywheresoftware.b4a.keywords.Common.Null))));
 //BA.debugLineNum = 854;BA.debugLine="Dim e12_RawgetX As Float = re12.RunMethod(\"getRa";
_e12_rawgetx = (float)(BA.ObjectToNumber(_re12.RunMethod("getRawX",(Object[])(anywheresoftware.b4a.keywords.Common.Null))));
 //BA.debugLineNum = 855;BA.debugLine="Dim e12_RawgetY As Float = re12.RunMethod(\"getRa";
_e12_rawgety = (float)(BA.ObjectToNumber(_re12.RunMethod("getRawY",(Object[])(anywheresoftware.b4a.keywords.Common.Null))));
 //BA.debugLineNum = 857;BA.debugLine="Dim deltaX As Float = e1_RawgetX - e12_RawgetX '";
_deltax = (float) (_e1_rawgetx-_e12_rawgetx);
 //BA.debugLineNum = 858;BA.debugLine="Dim deltaY As Float= e1_RawgetY - e12_RawgetY 'i";
_deltay = (float) (_e1_rawgety-_e12_rawgety);
 //BA.debugLineNum = 860;BA.debugLine="If bol1 = False Then";
if (_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv6==anywheresoftware.b4a.keywords.Common.False) { 
 //BA.debugLineNum = 861;BA.debugLine="bol1 = True";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv6 = anywheresoftware.b4a.keywords.Common.True;
 //BA.debugLineNum = 862;BA.debugLine="Select fromAngle(getAngle(e1_getX,e1_getY,e12_g";
switch (BA.switchObjectToInt(_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv4(_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv7(_e1_getx,_e1_gety,_e12_getx,(float) (_e12_gety))),"right","left","down","up")) {
case 0: {
 //BA.debugLineNum = 865;BA.debugLine="bol_der_right_left = True";
_bol_der_right_left = anywheresoftware.b4a.keywords.Common.True;
 break; }
case 1: {
 //BA.debugLineNum = 868;BA.debugLine="bol_der_right_left = True";
_bol_der_right_left = anywheresoftware.b4a.keywords.Common.True;
 break; }
case 2: {
 //BA.debugLineNum = 871;BA.debugLine="If e1_getX < 50%x Then";
if (_e1_getx<anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (50),mostCurrent.activityBA)) { 
 //BA.debugLineNum = 872;BA.debugLine="bol_Volume = True";
_bol_volume = anywheresoftware.b4a.keywords.Common.True;
 }else {
 //BA.debugLineNum = 874;BA.debugLine="bol_Brightness = True";
_bol_brightness = anywheresoftware.b4a.keywords.Common.True;
 };
 break; }
case 3: {
 //BA.debugLineNum = 878;BA.debugLine="If e1_getX < 50%x Then";
if (_e1_getx<anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (50),mostCurrent.activityBA)) { 
 //BA.debugLineNum = 879;BA.debugLine="bol_Volume = True";
_bol_volume = anywheresoftware.b4a.keywords.Common.True;
 }else {
 //BA.debugLineNum = 881;BA.debugLine="bol_Brightness = True";
_bol_brightness = anywheresoftware.b4a.keywords.Common.True;
 };
 break; }
}
;
 };
 //BA.debugLineNum = 888;BA.debugLine="If bol_der_right_left = True Then";
if (_bol_der_right_left==anywheresoftware.b4a.keywords.Common.True) { 
 //BA.debugLineNum = 889;BA.debugLine="If e12_getX > mLastScrollX Then";
if (_e12_getx>_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv0) { 
 //BA.debugLineNum = 890;BA.debugLine="Dim jo20 As JavaObject = player1";
_jo20 = new anywheresoftware.b4j.object.JavaObject();
_jo20 = (anywheresoftware.b4j.object.JavaObject) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4j.object.JavaObject(), (java.lang.Object)(_vvvvvvvv6));
 //BA.debugLineNum = 891;BA.debugLine="jo20 = jo20.GetField(\"player\")";
_jo20 = (anywheresoftware.b4j.object.JavaObject) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4j.object.JavaObject(), (java.lang.Object)(_jo20.GetField("player")));
 //BA.debugLineNum = 892;BA.debugLine="Dim position20 As Long = jo20.RunMethod(\"getCu";
_position20 = BA.ObjectToLongNumber(_jo20.RunMethod("getCurrentPosition",(Object[])(anywheresoftware.b4a.keywords.Common.Null)));
 //BA.debugLineNum = 893;BA.debugLine="Dim seekto20 As Long = position20+1000";
_seekto20 = (long) (_position20+1000);
 //BA.debugLineNum = 894;BA.debugLine="If seekto20 > player1.Duration Then seekto20 =";
if (_seekto20>_vvvvvvvv6.getDuration()) { 
_seekto20 = _vvvvvvvv6.getDuration();};
 //BA.debugLineNum = 895;BA.debugLine="lb_time.Text = func.ConvertMillisecondsToStrin";
mostCurrent._lb_time.setText(BA.ObjectToCharSequence(mostCurrent._vvvvvvvvvvvvvvvv7._vv2 /*String*/ (mostCurrent.activityBA,_seekto20)));
 //BA.debugLineNum = 896;BA.debugLine="jo20.RunMethod(\"seekTo\", Array(seekto20))";
_jo20.RunMethod("seekTo",new Object[]{(Object)(_seekto20)});
 }else {
 //BA.debugLineNum = 898;BA.debugLine="Dim jo2 As JavaObject = player1";
_jo2 = new anywheresoftware.b4j.object.JavaObject();
_jo2 = (anywheresoftware.b4j.object.JavaObject) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4j.object.JavaObject(), (java.lang.Object)(_vvvvvvvv6));
 //BA.debugLineNum = 899;BA.debugLine="jo2 = jo2.GetField(\"player\")";
_jo2 = (anywheresoftware.b4j.object.JavaObject) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4j.object.JavaObject(), (java.lang.Object)(_jo2.GetField("player")));
 //BA.debugLineNum = 900;BA.debugLine="Dim position2 As Long = jo2.RunMethod(\"getCurr";
_position2 = BA.ObjectToLongNumber(_jo2.RunMethod("getCurrentPosition",(Object[])(anywheresoftware.b4a.keywords.Common.Null)));
 //BA.debugLineNum = 901;BA.debugLine="Dim seekto2 As Long = position2-1000";
_seekto2 = (long) (_position2-1000);
 //BA.debugLineNum = 902;BA.debugLine="If seekto2 < 0 Then seekto2 = 0";
if (_seekto2<0) { 
_seekto2 = (long) (0);};
 //BA.debugLineNum = 903;BA.debugLine="lb_time.Text = func.ConvertMillisecondsToStrin";
mostCurrent._lb_time.setText(BA.ObjectToCharSequence(mostCurrent._vvvvvvvvvvvvvvvv7._vv2 /*String*/ (mostCurrent.activityBA,_seekto2)));
 //BA.debugLineNum = 904;BA.debugLine="jo2.RunMethod(\"seekTo\", Array(seekto2))";
_jo2.RunMethod("seekTo",new Object[]{(Object)(_seekto2)});
 };
 }else if(_bol_volume==anywheresoftware.b4a.keywords.Common.True) { 
 //BA.debugLineNum = 908;BA.debugLine="If Abs(e12_getY - mLastScrollY) > 3 Then";
if (anywheresoftware.b4a.keywords.Common.Abs(_e12_gety-_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv1)>3) { 
 //BA.debugLineNum = 909;BA.debugLine="If e12_getY > mLastScrollY Then";
if (_e12_gety>_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv1) { 
 //BA.debugLineNum = 910;BA.debugLine="Volume = Max(Volume,0)";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv6 = (int) (anywheresoftware.b4a.keywords.Common.Max(_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv6,0));
 //BA.debugLineNum = 911;BA.debugLine="Volume = Volume -1";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv6 = (int) (_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv6-1);
 //BA.debugLineNum = 912;BA.debugLine="pho_Volume.SetVolume(pho_Volume.VOLUME_MUSIC,";
mostCurrent._pho_volume.SetVolume(mostCurrent._pho_volume.VOLUME_MUSIC,(int) (anywheresoftware.b4a.keywords.Common.Max(_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv6,0)),anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 913;BA.debugLine="lb_Volume.Text = func.gland(355)&\" : \"&Round(";
mostCurrent._lb_volume.setText(BA.ObjectToCharSequence(mostCurrent._vvvvvvvvvvvvvvvv7._vvv1 /*String*/ (mostCurrent.activityBA,(int) (355))+" : "+BA.NumberToString(anywheresoftware.b4a.keywords.Common.Round((anywheresoftware.b4a.keywords.Common.Max(_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv6,0)*100)/(double)15))+" %"));
 //BA.debugLineNum = 914;BA.debugLine="DrawValue_Volume(Round((Max(Volume,0)*100)/15";
_drawvalue_volume((float) (anywheresoftware.b4a.keywords.Common.Round((anywheresoftware.b4a.keywords.Common.Max(_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv6,0)*100)/(double)15)));
 }else {
 //BA.debugLineNum = 916;BA.debugLine="Volume = Min(Volume,15)";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv6 = (int) (anywheresoftware.b4a.keywords.Common.Min(_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv6,15));
 //BA.debugLineNum = 917;BA.debugLine="Volume = Volume +1";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv6 = (int) (_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv6+1);
 //BA.debugLineNum = 918;BA.debugLine="pho_Volume.SetVolume(pho_Volume.VOLUME_MUSIC,";
mostCurrent._pho_volume.SetVolume(mostCurrent._pho_volume.VOLUME_MUSIC,(int) (anywheresoftware.b4a.keywords.Common.Min(_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv6,15)),anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 919;BA.debugLine="lb_Volume.Text = func.gland(355)&\" : \"&Round(";
mostCurrent._lb_volume.setText(BA.ObjectToCharSequence(mostCurrent._vvvvvvvvvvvvvvvv7._vvv1 /*String*/ (mostCurrent.activityBA,(int) (355))+" : "+BA.NumberToString(anywheresoftware.b4a.keywords.Common.Round((anywheresoftware.b4a.keywords.Common.Min(_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv6,15)*100)/(double)15))+" %"));
 //BA.debugLineNum = 920;BA.debugLine="DrawValue_Volume(Round((Min(Volume,15)*100)/1";
_drawvalue_volume((float) (anywheresoftware.b4a.keywords.Common.Round((anywheresoftware.b4a.keywords.Common.Min(_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv6,15)*100)/(double)15)));
 };
 };
 }else if(_bol_brightness==anywheresoftware.b4a.keywords.Common.True) { 
 //BA.debugLineNum = 925;BA.debugLine="If Abs(e12_getY - mLastScrollY) > 3 Then";
if (anywheresoftware.b4a.keywords.Common.Abs(_e12_gety-_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv1)>3) { 
 //BA.debugLineNum = 926;BA.debugLine="If e12_getY > mLastScrollY Then";
if (_e12_gety>_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv1) { 
 //BA.debugLineNum = 927;BA.debugLine="Brightness = Max(Brightness,0)";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv7 = (int) (anywheresoftware.b4a.keywords.Common.Max(_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv7,0));
 //BA.debugLineNum = 928;BA.debugLine="Brightness = Brightness - 10";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv7 = (int) (_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv7-10);
 //BA.debugLineNum = 929;BA.debugLine="screenBrightness(Max(Brightness,0))";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv2((float) (anywheresoftware.b4a.keywords.Common.Max(_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv7,0)));
 //BA.debugLineNum = 930;BA.debugLine="lb_Brightness.Text = func.gland(354)&\" : \"&Ro";
mostCurrent._lb_brightness.setText(BA.ObjectToCharSequence(mostCurrent._vvvvvvvvvvvvvvvv7._vvv1 /*String*/ (mostCurrent.activityBA,(int) (354))+" : "+BA.NumberToString(anywheresoftware.b4a.keywords.Common.Round((anywheresoftware.b4a.keywords.Common.Max(_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv7,0)*100)/(double)250))+" %"));
 //BA.debugLineNum = 931;BA.debugLine="DrawValue_Brightness(Round((Max(Brightness,0)";
_drawvalue_brightness((float) (anywheresoftware.b4a.keywords.Common.Round((anywheresoftware.b4a.keywords.Common.Max(_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv7,0)*100)/(double)250)));
 }else {
 //BA.debugLineNum = 933;BA.debugLine="Brightness = Min(Brightness,250)";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv7 = (int) (anywheresoftware.b4a.keywords.Common.Min(_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv7,250));
 //BA.debugLineNum = 934;BA.debugLine="Brightness = Brightness + 10";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv7 = (int) (_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv7+10);
 //BA.debugLineNum = 935;BA.debugLine="screenBrightness(Min(Brightness,250))";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv2((float) (anywheresoftware.b4a.keywords.Common.Min(_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv7,250)));
 //BA.debugLineNum = 936;BA.debugLine="lb_Brightness.Text = func.gland(354)&\" : \"&Ro";
mostCurrent._lb_brightness.setText(BA.ObjectToCharSequence(mostCurrent._vvvvvvvvvvvvvvvv7._vvv1 /*String*/ (mostCurrent.activityBA,(int) (354))+" : "+BA.NumberToString(anywheresoftware.b4a.keywords.Common.Round((anywheresoftware.b4a.keywords.Common.Min(_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv7,250)*100)/(double)250))+" %"));
 //BA.debugLineNum = 937;BA.debugLine="DrawValue_Brightness(Round((Min(Brightness,25";
_drawvalue_brightness((float) (anywheresoftware.b4a.keywords.Common.Round((anywheresoftware.b4a.keywords.Common.Min(_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv7,250)*100)/(double)250)));
 };
 };
 };
 //BA.debugLineNum = 943;BA.debugLine="mLastScrollY = e12_getY";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv1 = _e12_gety;
 //BA.debugLineNum = 944;BA.debugLine="mLastScrollX = e12_getX";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv0 = (int) (_e12_getx);
 };
 //BA.debugLineNum = 948;BA.debugLine="End Sub";
return "";
}
public static String  _gesture_onsingletapconfirmed(float _x,float _y,Object _motionevent) throws Exception{
 //BA.debugLineNum = 744;BA.debugLine="Sub Gesture_onSingleTapConfirmed(X As Float, Y As";
 //BA.debugLineNum = 746;BA.debugLine="If bol_lock = True Then";
if (_bol_lock==anywheresoftware.b4a.keywords.Common.True) { 
 //BA.debugLineNum = 748;BA.debugLine="If show_or_hide = True Then";
if (_show_or_hide==anywheresoftware.b4a.keywords.Common.True) { 
 //BA.debugLineNum = 749;BA.debugLine="lb_lock_release.Visible = True";
mostCurrent._lb_lock_release.setVisible(anywheresoftware.b4a.keywords.Common.True);
 //BA.debugLineNum = 750;BA.debugLine="show_or_hide = False";
_show_or_hide = anywheresoftware.b4a.keywords.Common.False;
 }else {
 //BA.debugLineNum = 752;BA.debugLine="lb_lock_release.Visible = False";
mostCurrent._lb_lock_release.setVisible(anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 753;BA.debugLine="show_or_hide = True";
_show_or_hide = anywheresoftware.b4a.keywords.Common.True;
 };
 }else {
 //BA.debugLineNum = 758;BA.debugLine="If show_or_hide = True Then";
if (_show_or_hide==anywheresoftware.b4a.keywords.Common.True) { 
 //BA.debugLineNum = 759;BA.debugLine="show_controller(False)";
_show_controller(anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 760;BA.debugLine="ActionBar.Visible = False";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.setVisible(anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 761;BA.debugLine="lb_lock.Visible = False";
mostCurrent._lb_lock.setVisible(anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 762;BA.debugLine="L_Speed2.Visible = False";
mostCurrent._l_speed2.setVisible(anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 763;BA.debugLine="visLab(labDl,False)";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv5(mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv4,anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 764;BA.debugLine="visLab(labShare,False)";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv5(mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv3,anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 765;BA.debugLine="show_or_hide = False";
_show_or_hide = anywheresoftware.b4a.keywords.Common.False;
 }else {
 //BA.debugLineNum = 767;BA.debugLine="show_controller(True)";
_show_controller(anywheresoftware.b4a.keywords.Common.True);
 //BA.debugLineNum = 768;BA.debugLine="ActionBar.Visible = True";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.setVisible(anywheresoftware.b4a.keywords.Common.True);
 //BA.debugLineNum = 769;BA.debugLine="lb_lock.Visible = True";
mostCurrent._lb_lock.setVisible(anywheresoftware.b4a.keywords.Common.True);
 //BA.debugLineNum = 770;BA.debugLine="L_Speed2.Visible = True";
mostCurrent._l_speed2.setVisible(anywheresoftware.b4a.keywords.Common.True);
 //BA.debugLineNum = 771;BA.debugLine="visLab(labDl,True)";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv5(mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv4,anywheresoftware.b4a.keywords.Common.True);
 //BA.debugLineNum = 772;BA.debugLine="visLab(labShare,True)";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv5(mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv3,anywheresoftware.b4a.keywords.Common.True);
 //BA.debugLineNum = 773;BA.debugLine="show_or_hide = True";
_show_or_hide = anywheresoftware.b4a.keywords.Common.True;
 };
 };
 //BA.debugLineNum = 778;BA.debugLine="End Sub";
return "";
}
public static boolean  _gesture_ontouch(int _action,float _x,float _y,Object _motionevent) throws Exception{
 //BA.debugLineNum = 779;BA.debugLine="Sub Gesture_onTouch(Action As Int, X As Float, Y A";
 //BA.debugLineNum = 781;BA.debugLine="If bol_lock = False Then";
if (_bol_lock==anywheresoftware.b4a.keywords.Common.False) { 
 //BA.debugLineNum = 783;BA.debugLine="Select Action";
switch (BA.switchObjectToInt(_action,mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv0.ACTION_MOVE,mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv0.ACTION_UP)) {
case 0: {
 //BA.debugLineNum = 787;BA.debugLine="If bol_der_right_left = True Then";
if (_bol_der_right_left==anywheresoftware.b4a.keywords.Common.True) { 
 //BA.debugLineNum = 788;BA.debugLine="If show_or_hide = False Then";
if (_show_or_hide==anywheresoftware.b4a.keywords.Common.False) { 
 //BA.debugLineNum = 789;BA.debugLine="show_controller(True)";
_show_controller(anywheresoftware.b4a.keywords.Common.True);
 //BA.debugLineNum = 790;BA.debugLine="ActionBar.Visible = True";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.setVisible(anywheresoftware.b4a.keywords.Common.True);
 //BA.debugLineNum = 791;BA.debugLine="lb_lock.Visible = True";
mostCurrent._lb_lock.setVisible(anywheresoftware.b4a.keywords.Common.True);
 //BA.debugLineNum = 792;BA.debugLine="L_Speed2.Visible = True";
mostCurrent._l_speed2.setVisible(anywheresoftware.b4a.keywords.Common.True);
 //BA.debugLineNum = 793;BA.debugLine="visLab(labDl,True)";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv5(mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv4,anywheresoftware.b4a.keywords.Common.True);
 //BA.debugLineNum = 794;BA.debugLine="visLab(labShare,True)";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv5(mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv3,anywheresoftware.b4a.keywords.Common.True);
 //BA.debugLineNum = 795;BA.debugLine="show_or_hide = True";
_show_or_hide = anywheresoftware.b4a.keywords.Common.True;
 };
 };
 //BA.debugLineNum = 799;BA.debugLine="If bol1 = True Then";
if (_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv6==anywheresoftware.b4a.keywords.Common.True) { 
 //BA.debugLineNum = 800;BA.debugLine="If bol_Volume = True Then";
if (_bol_volume==anywheresoftware.b4a.keywords.Common.True) { 
 //BA.debugLineNum = 801;BA.debugLine="lb_Volume.Visible = True";
mostCurrent._lb_volume.setVisible(anywheresoftware.b4a.keywords.Common.True);
 //BA.debugLineNum = 802;BA.debugLine="p_Volume.Visible = True";
mostCurrent._p_volume.setVisible(anywheresoftware.b4a.keywords.Common.True);
 }else if(_bol_brightness==anywheresoftware.b4a.keywords.Common.True) { 
 //BA.debugLineNum = 804;BA.debugLine="lb_Brightness.Visible = True";
mostCurrent._lb_brightness.setVisible(anywheresoftware.b4a.keywords.Common.True);
 //BA.debugLineNum = 805;BA.debugLine="p_Brightness.Visible = True";
mostCurrent._p_brightness.setVisible(anywheresoftware.b4a.keywords.Common.True);
 }else if(_bol_der_right_left==anywheresoftware.b4a.keywords.Common.True) { 
 //BA.debugLineNum = 807;BA.debugLine="lb_time.Visible = True";
mostCurrent._lb_time.setVisible(anywheresoftware.b4a.keywords.Common.True);
 };
 };
 break; }
case 1: {
 //BA.debugLineNum = 813;BA.debugLine="If bol1 = True Then";
if (_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv6==anywheresoftware.b4a.keywords.Common.True) { 
 //BA.debugLineNum = 815;BA.debugLine="bol1 = False";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv6 = anywheresoftware.b4a.keywords.Common.False;
 //BA.debugLineNum = 817;BA.debugLine="bol_Volume = False";
_bol_volume = anywheresoftware.b4a.keywords.Common.False;
 //BA.debugLineNum = 818;BA.debugLine="bol_Brightness = False";
_bol_brightness = anywheresoftware.b4a.keywords.Common.False;
 //BA.debugLineNum = 820;BA.debugLine="bol_der_right_left = False";
_bol_der_right_left = anywheresoftware.b4a.keywords.Common.False;
 //BA.debugLineNum = 822;BA.debugLine="lb_Brightness.SetVisibleAnimated(500,False)";
mostCurrent._lb_brightness.SetVisibleAnimated((int) (500),anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 823;BA.debugLine="lb_Volume.SetVisibleAnimated(500,False)";
mostCurrent._lb_volume.SetVisibleAnimated((int) (500),anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 824;BA.debugLine="p_Volume.SetVisibleAnimated(500,False)";
mostCurrent._p_volume.SetVisibleAnimated((int) (500),anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 825;BA.debugLine="p_Brightness.SetVisibleAnimated(500,False)";
mostCurrent._p_brightness.SetVisibleAnimated((int) (500),anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 826;BA.debugLine="lb_time.SetVisibleAnimated(500,False)";
mostCurrent._lb_time.SetVisibleAnimated((int) (500),anywheresoftware.b4a.keywords.Common.False);
 };
 break; }
}
;
 };
 //BA.debugLineNum = 834;BA.debugLine="Return True";
if (true) return anywheresoftware.b4a.keywords.Common.True;
 //BA.debugLineNum = 836;BA.debugLine="End Sub";
return false;
}
public static double  _vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv7(float _x19,float _y19,float _x29,float _y29) throws Exception{
double _rad = 0;
 //BA.debugLineNum = 1044;BA.debugLine="Sub getAngle(x19 As Float,y19 As Float,x29 As Floa";
 //BA.debugLineNum = 1045;BA.debugLine="Dim rad = ATan2(y19-y29,x29-x19) + 3.1415 As Doub";
_rad = anywheresoftware.b4a.keywords.Common.ATan2(_y19-_y29,_x29-_x19)+3.1415;
 //BA.debugLineNum = 1046;BA.debugLine="Return (rad*180/3.1415 + 180)Mod 360";
if (true) return (_rad*180/(double)3.1415+180)%360;
 //BA.debugLineNum = 1047;BA.debugLine="End Sub";
return 0;
}
public static int  _vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv1() throws Exception{
 //BA.debugLineNum = 558;BA.debugLine="Sub GetHiControlView As Int";
 //BA.debugLineNum = 560;BA.debugLine="Return 10dip";
if (true) return anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (10));
 //BA.debugLineNum = 562;BA.debugLine="End Sub";
return 0;
}
public static int  _vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv3() throws Exception{
anywheresoftware.b4j.object.JavaObject _jo2 = null;
 //BA.debugLineNum = 548;BA.debugLine="Sub GetPlayState As Int";
 //BA.debugLineNum = 553;BA.debugLine="Dim jo2 As JavaObject = player1";
_jo2 = new anywheresoftware.b4j.object.JavaObject();
_jo2 = (anywheresoftware.b4j.object.JavaObject) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4j.object.JavaObject(), (java.lang.Object)(_vvvvvvvv6));
 //BA.debugLineNum = 554;BA.debugLine="jo2 = jo2.GetField(\"player\")";
_jo2 = (anywheresoftware.b4j.object.JavaObject) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4j.object.JavaObject(), (java.lang.Object)(_jo2.GetField("player")));
 //BA.debugLineNum = 555;BA.debugLine="Return jo2.RunMethod(\"getPlaybackState\", Null)";
if (true) return (int)(BA.ObjectToNumber(_jo2.RunMethod("getPlaybackState",(Object[])(anywheresoftware.b4a.keywords.Common.Null))));
 //BA.debugLineNum = 556;BA.debugLine="End Sub";
return 0;
}
public static int  _vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv4(boolean _bol_left) throws Exception{
anywheresoftware.b4a.objects.drawable.CanvasWrapper _asdasd = null;
 //BA.debugLineNum = 681;BA.debugLine="Sub GetRLSeekbarView(bol_left As Boolean) As Int '";
 //BA.debugLineNum = 683;BA.debugLine="Dim asdasd As Canvas";
_asdasd = new anywheresoftware.b4a.objects.drawable.CanvasWrapper();
 //BA.debugLineNum = 684;BA.debugLine="asdasd.Initialize(Activity)";
_asdasd.Initialize((android.view.View)(mostCurrent._activity.getObject()));
 //BA.debugLineNum = 686;BA.debugLine="If bol_left = True Then";
if (_bol_left==anywheresoftware.b4a.keywords.Common.True) { 
 //BA.debugLineNum = 687;BA.debugLine="Return asdasd.MeasureStringWidth(func.ConvertMil";
if (true) return (int) (_asdasd.MeasureStringWidth(mostCurrent._vvvvvvvvvvvvvvvv7._vv2 /*String*/ (mostCurrent.activityBA,_vvvvvvvv6.getPosition()),anywheresoftware.b4a.keywords.Common.Typeface.DEFAULT_BOLD,(float) (14))+anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (8)));
 }else {
 //BA.debugLineNum = 689;BA.debugLine="Return asdasd.MeasureStringWidth(func.ConvertMil";
if (true) return (int) (_asdasd.MeasureStringWidth(mostCurrent._vvvvvvvvvvvvvvvv7._vv2 /*String*/ (mostCurrent.activityBA,_vvvvvvvv6.getDuration()),anywheresoftware.b4a.keywords.Common.Typeface.DEFAULT_BOLD,(float) (14))+anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (8)));
 };
 //BA.debugLineNum = 692;BA.debugLine="End Sub";
return 0;
}
public static String  _globals() throws Exception{
 //BA.debugLineNum = 16;BA.debugLine="Sub Globals";
 //BA.debugLineNum = 17;BA.debugLine="Dim int_play_time As Int";
_int_play_time = 0;
 //BA.debugLineNum = 19;BA.debugLine="Dim GD As GestureDetector";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv0 = new flm.b4a.gesturedetector.GestureDetectorForB4A();
 //BA.debugLineNum = 21;BA.debugLine="Dim SimpleExoPlayerView1 As SimpleExoPlayerView";
mostCurrent._simpleexoplayerview1 = new anywheresoftware.b4a.objects.SimpleExoPlayerViewWrapper();
 //BA.debugLineNum = 23;BA.debugLine="Dim show_or_hide As Boolean = True";
_show_or_hide = anywheresoftware.b4a.keywords.Common.True;
 //BA.debugLineNum = 25;BA.debugLine="Dim ActionBar As Panel";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv2 = new anywheresoftware.b4a.objects.PanelWrapper();
 //BA.debugLineNum = 26;BA.debugLine="Dim  lb_onvan , lb_close As Label";
mostCurrent._lb_onvan = new anywheresoftware.b4a.objects.LabelWrapper();
mostCurrent._lb_close = new anywheresoftware.b4a.objects.LabelWrapper();
 //BA.debugLineNum = 28;BA.debugLine="Dim Volume As Int";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv6 = 0;
 //BA.debugLineNum = 29;BA.debugLine="Dim Brightness As Int";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv7 = 0;
 //BA.debugLineNum = 30;BA.debugLine="Dim pho_Volume As Phone";
mostCurrent._pho_volume = new anywheresoftware.b4a.phone.Phone();
 //BA.debugLineNum = 31;BA.debugLine="Dim pho_Brightness As Phone";
mostCurrent._pho_brightness = new anywheresoftware.b4a.phone.Phone();
 //BA.debugLineNum = 32;BA.debugLine="Dim lb_Volume As Label";
mostCurrent._lb_volume = new anywheresoftware.b4a.objects.LabelWrapper();
 //BA.debugLineNum = 33;BA.debugLine="Dim lb_Brightness As Label";
mostCurrent._lb_brightness = new anywheresoftware.b4a.objects.LabelWrapper();
 //BA.debugLineNum = 34;BA.debugLine="Dim lb_time As Label";
mostCurrent._lb_time = new anywheresoftware.b4a.objects.LabelWrapper();
 //BA.debugLineNum = 36;BA.debugLine="Dim bol1 As Boolean = False";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv6 = anywheresoftware.b4a.keywords.Common.False;
 //BA.debugLineNum = 38;BA.debugLine="Dim img_logo As ImageView";
mostCurrent._img_logo = new anywheresoftware.b4a.objects.ImageViewWrapper();
 //BA.debugLineNum = 40;BA.debugLine="Dim p_setBrightness As Phone";
mostCurrent._p_setbrightness = new anywheresoftware.b4a.phone.Phone();
 //BA.debugLineNum = 42;BA.debugLine="Dim LVCircularRing1 As RotateLoading";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv0 = new rotateloadingwrapper.rotateLoadingWrapper();
 //BA.debugLineNum = 45;BA.debugLine="Dim wake As PhoneWakeState";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv6 = new anywheresoftware.b4a.phone.Phone.PhoneWakeState();
 //BA.debugLineNum = 47;BA.debugLine="Dim lb_lock As Label";
mostCurrent._lb_lock = new anywheresoftware.b4a.objects.LabelWrapper();
 //BA.debugLineNum = 48;BA.debugLine="Dim lb_lock_release As Label";
mostCurrent._lb_lock_release = new anywheresoftware.b4a.objects.LabelWrapper();
 //BA.debugLineNum = 49;BA.debugLine="Dim bol_lock As Boolean = False";
_bol_lock = anywheresoftware.b4a.keywords.Common.False;
 //BA.debugLineNum = 51;BA.debugLine="Dim p_paly As Panel";
mostCurrent._p_paly = new anywheresoftware.b4a.objects.PanelWrapper();
 //BA.debugLineNum = 52;BA.debugLine="Dim img_play As Label";
mostCurrent._img_play = new anywheresoftware.b4a.objects.LabelWrapper();
 //BA.debugLineNum = 53;BA.debugLine="Dim img_pause As Label";
mostCurrent._img_pause = new anywheresoftware.b4a.objects.LabelWrapper();
 //BA.debugLineNum = 54;BA.debugLine="Dim L_Speed2 As Label";
mostCurrent._l_speed2 = new anywheresoftware.b4a.objects.LabelWrapper();
 //BA.debugLineNum = 56;BA.debugLine="Dim p_Volume As Panel";
mostCurrent._p_volume = new anywheresoftware.b4a.objects.PanelWrapper();
 //BA.debugLineNum = 57;BA.debugLine="Dim lb_kamel_Volume As Label";
mostCurrent._lb_kamel_volume = new anywheresoftware.b4a.objects.LabelWrapper();
 //BA.debugLineNum = 58;BA.debugLine="Dim lb_border_Volume As Label";
mostCurrent._lb_border_volume = new anywheresoftware.b4a.objects.LabelWrapper();
 //BA.debugLineNum = 59;BA.debugLine="Dim cvs_Volume As B4XCanvas";
mostCurrent._cvs_volume = new anywheresoftware.b4a.objects.B4XCanvas();
 //BA.debugLineNum = 61;BA.debugLine="Dim p_Brightness As Panel";
mostCurrent._p_brightness = new anywheresoftware.b4a.objects.PanelWrapper();
 //BA.debugLineNum = 62;BA.debugLine="Dim lb_kamel_Brightness As Label";
mostCurrent._lb_kamel_brightness = new anywheresoftware.b4a.objects.LabelWrapper();
 //BA.debugLineNum = 63;BA.debugLine="Dim lb_border_Brightness As Label";
mostCurrent._lb_border_brightness = new anywheresoftware.b4a.objects.LabelWrapper();
 //BA.debugLineNum = 64;BA.debugLine="Dim cvs_Brightness As B4XCanvas";
mostCurrent._cvs_brightness = new anywheresoftware.b4a.objects.B4XCanvas();
 //BA.debugLineNum = 66;BA.debugLine="Dim p_preview As Panel";
mostCurrent._p_preview = new anywheresoftware.b4a.objects.PanelWrapper();
 //BA.debugLineNum = 67;BA.debugLine="Dim img_preview As ImageView";
mostCurrent._img_preview = new anywheresoftware.b4a.objects.ImageViewWrapper();
 //BA.debugLineNum = 69;BA.debugLine="Dim bol_der_right_left As Boolean = False";
_bol_der_right_left = anywheresoftware.b4a.keywords.Common.False;
 //BA.debugLineNum = 70;BA.debugLine="Dim bol_Brightness As Boolean = False";
_bol_brightness = anywheresoftware.b4a.keywords.Common.False;
 //BA.debugLineNum = 71;BA.debugLine="Dim bol_Volume As Boolean = False";
_bol_volume = anywheresoftware.b4a.keywords.Common.False;
 //BA.debugLineNum = 73;BA.debugLine="Dim mLastScrollY As Int = 0";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv1 = (int) (0);
 //BA.debugLineNum = 74;BA.debugLine="Dim mLastScrollX As Int = 0";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv0 = (int) (0);
 //BA.debugLineNum = 76;BA.debugLine="Dim p_next_dubble As Panel";
mostCurrent._p_next_dubble = new anywheresoftware.b4a.objects.PanelWrapper();
 //BA.debugLineNum = 77;BA.debugLine="Dim p_back_dubble As Panel";
mostCurrent._p_back_dubble = new anywheresoftware.b4a.objects.PanelWrapper();
 //BA.debugLineNum = 79;BA.debugLine="Dim img_next_dubble1 As ImageView";
mostCurrent._img_next_dubble1 = new anywheresoftware.b4a.objects.ImageViewWrapper();
 //BA.debugLineNum = 80;BA.debugLine="Dim img_next_dubble12 As ImageView";
mostCurrent._img_next_dubble12 = new anywheresoftware.b4a.objects.ImageViewWrapper();
 //BA.debugLineNum = 81;BA.debugLine="Dim img_next_dubble13 As ImageView";
mostCurrent._img_next_dubble13 = new anywheresoftware.b4a.objects.ImageViewWrapper();
 //BA.debugLineNum = 83;BA.debugLine="Dim img_back_dubble1 As ImageView";
mostCurrent._img_back_dubble1 = new anywheresoftware.b4a.objects.ImageViewWrapper();
 //BA.debugLineNum = 84;BA.debugLine="Dim img_back_dubble12 As ImageView";
mostCurrent._img_back_dubble12 = new anywheresoftware.b4a.objects.ImageViewWrapper();
 //BA.debugLineNum = 85;BA.debugLine="Dim img_back_dubble13 As ImageView";
mostCurrent._img_back_dubble13 = new anywheresoftware.b4a.objects.ImageViewWrapper();
 //BA.debugLineNum = 87;BA.debugLine="Dim urlAll As String";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv3 = "";
 //BA.debugLineNum = 89;BA.debugLine="Dim speedSound As Float = 1";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvv6 = (float) (1);
 //BA.debugLineNum = 91;BA.debugLine="Dim labShare As Label";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv3 = new anywheresoftware.b4a.objects.LabelWrapper();
 //BA.debugLineNum = 92;BA.debugLine="Dim labDl 	 As Label";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv4 = new anywheresoftware.b4a.objects.LabelWrapper();
 //BA.debugLineNum = 94;BA.debugLine="Dim idDs As String";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv5 = "";
 //BA.debugLineNum = 95;BA.debugLine="Dim sName As String";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv4 = "";
 //BA.debugLineNum = 97;BA.debugLine="End Sub";
return "";
}
public static boolean  _vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv5(double _angle,float _init,float _end11) throws Exception{
 //BA.debugLineNum = 1048;BA.debugLine="Sub inRange (angle As Double,init As Float,end11 A";
 //BA.debugLineNum = 1049;BA.debugLine="If (angle >= init) Then";
if ((_angle>=_init)) { 
 //BA.debugLineNum = 1050;BA.debugLine="If (angle < end11) Then";
if ((_angle<_end11)) { 
 //BA.debugLineNum = 1051;BA.debugLine="Return True";
if (true) return anywheresoftware.b4a.keywords.Common.True;
 }else {
 //BA.debugLineNum = 1053;BA.debugLine="Return False";
if (true) return anywheresoftware.b4a.keywords.Common.False;
 };
 }else {
 //BA.debugLineNum = 1056;BA.debugLine="Return False";
if (true) return anywheresoftware.b4a.keywords.Common.False;
 };
 //BA.debugLineNum = 1058;BA.debugLine="End Sub";
return false;
}
public static String  _l_speed2_click() throws Exception{
 //BA.debugLineNum = 578;BA.debugLine="Private Sub L_Speed2_Click";
 //BA.debugLineNum = 580;BA.debugLine="If speedSound = 1 Then";
if (_vvvvvvvvvvvvvvvvvvvvvvvvvvvv6==1) { 
 //BA.debugLineNum = 581;BA.debugLine="speedSound = 1.125";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvv6 = (float) (1.125);
 //BA.debugLineNum = 582;BA.debugLine="L_Speed2.Text=\"1.15X\"";
mostCurrent._l_speed2.setText(BA.ObjectToCharSequence("1.15X"));
 }else if(_vvvvvvvvvvvvvvvvvvvvvvvvvvvv6==1.125) { 
 //BA.debugLineNum = 584;BA.debugLine="speedSound = 1.25";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvv6 = (float) (1.25);
 //BA.debugLineNum = 585;BA.debugLine="L_Speed2.Text=\"1.25X\"";
mostCurrent._l_speed2.setText(BA.ObjectToCharSequence("1.25X"));
 }else if(_vvvvvvvvvvvvvvvvvvvvvvvvvvvv6==1.25) { 
 //BA.debugLineNum = 587;BA.debugLine="speedSound = 1.5";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvv6 = (float) (1.5);
 //BA.debugLineNum = 588;BA.debugLine="L_Speed2.Text=\"1.5X\"";
mostCurrent._l_speed2.setText(BA.ObjectToCharSequence("1.5X"));
 }else if(_vvvvvvvvvvvvvvvvvvvvvvvvvvvv6==1.5) { 
 //BA.debugLineNum = 590;BA.debugLine="speedSound = 1.75";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvv6 = (float) (1.75);
 //BA.debugLineNum = 591;BA.debugLine="L_Speed2.Text=\"1.75X\"";
mostCurrent._l_speed2.setText(BA.ObjectToCharSequence("1.75X"));
 }else if(_vvvvvvvvvvvvvvvvvvvvvvvvvvvv6==1.75) { 
 //BA.debugLineNum = 593;BA.debugLine="speedSound = 2";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvv6 = (float) (2);
 //BA.debugLineNum = 594;BA.debugLine="L_Speed2.Text=\"2X\"";
mostCurrent._l_speed2.setText(BA.ObjectToCharSequence("2X"));
 }else if(_vvvvvvvvvvvvvvvvvvvvvvvvvvvv6==2) { 
 //BA.debugLineNum = 596;BA.debugLine="speedSound = 0.75";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvv6 = (float) (0.75);
 //BA.debugLineNum = 597;BA.debugLine="L_Speed2.Text=\"0.75X\"";
mostCurrent._l_speed2.setText(BA.ObjectToCharSequence("0.75X"));
 }else if(_vvvvvvvvvvvvvvvvvvvvvvvvvvvv6==0.75) { 
 //BA.debugLineNum = 599;BA.debugLine="speedSound = 1";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvv6 = (float) (1);
 //BA.debugLineNum = 600;BA.debugLine="L_Speed2.Text=\"1X\"";
mostCurrent._l_speed2.setText(BA.ObjectToCharSequence("1X"));
 };
 //BA.debugLineNum = 603;BA.debugLine="func.MinimomFontLabel(L_Speed2,17)";
mostCurrent._vvvvvvvvvvvvvvvv7._vvvv3 /*String*/ (mostCurrent.activityBA,mostCurrent._l_speed2,(int) (17));
 //BA.debugLineNum = 605;BA.debugLine="ChangeSpeed(speedSound)";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv1(_vvvvvvvvvvvvvvvvvvvvvvvvvvvv6);
 //BA.debugLineNum = 608;BA.debugLine="End Sub";
return "";
}
public static String  _labdl_click() throws Exception{
 //BA.debugLineNum = 1158;BA.debugLine="Sub labDl_Click";
 //BA.debugLineNum = 1160;BA.debugLine="If File.Exists(func.choose2DIR,\"anvarvahy2/sokhan";
if (anywheresoftware.b4a.keywords.Common.File.Exists(mostCurrent._vvvvvvvvvvvvvvvv7._vv1 /*String*/ (mostCurrent.activityBA),"anvarvahy2/sokhan_roz/"+mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv5+"-"+mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv4+".mp4")) { 
 //BA.debugLineNum = 1161;BA.debugLine="func.ToastERROR(func.gland(250))";
mostCurrent._vvvvvvvvvvvvvvvv7._vvvvvvv0 /*String*/ (mostCurrent.activityBA,mostCurrent._vvvvvvvvvvvvvvvv7._vvv1 /*String*/ (mostCurrent.activityBA,(int) (250)));
 }else {
 //BA.debugLineNum = 1164;BA.debugLine="func.savePFM(\"onvanDS\",sName)";
mostCurrent._vvvvvvvvvvvvvvvv7._vvvvv2 /*String*/ (mostCurrent.activityBA,"onvanDS",mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv4);
 //BA.debugLineNum = 1166;BA.debugLine="player1.Pause";
_vvvvvvvv6.Pause();
 //BA.debugLineNum = 1167;BA.debugLine="If img_pause.IsInitialized And img_play.IsInitia";
if (mostCurrent._img_pause.IsInitialized() && mostCurrent._img_play.IsInitialized()) { 
 //BA.debugLineNum = 1168;BA.debugLine="img_pause.Visible = False";
mostCurrent._img_pause.setVisible(anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 1169;BA.debugLine="img_play.Visible = True";
mostCurrent._img_play.setVisible(anywheresoftware.b4a.keywords.Common.True);
 };
 };
 //BA.debugLineNum = 1173;BA.debugLine="End Sub";
return "";
}
public static String  _labshare_click() throws Exception{
de.amberhome.materialdialogs.MaterialDialogBuilderWrapper _builder = null;
 //BA.debugLineNum = 1184;BA.debugLine="Sub labShare_Click";
 //BA.debugLineNum = 1186;BA.debugLine="player1.Pause";
_vvvvvvvv6.Pause();
 //BA.debugLineNum = 1187;BA.debugLine="If img_pause.IsInitialized And img_play.IsInitial";
if (mostCurrent._img_pause.IsInitialized() && mostCurrent._img_play.IsInitialized()) { 
 //BA.debugLineNum = 1188;BA.debugLine="img_pause.Visible = False";
mostCurrent._img_pause.setVisible(anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 1189;BA.debugLine="img_play.Visible = True";
mostCurrent._img_play.setVisible(anywheresoftware.b4a.keywords.Common.True);
 };
 //BA.debugLineNum = 1192;BA.debugLine="Dim Builder As MaterialDialogBuilder";
_builder = new de.amberhome.materialdialogs.MaterialDialogBuilderWrapper();
 //BA.debugLineNum = 1193;BA.debugLine="Builder.Initialize(\"Dialog_type\")";
_builder.Initialize(mostCurrent.activityBA,"Dialog_type");
 //BA.debugLineNum = 1195;BA.debugLine="Builder.Title(func.gland(11))";
_builder.Title(BA.ObjectToCharSequence(mostCurrent._vvvvvvvvvvvvvvvv7._vvv1 /*String*/ (mostCurrent.activityBA,(int) (11))));
 //BA.debugLineNum = 1196;BA.debugLine="Builder.Items(Array As String(func.gland(12), fun";
_builder.Items((java.lang.CharSequence[])(new String[]{mostCurrent._vvvvvvvvvvvvvvvv7._vvv1 /*String*/ (mostCurrent.activityBA,(int) (12)),mostCurrent._vvvvvvvvvvvvvvvv7._vvv1 /*String*/ (mostCurrent.activityBA,(int) (13))}));
 //BA.debugLineNum = 1197;BA.debugLine="Builder.Typeface(Typeface.LoadFromAssets(func.fon";
_builder.Typeface(anywheresoftware.b4a.keywords.Common.Typeface.LoadFromAssets(mostCurrent._vvvvvvvvvvvvvvvv7._vv7 /*String*/ (mostCurrent.activityBA)),anywheresoftware.b4a.keywords.Common.Typeface.LoadFromAssets(mostCurrent._vvvvvvvvvvvvvvvv7._vv7 /*String*/ (mostCurrent.activityBA)));
 //BA.debugLineNum = 1198;BA.debugLine="Builder.ItemsCallback";
_builder.ItemsCallback();
 //BA.debugLineNum = 1199;BA.debugLine="Builder.ItemsGravity(Builder.GRAVITY_START)";
_builder.ItemsGravity(_builder.GRAVITY_START);
 //BA.debugLineNum = 1200;BA.debugLine="Builder.ItemsGravity(Builder.GRAVITY_START)";
_builder.ItemsGravity(_builder.GRAVITY_START);
 //BA.debugLineNum = 1201;BA.debugLine="Builder.Show";
_builder.Show();
 //BA.debugLineNum = 1203;BA.debugLine="End Sub";
return "";
}
public static String  _lb_close_click() throws Exception{
 //BA.debugLineNum = 1152;BA.debugLine="Sub lb_close_Click";
 //BA.debugLineNum = 1153;BA.debugLine="If bol_lock = False Then";
if (_bol_lock==anywheresoftware.b4a.keywords.Common.False) { 
 //BA.debugLineNum = 1154;BA.debugLine="exit_ppplayer(True)";
_exit_ppplayer(anywheresoftware.b4a.keywords.Common.True);
 };
 //BA.debugLineNum = 1156;BA.debugLine="End Sub";
return "";
}
public static String  _lb_lock_click() throws Exception{
 //BA.debugLineNum = 700;BA.debugLine="Sub lb_lock_Click";
 //BA.debugLineNum = 702;BA.debugLine="show_controller(False)";
_show_controller(anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 704;BA.debugLine="bol_lock = True";
_bol_lock = anywheresoftware.b4a.keywords.Common.True;
 //BA.debugLineNum = 706;BA.debugLine="lb_lock_release.Visible = True";
mostCurrent._lb_lock_release.setVisible(anywheresoftware.b4a.keywords.Common.True);
 //BA.debugLineNum = 708;BA.debugLine="ActionBar.Visible = False";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.setVisible(anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 709;BA.debugLine="lb_lock.Visible = False";
mostCurrent._lb_lock.setVisible(anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 710;BA.debugLine="L_Speed2.Visible = False";
mostCurrent._l_speed2.setVisible(anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 711;BA.debugLine="visLab(labDl,False)";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv5(mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv4,anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 712;BA.debugLine="visLab(labShare,False)";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv5(mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv3,anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 713;BA.debugLine="p_paly.Visible = False";
mostCurrent._p_paly.setVisible(anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 714;BA.debugLine="show_or_hide = False";
_show_or_hide = anywheresoftware.b4a.keywords.Common.False;
 //BA.debugLineNum = 716;BA.debugLine="lb_lock_release.Top = lb_lock_release.Top - Statu";
mostCurrent._lb_lock_release.setTop((int) (mostCurrent._lb_lock_release.getTop()-_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv7()));
 //BA.debugLineNum = 718;BA.debugLine="End Sub";
return "";
}
public static String  _lb_lock_release_click() throws Exception{
 //BA.debugLineNum = 719;BA.debugLine="Sub lb_lock_release_Click";
 //BA.debugLineNum = 721;BA.debugLine="show_controller(True)";
_show_controller(anywheresoftware.b4a.keywords.Common.True);
 //BA.debugLineNum = 723;BA.debugLine="bol_lock = False";
_bol_lock = anywheresoftware.b4a.keywords.Common.False;
 //BA.debugLineNum = 725;BA.debugLine="lb_lock_release.Visible = False";
mostCurrent._lb_lock_release.setVisible(anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 727;BA.debugLine="ActionBar.Visible = True";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.setVisible(anywheresoftware.b4a.keywords.Common.True);
 //BA.debugLineNum = 728;BA.debugLine="lb_lock.Visible = True";
mostCurrent._lb_lock.setVisible(anywheresoftware.b4a.keywords.Common.True);
 //BA.debugLineNum = 729;BA.debugLine="L_Speed2.Visible = True";
mostCurrent._l_speed2.setVisible(anywheresoftware.b4a.keywords.Common.True);
 //BA.debugLineNum = 730;BA.debugLine="visLab(labDl,True)";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv5(mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv4,anywheresoftware.b4a.keywords.Common.True);
 //BA.debugLineNum = 731;BA.debugLine="visLab(labShare,True)";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv5(mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv3,anywheresoftware.b4a.keywords.Common.True);
 //BA.debugLineNum = 732;BA.debugLine="p_paly.Visible = True";
mostCurrent._p_paly.setVisible(anywheresoftware.b4a.keywords.Common.True);
 //BA.debugLineNum = 733;BA.debugLine="show_or_hide = True";
_show_or_hide = anywheresoftware.b4a.keywords.Common.True;
 //BA.debugLineNum = 735;BA.debugLine="lb_lock_release.Top = lb_lock_release.Top + Statu";
mostCurrent._lb_lock_release.setTop((int) (mostCurrent._lb_lock_release.getTop()+_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv7()));
 //BA.debugLineNum = 737;BA.debugLine="End Sub";
return "";
}
public static String  _p_paly_click() throws Exception{
 //BA.debugLineNum = 465;BA.debugLine="Sub p_paly_Click";
 //BA.debugLineNum = 466;BA.debugLine="If img_pause.Visible Then";
if (mostCurrent._img_pause.getVisible()) { 
 //BA.debugLineNum = 467;BA.debugLine="player1.Pause";
_vvvvvvvv6.Pause();
 //BA.debugLineNum = 468;BA.debugLine="If timer_play_time.IsInitialized And timer_play_";
if (_timer_play_time.IsInitialized() && _timer_play_time.getEnabled()) { 
_timer_play_time.setEnabled(anywheresoftware.b4a.keywords.Common.False);};
 }else {
 //BA.debugLineNum = 470;BA.debugLine="player1.Play";
_vvvvvvvv6.Play();
 };
 //BA.debugLineNum = 472;BA.debugLine="End Sub";
return "";
}
public static String  _player_complete() throws Exception{
 //BA.debugLineNum = 483;BA.debugLine="Sub Player_Complete";
 //BA.debugLineNum = 484;BA.debugLine="Log(\"complete\")";
anywheresoftware.b4a.keywords.Common.LogImpl("347316993","complete",0);
 //BA.debugLineNum = 485;BA.debugLine="If img_pause.IsInitialized And img_play.IsInitial";
if (mostCurrent._img_pause.IsInitialized() && mostCurrent._img_play.IsInitialized()) { 
 //BA.debugLineNum = 486;BA.debugLine="player1.Position = 0";
_vvvvvvvv6.setPosition((int) (0));
 //BA.debugLineNum = 487;BA.debugLine="img_pause.Visible = False";
mostCurrent._img_pause.setVisible(anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 488;BA.debugLine="img_play.Visible = True";
mostCurrent._img_play.setVisible(anywheresoftware.b4a.keywords.Common.True);
 //BA.debugLineNum = 489;BA.debugLine="player1.Pause";
_vvvvvvvv6.Pause();
 };
 //BA.debugLineNum = 491;BA.debugLine="End Sub";
return "";
}
public static String  _player_error(String _message) throws Exception{
 //BA.debugLineNum = 478;BA.debugLine="Sub Player_Error (Message As String)";
 //BA.debugLineNum = 479;BA.debugLine="Log(\"Error: \" & Message)";
anywheresoftware.b4a.keywords.Common.LogImpl("347251457","Error: "+_message,0);
 //BA.debugLineNum = 480;BA.debugLine="exit_ppplayer(False)";
_exit_ppplayer(anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 481;BA.debugLine="func.ToastERROR(func.gland(175))";
mostCurrent._vvvvvvvvvvvvvvvv7._vvvvvvv0 /*String*/ (mostCurrent.activityBA,mostCurrent._vvvvvvvvvvvvvvvv7._vvv1 /*String*/ (mostCurrent.activityBA,(int) (175)));
 //BA.debugLineNum = 482;BA.debugLine="End Sub";
return "";
}
public static String  _player_ready() throws Exception{
 //BA.debugLineNum = 474;BA.debugLine="Sub Player_Ready";
 //BA.debugLineNum = 475;BA.debugLine="SimpleExoPlayerView1.UseController = True";
mostCurrent._simpleexoplayerview1.setUseController(anywheresoftware.b4a.keywords.Common.True);
 //BA.debugLineNum = 476;BA.debugLine="show_controller(True)";
_show_controller(anywheresoftware.b4a.keywords.Common.True);
 //BA.debugLineNum = 477;BA.debugLine="End Sub";
return "";
}
public static String  _process_globals() throws Exception{
 //BA.debugLineNum = 6;BA.debugLine="Sub Process_Globals";
 //BA.debugLineNum = 8;BA.debugLine="Dim player1 As SimpleExoPlayer";
_vvvvvvvv6 = new anywheresoftware.b4a.objects.SimpleExoPlayerWrapper();
 //BA.debugLineNum = 10;BA.debugLine="Dim doubleTapDelay As Timer";
_vvvvvvvv7 = new anywheresoftware.b4a.objects.Timer();
 //BA.debugLineNum = 12;BA.debugLine="Dim timer_play_time As Timer";
_timer_play_time = new anywheresoftware.b4a.objects.Timer();
 //BA.debugLineNum = 14;BA.debugLine="End Sub";
return "";
}
public static String  _vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv2(float _brightnessint) throws Exception{
 //BA.debugLineNum = 1080;BA.debugLine="Sub screenBrightness(brightnessInt As Float)";
 //BA.debugLineNum = 1081;BA.debugLine="p_setBrightness.SetScreenBrightness(brightnessInt";
mostCurrent._p_setbrightness.SetScreenBrightness(processBA,(float) (_brightnessint/(double)250));
 //BA.debugLineNum = 1082;BA.debugLine="End Sub";
return "";
}
public static Object  _scrub_event(String _methodname,Object[] _args) throws Exception{
long _position = 0L;
int _targetx = 0;
 //BA.debugLineNum = 630;BA.debugLine="Sub Scrub_Event (MethodName As String, Args() As O";
 //BA.debugLineNum = 631;BA.debugLine="Select MethodName";
switch (BA.switchObjectToInt(_methodname,"onScrubMove","onScrubStop","onScrubStart")) {
case 0: {
 //BA.debugLineNum = 634;BA.debugLine="Dim position As Long = Args(1)";
_position = BA.ObjectToLongNumber(_args[(int) (1)]);
 //BA.debugLineNum = 635;BA.debugLine="p_preview.Visible = True";
mostCurrent._p_preview.setVisible(anywheresoftware.b4a.keywords.Common.True);
 //BA.debugLineNum = 636;BA.debugLine="Dim targetX As Int = updatePreviewX(position,pl";
_targetx = _vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv5((int) (_position),(int) (_vvvvvvvv6.getDuration()));
 //BA.debugLineNum = 637;BA.debugLine="p_preview.Left = targetX";
mostCurrent._p_preview.setLeft(_targetx);
 //BA.debugLineNum = 639;BA.debugLine="lb_time.Visible = True";
mostCurrent._lb_time.setVisible(anywheresoftware.b4a.keywords.Common.True);
 //BA.debugLineNum = 640;BA.debugLine="lb_time.Text = func.ConvertMillisecondsToString";
mostCurrent._lb_time.setText(BA.ObjectToCharSequence(mostCurrent._vvvvvvvvvvvvvvvv7._vv2 /*String*/ (mostCurrent.activityBA,_position)));
 break; }
case 1: {
 //BA.debugLineNum = 643;BA.debugLine="p_preview.Visible = False";
mostCurrent._p_preview.setVisible(anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 645;BA.debugLine="lb_time.SetVisibleAnimated(500,False)";
mostCurrent._lb_time.SetVisibleAnimated((int) (500),anywheresoftware.b4a.keywords.Common.False);
 break; }
case 2: {
 break; }
}
;
 //BA.debugLineNum = 650;BA.debugLine="Return False";
if (true) return (Object)(anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 651;BA.debugLine="End Sub";
return null;
}
public static String  _vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv2() throws Exception{
 //BA.debugLineNum = 1225;BA.debugLine="Sub shareFiles";
 //BA.debugLineNum = 1227;BA.debugLine="If File.Exists(func.choose2DIR,\"anvarvahy2/sokhan";
if (anywheresoftware.b4a.keywords.Common.File.Exists(mostCurrent._vvvvvvvvvvvvvvvv7._vv1 /*String*/ (mostCurrent.activityBA),"anvarvahy2/sokhan_roz/"+mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv5+"-"+mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv4+".mp4")) { 
 //BA.debugLineNum = 1228;BA.debugLine="ShareMultipleFiles";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv6();
 }else {
 //BA.debugLineNum = 1230;BA.debugLine="func.ToastERROR(func.gland(338))";
mostCurrent._vvvvvvvvvvvvvvvv7._vvvvvvv0 /*String*/ (mostCurrent.activityBA,mostCurrent._vvvvvvvvvvvvvvvv7._vvv1 /*String*/ (mostCurrent.activityBA,(int) (338)));
 };
 //BA.debugLineNum = 1233;BA.debugLine="End Sub";
return "";
}
public static String  _vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv3() throws Exception{
String _smatn = "";
String _smatn2 = "";
 //BA.debugLineNum = 1215;BA.debugLine="Sub shareLinks";
 //BA.debugLineNum = 1217;BA.debugLine="Dim Smatn  As String = func.gland(331)&CRLF&CRLF";
_smatn = mostCurrent._vvvvvvvvvvvvvvvv7._vvv1 /*String*/ (mostCurrent.activityBA,(int) (331))+anywheresoftware.b4a.keywords.Common.CRLF+anywheresoftware.b4a.keywords.Common.CRLF+BA.ObjectToString(mostCurrent._vvvvvvvvvvvvvvvv7._vvvvvvv2 /*anywheresoftware.b4a.agraham.richstring.RichStringBuilder.RichString*/ (mostCurrent.activityBA,mostCurrent._vvvvvvvvvvvvvvvv7._vvvv0 /*String*/ (mostCurrent.activityBA,"titleDs"),"Ꞅ"));
 //BA.debugLineNum = 1218;BA.debugLine="Dim smatn2 As String = CRLF&CRLF&\"https://anvarva";
_smatn2 = anywheresoftware.b4a.keywords.Common.CRLF+anywheresoftware.b4a.keywords.Common.CRLF+"https://anvarvahy.com/appref?day="+mostCurrent._vvvvvvvvvvvvvvvv7._vvvv0 /*String*/ (mostCurrent.activityBA,"idDs")+"&types="+mostCurrent._vvvvvvvvvvvvvvvv7._vvvv0 /*String*/ (mostCurrent.activityBA,"typeDs");
 //BA.debugLineNum = 1220;BA.debugLine="func.TextShare(func.PersianNumbers(\"‌\"&CRLF&Smatn";
mostCurrent._vvvvvvvvvvvvvvvv7._vvvvvvv7 /*String*/ (mostCurrent.activityBA,mostCurrent._vvvvvvvvvvvvvvvv7._vvvv5 /*String*/ (mostCurrent.activityBA,"‌"+anywheresoftware.b4a.keywords.Common.CRLF+_smatn)+_smatn2);
 //BA.debugLineNum = 1222;BA.debugLine="End Sub";
return "";
}
public static String  _vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv6() throws Exception{
anywheresoftware.b4a.objects.IntentWrapper _in = null;
 //BA.debugLineNum = 1236;BA.debugLine="Sub ShareMultipleFiles";
 //BA.debugLineNum = 1238;BA.debugLine="Try";
try { //BA.debugLineNum = 1239;BA.debugLine="File.copy(func.choose2DIR,\"anvarvahy2/sokhan_roz";
anywheresoftware.b4a.keywords.Common.File.Copy(mostCurrent._vvvvvvvvvvvvvvvv7._vv1 /*String*/ (mostCurrent.activityBA),"anvarvahy2/sokhan_roz/"+mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv5+"-"+mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv4+".mp4",mostCurrent._vvvvvvvvvvvvvvvvv3._vvvvvvvv0 /*com.pas.abtahibo.parvaz.fileprovider*/ ._vvvvvvvvvvvvvvvvvvvvvvvv5 /*String*/ ,mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv5+"-"+mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv4+".mp4");
 //BA.debugLineNum = 1241;BA.debugLine="Dim in As Intent";
_in = new anywheresoftware.b4a.objects.IntentWrapper();
 //BA.debugLineNum = 1242;BA.debugLine="in.Initialize(in.ACTION_SEND, \"\")";
_in.Initialize(_in.ACTION_SEND,"");
 //BA.debugLineNum = 1243;BA.debugLine="in.SetType(\"text/plain\")";
_in.SetType("text/plain");
 //BA.debugLineNum = 1244;BA.debugLine="in.PutExtra(\"android.intent.extra.STREAM\", Start";
_in.PutExtra("android.intent.extra.STREAM",mostCurrent._vvvvvvvvvvvvvvvvv3._vvvvvvvv0 /*com.pas.abtahibo.parvaz.fileprovider*/ ._vvvvvvvvvvvvvvvvvvvvvvvv3 /*Object*/ (mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv5+"-"+mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv4+".mp4"));
 //BA.debugLineNum = 1245;BA.debugLine="in.Flags = 1";
_in.setFlags((int) (1));
 //BA.debugLineNum = 1246;BA.debugLine="StartActivity(in)";
anywheresoftware.b4a.keywords.Common.StartActivity(processBA,(Object)(_in.getObject()));
 } 
       catch (Exception e10) {
			processBA.setLastException(e10); //BA.debugLineNum = 1248;BA.debugLine="Log(LastException)";
anywheresoftware.b4a.keywords.Common.LogImpl("349676300",BA.ObjectToString(anywheresoftware.b4a.keywords.Common.LastException(mostCurrent.activityBA)),0);
 };
 //BA.debugLineNum = 1251;BA.debugLine="End Sub";
return "";
}
public static String  _show_controller(boolean _bol_show) throws Exception{
anywheresoftware.b4j.object.JavaObject _jo = null;
 //BA.debugLineNum = 620;BA.debugLine="Sub show_controller(bol_show As Boolean)";
 //BA.debugLineNum = 621;BA.debugLine="Dim jo As JavaObject = SimpleExoPlayerView1";
_jo = new anywheresoftware.b4j.object.JavaObject();
_jo = (anywheresoftware.b4j.object.JavaObject) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4j.object.JavaObject(), (java.lang.Object)(mostCurrent._simpleexoplayerview1.getObject()));
 //BA.debugLineNum = 622;BA.debugLine="If bol_show = True Then";
if (_bol_show==anywheresoftware.b4a.keywords.Common.True) { 
 //BA.debugLineNum = 623;BA.debugLine="jo.RunMethod(\"showController\", Null)";
_jo.RunMethod("showController",(Object[])(anywheresoftware.b4a.keywords.Common.Null));
 }else {
 //BA.debugLineNum = 625;BA.debugLine="jo.RunMethod(\"hideController\", Null)";
_jo.RunMethod("hideController",(Object[])(anywheresoftware.b4a.keywords.Common.Null));
 };
 //BA.debugLineNum = 627;BA.debugLine="End Sub";
return "";
}
public static String  _show_film1() throws Exception{
 //BA.debugLineNum = 430;BA.debugLine="Sub Show_Film1";
 //BA.debugLineNum = 432;BA.debugLine="Try";
try { //BA.debugLineNum = 434;BA.debugLine="Log(File.Exists(func.choose2DIR,\"anvarvahy2/sokh";
anywheresoftware.b4a.keywords.Common.LogImpl("347054852",BA.ObjectToString(anywheresoftware.b4a.keywords.Common.File.Exists(mostCurrent._vvvvvvvvvvvvvvvv7._vv1 /*String*/ (mostCurrent.activityBA),"anvarvahy2/sokhan_roz/"+mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv5+"-"+mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv4+".mp4")),0);
 //BA.debugLineNum = 435;BA.debugLine="Log(func.readPFM(\"typePlats\"))";
anywheresoftware.b4a.keywords.Common.LogImpl("347054853",mostCurrent._vvvvvvvvvvvvvvvv7._vvvv0 /*String*/ (mostCurrent.activityBA,"typePlats"),0);
 //BA.debugLineNum = 436;BA.debugLine="Log(idDs&\"-\"&sName&\".mp4\")";
anywheresoftware.b4a.keywords.Common.LogImpl("347054854",mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv5+"-"+mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv4+".mp4",0);
 //BA.debugLineNum = 438;BA.debugLine="If func.readPFM(\"typePlats\") = 1 Then";
if ((mostCurrent._vvvvvvvvvvvvvvvv7._vvvv0 /*String*/ (mostCurrent.activityBA,"typePlats")).equals(BA.NumberToString(1))) { 
 //BA.debugLineNum = 439;BA.debugLine="If File.Exists(func.choose2DIR,\"anvarvahy2/sokh";
if (anywheresoftware.b4a.keywords.Common.File.Exists(mostCurrent._vvvvvvvvvvvvvvvv7._vv1 /*String*/ (mostCurrent.activityBA),"anvarvahy2/sokhan_roz/"+mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv5+"-"+mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv4+".mp4")) { 
 //BA.debugLineNum = 440;BA.debugLine="player1.Prepare(player1.CreateFileSource(func.";
_vvvvvvvv6.Prepare(_vvvvvvvv6.CreateFileSource(mostCurrent._vvvvvvvvvvvvvvvv7._vv1 /*String*/ (mostCurrent.activityBA),"anvarvahy2/sokhan_roz/"+mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv5+"-"+mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv4+".mp4"));
 }else {
 //BA.debugLineNum = 442;BA.debugLine="player1.Prepare(player1.CreateUriSource(urlAll";
_vvvvvvvv6.Prepare(_vvvvvvvv6.CreateUriSource(mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv3));
 };
 }else {
 //BA.debugLineNum = 445;BA.debugLine="player1.Prepare(player1.CreateUriSource(urlAll)";
_vvvvvvvv6.Prepare(_vvvvvvvv6.CreateUriSource(mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv3));
 };
 //BA.debugLineNum = 449;BA.debugLine="player1.Play";
_vvvvvvvv6.Play();
 //BA.debugLineNum = 451;BA.debugLine="lb_lock.Visible = True";
mostCurrent._lb_lock.setVisible(anywheresoftware.b4a.keywords.Common.True);
 //BA.debugLineNum = 452;BA.debugLine="L_Speed2.Visible = True";
mostCurrent._l_speed2.setVisible(anywheresoftware.b4a.keywords.Common.True);
 //BA.debugLineNum = 453;BA.debugLine="visLab(labDl,True)";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv5(mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv4,anywheresoftware.b4a.keywords.Common.True);
 //BA.debugLineNum = 454;BA.debugLine="visLab(labShare,True)";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv5(mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv3,anywheresoftware.b4a.keywords.Common.True);
 } 
       catch (Exception e20) {
			processBA.setLastException(e20); //BA.debugLineNum = 457;BA.debugLine="Log(LastException)";
anywheresoftware.b4a.keywords.Common.LogImpl("347054875",BA.ObjectToString(anywheresoftware.b4a.keywords.Common.LastException(mostCurrent.activityBA)),0);
 //BA.debugLineNum = 458;BA.debugLine="func.ToastERROR(func.gland(175))";
mostCurrent._vvvvvvvvvvvvvvvv7._vvvvvvv0 /*String*/ (mostCurrent.activityBA,mostCurrent._vvvvvvvvvvvvvvvv7._vvv1 /*String*/ (mostCurrent.activityBA,(int) (175)));
 };
 //BA.debugLineNum = 462;BA.debugLine="End Sub";
return "";
}
public static String  _show_navication(boolean _bol_show,boolean _bol_img) throws Exception{
anywheresoftware.b4j.object.JavaObject _jo4 = null;
 //BA.debugLineNum = 1084;BA.debugLine="Sub show_navication(bol_show As Boolean,bol_img As";
 //BA.debugLineNum = 1094;BA.debugLine="Dim jo4 As JavaObject = Activity";
_jo4 = new anywheresoftware.b4j.object.JavaObject();
_jo4 = (anywheresoftware.b4j.object.JavaObject) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4j.object.JavaObject(), (java.lang.Object)(mostCurrent._activity.getObject()));
 //BA.debugLineNum = 1095;BA.debugLine="If bol_show = True Then";
if (_bol_show==anywheresoftware.b4a.keywords.Common.True) { 
 //BA.debugLineNum = 1096;BA.debugLine="jo4.RunMethod(\"setSystemUiVisibility\", Array As";
_jo4.RunMethod("setSystemUiVisibility",new Object[]{(Object)(1280)});
 //BA.debugLineNum = 1097;BA.debugLine="If bol_img = True Then";
if (_bol_img==anywheresoftware.b4a.keywords.Common.True) { 
 //BA.debugLineNum = 1098;BA.debugLine="img_logo.Top = 18dip";
mostCurrent._img_logo.setTop(anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (18)));
 //BA.debugLineNum = 1099;BA.debugLine="img_logo.Top = img_logo.Top + StatusBarHeight";
mostCurrent._img_logo.setTop((int) (mostCurrent._img_logo.getTop()+_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv7()));
 }else {
 //BA.debugLineNum = 1101;BA.debugLine="img_logo.Top = img_logo.Top";
mostCurrent._img_logo.setTop(mostCurrent._img_logo.getTop());
 };
 }else {
 //BA.debugLineNum = 1104;BA.debugLine="jo4.RunMethod(\"setSystemUiVisibility\", Array As";
_jo4.RunMethod("setSystemUiVisibility",new Object[]{(Object)(5894)});
 //BA.debugLineNum = 1105;BA.debugLine="img_logo.Top = img_logo.Top - StatusBarHeight";
mostCurrent._img_logo.setTop((int) (mostCurrent._img_logo.getTop()-_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv7()));
 };
 //BA.debugLineNum = 1108;BA.debugLine="End Sub";
return "";
}
public static Object  _statechanged_event(String _methodname,Object[] _args) throws Exception{
boolean _playing = false;
 //BA.debugLineNum = 494;BA.debugLine="Sub StateChanged_Event (MethodName As String, Args";
 //BA.debugLineNum = 496;BA.debugLine="Select MethodName";
switch (BA.switchObjectToInt(_methodname,"onPlayerStateChanged")) {
case 0: {
 //BA.debugLineNum = 499;BA.debugLine="Dim Playing As Boolean = Args(0)";
_playing = BA.ObjectToBoolean(_args[(int) (0)]);
 //BA.debugLineNum = 501;BA.debugLine="If Playing = False Then";
if (_playing==anywheresoftware.b4a.keywords.Common.False) { 
 //BA.debugLineNum = 502;BA.debugLine="img_pause.Visible = False";
mostCurrent._img_pause.setVisible(anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 503;BA.debugLine="img_play.Visible = True";
mostCurrent._img_play.setVisible(anywheresoftware.b4a.keywords.Common.True);
 }else {
 //BA.debugLineNum = 505;BA.debugLine="If timer_play_time.IsInitialized And timer_pla";
if (_timer_play_time.IsInitialized() && _timer_play_time.getEnabled()==anywheresoftware.b4a.keywords.Common.False) { 
_timer_play_time.setEnabled(anywheresoftware.b4a.keywords.Common.True);};
 //BA.debugLineNum = 506;BA.debugLine="img_pause.Visible = True";
mostCurrent._img_pause.setVisible(anywheresoftware.b4a.keywords.Common.True);
 //BA.debugLineNum = 507;BA.debugLine="img_play.Visible = False";
mostCurrent._img_play.setVisible(anywheresoftware.b4a.keywords.Common.False);
 };
 //BA.debugLineNum = 510;BA.debugLine="If GetPlayState = 2 Then";
if (_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv3()==2) { 
 //BA.debugLineNum = 511;BA.debugLine="LVCircularRing1.Visible = True";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv0.setVisible(anywheresoftware.b4a.keywords.Common.True);
 //BA.debugLineNum = 512;BA.debugLine="p_paly.Visible = False";
mostCurrent._p_paly.setVisible(anywheresoftware.b4a.keywords.Common.False);
 }else if(_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv3()==3) { 
 //BA.debugLineNum = 514;BA.debugLine="If timer_play_time.IsInitialized And timer_pla";
if (_timer_play_time.IsInitialized() && _timer_play_time.getEnabled()==anywheresoftware.b4a.keywords.Common.False) { 
_timer_play_time.setEnabled(anywheresoftware.b4a.keywords.Common.True);};
 //BA.debugLineNum = 515;BA.debugLine="p_paly.Visible = True";
mostCurrent._p_paly.setVisible(anywheresoftware.b4a.keywords.Common.True);
 //BA.debugLineNum = 516;BA.debugLine="LVCircularRing1.Visible = False";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv0.setVisible(anywheresoftware.b4a.keywords.Common.False);
 };
 break; }
}
;
 //BA.debugLineNum = 521;BA.debugLine="Return Null";
if (true) return anywheresoftware.b4a.keywords.Common.Null;
 //BA.debugLineNum = 523;BA.debugLine="End Sub";
return null;
}
public static int  _vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv7() throws Exception{
de.amberhome.objects.appcompat.AppCompatBase _ac = null;
 //BA.debugLineNum = 1127;BA.debugLine="Sub StatusBarHeight As Int";
 //BA.debugLineNum = 1128;BA.debugLine="Dim ac As AppCompat";
_ac = new de.amberhome.objects.appcompat.AppCompatBase();
 //BA.debugLineNum = 1129;BA.debugLine="Return ac.GetStatusBarHeight";
if (true) return _ac.GetStatusBarHeight(mostCurrent.activityBA);
 //BA.debugLineNum = 1130;BA.debugLine="End Sub";
return 0;
}
public static String  _timer_play_time_tick() throws Exception{
 //BA.debugLineNum = 1133;BA.debugLine="Sub timer_play_time_Tick";
 //BA.debugLineNum = 1134;BA.debugLine="If SimpleExoPlayerView1.IsInitialized Then";
if (mostCurrent._simpleexoplayerview1.IsInitialized()) { 
 //BA.debugLineNum = 1135;BA.debugLine="If player1.IsPlaying Then";
if (_vvvvvvvv6.getIsPlaying()) { 
 //BA.debugLineNum = 1136;BA.debugLine="int_play_time = int_play_time + 1";
_int_play_time = (int) (_int_play_time+1);
 };
 };
 //BA.debugLineNum = 1139;BA.debugLine="End Sub";
return "";
}
public static String  _vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv2() throws Exception{
anywheresoftware.b4j.object.JavaObject _jo = null;
anywheresoftware.b4j.object.JavaObject _window = null;
 //BA.debugLineNum = 1110;BA.debugLine="Sub TransparentNavigationBar";
 //BA.debugLineNum = 1111;BA.debugLine="If pho_Volume.SdkVersion >= 21 Then";
if (mostCurrent._pho_volume.getSdkVersion()>=21) { 
 //BA.debugLineNum = 1118;BA.debugLine="Dim jo As JavaObject";
_jo = new anywheresoftware.b4j.object.JavaObject();
 //BA.debugLineNum = 1119;BA.debugLine="jo.InitializeContext";
_jo.InitializeContext(processBA);
 //BA.debugLineNum = 1120;BA.debugLine="jo.RunMethodJO(\"getWindow\", Null).RunMethodJO(\"g";
_jo.RunMethodJO("getWindow",(Object[])(anywheresoftware.b4a.keywords.Common.Null)).RunMethodJO("getDecorView",(Object[])(anywheresoftware.b4a.keywords.Common.Null)).RunMethod("setLayoutDirection",new Object[]{(Object)(1)});
 //BA.debugLineNum = 1121;BA.debugLine="Dim window As JavaObject = jo.RunMethod(\"getWind";
_window = new anywheresoftware.b4j.object.JavaObject();
_window = (anywheresoftware.b4j.object.JavaObject) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4j.object.JavaObject(), (java.lang.Object)(_jo.RunMethod("getWindow",(Object[])(anywheresoftware.b4a.keywords.Common.Null))));
 //BA.debugLineNum = 1122;BA.debugLine="window.RunMethod(\"addFlags\", Array(0x08000000))";
_window.RunMethod("addFlags",new Object[]{(Object)(((int)0x08000000))});
 //BA.debugLineNum = 1123;BA.debugLine="jo.RunMethodJO(\"getWindow\", Null).RunMethod(\"set";
_jo.RunMethodJO("getWindow",(Object[])(anywheresoftware.b4a.keywords.Common.Null)).RunMethod("setNavigationBarColor",new Object[]{(Object)(anywheresoftware.b4a.keywords.Common.Colors.Transparent)});
 };
 //BA.debugLineNum = 1125;BA.debugLine="End Sub";
return "";
}
public static int  _vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv5(int _progress1,int _max1) throws Exception{
float _offset = 0f;
float _minimumx = 0f;
float _maximumx = 0f;
float _previewleftx = 0f;
float _previewrightx = 0f;
float _previewseekbarstartx = 0f;
float _previewseekbarendx = 0f;
int _currentx = 0;
float _startx = 0f;
float _endx = 0f;
 //BA.debugLineNum = 653;BA.debugLine="Sub updatePreviewX(progress1 As Int, max1 As Int)";
 //BA.debugLineNum = 655;BA.debugLine="If max1 = 0 Then Return 0";
if (_max1==0) { 
if (true) return (int) (0);};
 //BA.debugLineNum = 657;BA.debugLine="Dim offset As Float= progress1 / max1";
_offset = (float) (_progress1/(double)_max1);
 //BA.debugLineNum = 658;BA.debugLine="Dim minimumX As Float = 0";
_minimumx = (float) (0);
 //BA.debugLineNum = 659;BA.debugLine="Dim maximumX As Float = 100%x";
_maximumx = (float) (anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (100),mostCurrent.activityBA));
 //BA.debugLineNum = 661;BA.debugLine="Dim previewLeftX As Float = 0";
_previewleftx = (float) (0);
 //BA.debugLineNum = 662;BA.debugLine="Dim previewRightX As Float = 100%x";
_previewrightx = (float) (anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (100),mostCurrent.activityBA));
 //BA.debugLineNum = 663;BA.debugLine="Dim previewSeekBarStartX As Float = previewLeftX";
_previewseekbarstartx = (float) (_previewleftx+anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (15))+anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (70)));
 //BA.debugLineNum = 664;BA.debugLine="Dim previewSeekBarEndX As Float = previewRightX -";
_previewseekbarendx = (float) (_previewrightx-anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (15)));
 //BA.debugLineNum = 666;BA.debugLine="Dim currentX  As Int = (previewSeekBarStartX + (p";
_currentx = (int) ((_previewseekbarstartx+(_previewseekbarendx-_previewseekbarstartx)*_offset));
 //BA.debugLineNum = 668;BA.debugLine="Dim startX As Float = currentX - p_preview.width";
_startx = (float) (_currentx-mostCurrent._p_preview.getWidth()/(double)2);
 //BA.debugLineNum = 669;BA.debugLine="Dim endX As Float = startX + p_preview.width";
_endx = (float) (_startx+mostCurrent._p_preview.getWidth());
 //BA.debugLineNum = 671;BA.debugLine="If (startX >= minimumX And endX <= maximumX) Then";
if ((_startx>=_minimumx && _endx<=_maximumx)) { 
 //BA.debugLineNum = 672;BA.debugLine="Return startX";
if (true) return (int) (_startx);
 }else if((_startx<_minimumx)) { 
 //BA.debugLineNum = 674;BA.debugLine="Return minimumX";
if (true) return (int) (_minimumx);
 }else {
 //BA.debugLineNum = 676;BA.debugLine="Return maximumX - p_preview.Width";
if (true) return (int) (_maximumx-mostCurrent._p_preview.getWidth());
 };
 //BA.debugLineNum = 679;BA.debugLine="End Sub";
return 0;
}
public static Object  _visibilitychange_event(String _methodname,Object[] _args) throws Exception{
boolean _isvisible = false;
 //BA.debugLineNum = 525;BA.debugLine="Sub VisibilityChange_Event (MethodName As String,";
 //BA.debugLineNum = 527;BA.debugLine="Dim IsVisible As Boolean = 0 = Args(0)";
_isvisible = 0==(double)(BA.ObjectToNumber(_args[(int) (0)]));
 //BA.debugLineNum = 528;BA.debugLine="ActionBar.Visible = IsVisible";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.setVisible(_isvisible);
 //BA.debugLineNum = 529;BA.debugLine="show_or_hide = IsVisible";
_show_or_hide = _isvisible;
 //BA.debugLineNum = 531;BA.debugLine="lb_lock.Visible = IsVisible";
mostCurrent._lb_lock.setVisible(_isvisible);
 //BA.debugLineNum = 532;BA.debugLine="L_Speed2.Visible = IsVisible";
mostCurrent._l_speed2.setVisible(_isvisible);
 //BA.debugLineNum = 534;BA.debugLine="visLab(labShare,IsVisible)";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv5(mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv3,_isvisible);
 //BA.debugLineNum = 535;BA.debugLine="visLab(labDl,IsVisible)";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv5(mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv4,_isvisible);
 //BA.debugLineNum = 537;BA.debugLine="p_paly.Visible = IsVisible";
mostCurrent._p_paly.setVisible(_isvisible);
 //BA.debugLineNum = 539;BA.debugLine="img_logo.Visible = Not(IsVisible)";
mostCurrent._img_logo.setVisible(anywheresoftware.b4a.keywords.Common.Not(_isvisible));
 //BA.debugLineNum = 541;BA.debugLine="show_navication(IsVisible,True)";
_show_navication(_isvisible,anywheresoftware.b4a.keywords.Common.True);
 //BA.debugLineNum = 543;BA.debugLine="Return Null";
if (true) return anywheresoftware.b4a.keywords.Common.Null;
 //BA.debugLineNum = 545;BA.debugLine="End Sub";
return null;
}
public static String  _vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv5(anywheresoftware.b4a.objects.LabelWrapper _lab,boolean _vis) throws Exception{
 //BA.debugLineNum = 421;BA.debugLine="Sub visLab(lab As Label,vis As Boolean)";
 //BA.debugLineNum = 422;BA.debugLine="If func.readPFM(\"typePlats\") = 2 Or func.readPFM(";
if ((mostCurrent._vvvvvvvvvvvvvvvv7._vvvv0 /*String*/ (mostCurrent.activityBA,"typePlats")).equals(BA.NumberToString(2)) || (mostCurrent._vvvvvvvvvvvvvvvv7._vvvv0 /*String*/ (mostCurrent.activityBA,"typeLastDaySpeech")).equals(BA.NumberToString(2))) { 
 //BA.debugLineNum = 423;BA.debugLine="lab.Visible = False";
_lab.setVisible(anywheresoftware.b4a.keywords.Common.False);
 }else {
 //BA.debugLineNum = 425;BA.debugLine="lab.Visible = vis";
_lab.setVisible(_vis);
 };
 //BA.debugLineNum = 427;BA.debugLine="End Sub";
return "";
}
}
