add missing padding of alt text on 2.3

This commit is contained in:
Andrew Dolgov 2013-04-16 15:07:46 +04:00
parent fbf7f20ae3
commit 39148025f9

View File

@ -584,6 +584,8 @@ public class OnlineActivity extends CommonActivity {
if (android.os.Build.VERSION.SDK_INT >= 16) { if (android.os.Build.VERSION.SDK_INT >= 16) {
titleText.setPaddingRelative(24, 24, 24, 24); titleText.setPaddingRelative(24, 24, 24, 24);
} else {
titleText.setPadding(24, 24, 24, 24);
} }
titleText.setTextSize(16); titleText.setTextSize(16);