Files
android_translation_layer/src/api-impl/android/text/Layout.java

19 lines
303 B
Java
Raw Normal View History

package android.text;
public class Layout {
public enum Alignment {
ALIGN_NORMAL,
ALIGN_OPPOSITE,
ALIGN_CENTER,
ALIGN_LEFT,
ALIGN_RIGHT,
}
public int getLineCount() {return 1;}
public float getLineWidth(int line) {return 10;}
public TextPaint getPaint() {return new TextPaint();}
}