Logo
Explore Help
Sign In
atl/android_translation_layer
0
0
Fork 0
You've already forked android_translation_layer
mirror of https://gitlab.com/android_translation_layer/android_translation_layer.git synced 2025-10-27 11:48:10 -07:00
Code Issues Packages Projects Releases Wiki Activity
Files
ca3c17d773aeebc482a7d9f1d29340868b26ecca
android_translation_layer/src/api-impl/android/app/Fragment.java

32 lines
355 B
Java
Raw Normal View History

add bunch of new java APIs: mostly stubs or copied from AOSP Many of these classes are only needed to be subclassed by androidx support library, which is used in many android apps
2023-08-17 10:46:24 +02:00
package android.app;
add initial support for fragments Fragments are not added to the View hierarchy yet. Only the lifecycle callbacks are implemented
2023-08-22 13:29:44 +02:00
import android.os.Bundle;
add bunch of new java APIs: mostly stubs or copied from AOSP Many of these classes are only needed to be subclassed by androidx support library, which is used in many android apps
2023-08-17 10:46:24 +02:00
public class Fragment {
add initial support for fragments Fragments are not added to the View hierarchy yet. Only the lifecycle callbacks are implemented
2023-08-22 13:29:44 +02:00
Activity activity;
public void onCreate(Bundle savedInstanceState) {
}
public void onStart() {
}
public void onResume() {
}
public void onPause() {
}
public void onStop() {
}
public void onDestroy() {
}
public Activity getActivity() {
return activity;
}
add bunch of new java APIs: mostly stubs or copied from AOSP Many of these classes are only needed to be subclassed by androidx support library, which is used in many android apps
2023-08-17 10:46:24 +02:00
}
Reference in New Issue Copy Permalink
Powered by Gitea Page: 73ms Template: 6ms
English
English
Licenses API