mirror of
https://gitlab.com/android_translation_layer/android_translation_layer.git
synced 2025-04-28 20:27:58 +03:00
16 lines
298 B
Java
16 lines
298 B
Java
package android.widget;
|
|
|
|
import android.content.Context;
|
|
import android.util.AttributeSet;
|
|
|
|
public class ViewFlipper extends ViewAnimator {
|
|
|
|
public ViewFlipper(Context context) {
|
|
this(context, null);
|
|
}
|
|
|
|
public ViewFlipper(Context context, AttributeSet attrs) {
|
|
super(context, attrs);
|
|
}
|
|
|
|
}
|