You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
692 B
24 lines
692 B
(*
|
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*)
|
|
|
|
open! IStd
|
|
|
|
(** Android lifecycle types and their lifecycle methods that are called by the framework *)
|
|
|
|
val drawable_prefix : string
|
|
(** prefix for Drawable fields in generated resources *)
|
|
|
|
val is_autocloseable : Tenv.t -> Typ.Name.t -> bool
|
|
|
|
val is_view : Tenv.t -> Typ.Name.t -> bool
|
|
(** return true if [typename] <: android.view.View *)
|
|
|
|
val is_fragment : Tenv.t -> Typ.Name.t -> bool
|
|
|
|
val is_destroy_method : Typ.Procname.t -> bool
|
|
(** return true if [procname] is a special lifecycle cleanup method *)
|