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
13 lines
267 B
Java
13 lines
267 B
Java
package android.graphics;
|
|
|
|
public class Outline {
|
|
|
|
public void setAlpha(float alpha) {}
|
|
|
|
public void setEmpty() {}
|
|
|
|
public void setRoundRect(int left, int top, int right, int bottom, float r) {}
|
|
|
|
public void setRect(int left, int top, int right, int bottom) {}
|
|
}
|