正在查看: Studio Go v5.35.0.277 应用的 mainactivity.java JAVA 源代码文件
本页面展示 JAVA 反编译生成的源代码文件,支持语法高亮显示。 仅供安全研究与技术分析使用,严禁用于任何非法用途。请遵守相关法律法规。
正在查看: Studio Go v5.35.0.277 应用的 mainactivity.java JAVA 源代码文件
本页面展示 JAVA 反编译生成的源代码文件,支持语法高亮显示。 仅供安全研究与技术分析使用,严禁用于任何非法用途。请遵守相关法律法规。
package vertigis.mobile.viewer;
import android.os.Bundle;
import android.view.MotionEvent;
import crc64ec9852c91464b681.VertiGISMobileActivity;
import java.lang.Thread;
import java.util.ArrayList;
import mono.android.IGCUserPeer;
import mono.android.Runtime;
import mono.android.TypeManager;
public class mainactivity extends VertiGISMobileActivity implements IGCUserPeer, Thread.UncaughtExceptionHandler {
public static final String __md_methods = "n_onCreate:(Landroid/os/Bundle;)V:GetOnCreate_Landroid_os_Bundle_Handler\nn_dispatchTouchEvent:(Landroid/view/MotionEvent;)Z:GetDispatchTouchEvent_Landroid_view_MotionEvent_Handler\nn_uncaughtException:(Ljava/lang/Thread;Ljava/lang/Throwable;)V:GetUncaughtException_Ljava_lang_Thread_Ljava_lang_Throwable_Handler:Java.Lang.Thread/IUncaughtExceptionHandlerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n";
private ArrayList refList;
private native boolean n_dispatchTouchEvent(MotionEvent motionEvent);
private native void n_onCreate(Bundle bundle);
private native void n_uncaughtException(Thread thread, Throwable th);
static {
Runtime.register("VertiGIS.Mobile.Go.Maui.Platforms.MainActivity, VertiGISMobileViewer", mainactivity.class, __md_methods);
}
public mainactivity() {
if (getClass() == mainactivity.class) {
TypeManager.Activate("VertiGIS.Mobile.Go.Maui.Platforms.MainActivity, VertiGISMobileViewer", "", this, new Object[0]);
}
}
public mainactivity(int i) {
super(i);
if (getClass() == mainactivity.class) {
TypeManager.Activate("VertiGIS.Mobile.Go.Maui.Platforms.MainActivity, VertiGISMobileViewer", "System.Int32, System.Private.CoreLib", this, new Object[]{Integer.valueOf(i)});
}
}
@Override
public void onCreate(Bundle bundle) {
n_onCreate(bundle);
}
@Override
public boolean dispatchTouchEvent(MotionEvent motionEvent) {
return n_dispatchTouchEvent(motionEvent);
}
@Override
public void uncaughtException(Thread thread, Throwable th) {
n_uncaughtException(thread, th);
}
@Override
public void monodroidAddReference(Object obj) {
if (this.refList == null) {
this.refList = new ArrayList();
}
this.refList.add(obj);
}
@Override
public void monodroidClearReferences() {
ArrayList arrayList = this.refList;
if (arrayList != null) {
arrayList.clear();
}
}
}