Merge "Revert "Revert "Update StaticLayout_Delegate to use new nLoadHyphenator""" into mnc-ub-dev

am: 35f7562495

* commit '35f75624958bc061764c7cc71843ca7ea60c0666':
  Revert "Revert "Update StaticLayout_Delegate to use new nLoadHyphenator""
This commit is contained in:
Deepanshu Gupta
2015-11-19 21:00:17 +00:00
committed by android-build-merger
2 changed files with 6 additions and 4 deletions

View File

@@ -20,9 +20,10 @@ import com.android.layoutlib.bridge.impl.DelegateManager;
import com.android.tools.layoutlib.annotations.LayoutlibDelegate;
import java.io.File;
import java.nio.ByteBuffer;
/**
* Delegate that overrides implementation for certain methods in {@link android.text.StaticLayout}
* Delegate that overrides implementation for certain methods in {@link android.text.Hyphenator}
* <p/>
* Through the layoutlib_create tool, selected methods of StaticLayout have been replaced
* by calls to methods of the same name in this delegate class.
@@ -38,7 +39,7 @@ public class Hyphenator_Delegate {
return null;
}
/*package*/ static long loadHyphenator(String patternData) {
/*package*/ static long loadHyphenator(ByteBuffer buf, int offset) {
return sDelegateManager.addNewDelegate(new Hyphenator_Delegate());
}
}

View File

@@ -13,6 +13,7 @@ import android.icu.util.ULocale;
import android.text.Primitive.PrimitiveType;
import android.text.StaticLayout.LineBreaks;
import java.nio.ByteBuffer;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
@@ -52,8 +53,8 @@ public class StaticLayout_Delegate {
}
@LayoutlibDelegate
/*package*/ static long nLoadHyphenator(String patternData) {
return Hyphenator_Delegate.loadHyphenator(patternData);
/*package*/ static long nLoadHyphenator(ByteBuffer buf, int offset) {
return Hyphenator_Delegate.loadHyphenator(buf, offset);
}
@LayoutlibDelegate