allow icon only tab bar button (no text)

This commit is contained in:
Frederik Bosch 2016-05-09 16:54:32 +02:00
Родитель ba5578f0c4
Коммит a0fe29db3c
1 изменённых файлов: 11 добавлений и 9 удалений

Просмотреть файл

@ -144,6 +144,7 @@ public class TabBar extends android.widget.LinearLayout implements
ll.addView(iv); ll.addView(iv);
} }
if (abb.label != null) {
TextView tv = new TextView(themedContext); TextView tv = new TextView(themedContext);
LinearLayout.LayoutParams tvp = new LinearLayout.LayoutParams( LinearLayout.LayoutParams tvp = new LinearLayout.LayoutParams(
ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT); ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);
@ -153,6 +154,7 @@ public class TabBar extends android.widget.LinearLayout implements
tv.setTextSize(TEXTSIZE); tv.setTextSize(TEXTSIZE);
tv.setText(abb.label.toUpperCase()); tv.setText(abb.label.toUpperCase());
ll.addView(tv); ll.addView(tv);
}
return ll; return ll;
} }