Skip to content

Latest commit

 

History

History
237 lines (145 loc) · 3.05 KB

File metadata and controls

237 lines (145 loc) · 3.05 KB
title AndroidActivityCallbacks
category Interfaces
titleTemplate API - NativeScript
breadcrumbs
name href
API Index
/api/
name href
Interfaces
/api/#summary-Interfaces
name
AndroidActivityCallbacks
layout api
seo
description
AndroidActivityCallbacks
<script setup lang="ts"> import { provide } from "vue"; import API_DATA from "./AndroidActivityCallbacks.data.json"; provide('API_DATA', API_DATA); </script>
interface AndroidActivityCallbacks {
  getRootView(): View;
  onActivityResult(
  activity: any,
  requestCode: number,
  resultCode: number,
  data: any,
  superFunc: Function
): any;
  onBackPressed(activity: any, superFunc: Function): void;
  onCreate(
  activity: any,
  savedInstanceState: any,
  intent: any,
  superFunc: Function
): void;
  onDestroy(activity: any, superFunc: Function): void;
  onNewIntent(
  activity: any,
  intent: any,
  superSetIntentFunc: Function,
  superFunc: Function
): void;
  onPostResume(activity: any, superFunc: Function): void;
  onRequestPermissionsResult(
  activity: any,
  requestCode: number,
  permissions: string[],
  grantResults: number[],
  superFunc: Function
): void;
  onSaveInstanceState(activity: any, outState: any, superFunc: Function): void;
  onStart(activity: any, superFunc: Function): void;
  onStop(activity: any, superFunc: Function): void;
  resetActivityContent(activity: any): void;
}

Summary

Methods

<template #title>

getRootView

<template #title>

onActivityResult

<template #title>

onBackPressed

<template #title>

onCreate

<template #title>

onDestroy

<template #title>

onNewIntent

<template #title>

onPostResume

<template #title>

onRequestPermissionsResult

<template #title>

onSaveInstanceState

<template #title>

onStart

<template #title>

onStop

<template #title>

resetActivityContent