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
Add some missing APIs.
android.widget.Filter and android.webkit.MimeTypeMap are copied from AOSP. Other new classes are only stub implementations.
This commit is contained in:
@@ -260,13 +260,13 @@ public class Matrix {
|
||||
* specified transformation.
|
||||
*/
|
||||
public void setScale(float sx, float sy, float px, float py) {
|
||||
native_setScale(native_instance, sx, sy, px, py);
|
||||
// native_setScale(native_instance, sx, sy, px, py);
|
||||
}
|
||||
/**
|
||||
* Set the matrix to scale by sx and sy.
|
||||
*/
|
||||
public void setScale(float sx, float sy) {
|
||||
native_setScale(native_instance, sx, sy);
|
||||
// native_setScale(native_instance, sx, sy);
|
||||
}
|
||||
/**
|
||||
* Set the matrix to rotate by the specified number of degrees, with a pivot
|
||||
|
||||
Reference in New Issue
Block a user