Files
android_translation_layer/src/api-impl/android/app/FragmentTransaction.java
Julian Winkler faf4a3281e add initial support for fragments
Fragments are not added to the View hierarchy yet. Only the lifecycle
callbacks are implemented
2023-08-22 22:30:06 +02:00

21 lines
364 B
Java

package android.app;
public class FragmentTransaction {
private Activity activity;
public FragmentTransaction(Activity activity) {
this.activity = activity;
}
public FragmentTransaction add(Fragment fragment, String string) {
fragment.activity = activity;
activity.fragments.add(fragment);
return this;
}
public int commit() {
return 0;
}
}