Android: extract SeekBar_thumbOffset

Task-number: QTBUG-39215
Change-Id: I2a7b878b1a86280c92a445826f196de3245fd4e2
Reviewed-by: BogDan Vatra <bogdan@kde.org>
bb10
J-P Nurmi 2014-05-26 11:14:39 +02:00 committed by The Qt Project
parent c7f99f3e86
commit 8097d67293
1 changed files with 6 additions and 0 deletions

View File

@ -1273,6 +1273,12 @@ public class ExtractStyle {
if (d != null)
json.put("SeekBar_thumb", getDrawable(d, styleName + "_SeekBar_thumb"));
try {
json.put("SeekBar_thumbOffset", styleableClass.getDeclaredField("SeekBar_thumbOffset").getInt(null));
} catch (Exception e) {
e.printStackTrace();
}
a.recycle();
parentObject.put(styleName, json);
} catch (Exception e) {