Hide indication bar if only one page

Bug: 10923117
Change-Id: If81bf07ba2e7c4fff44a8832f98b4a393c15edc7
main
Satoshi Kataoka 2013-10-01 16:24:58 +09:00
parent 126d758c1e
commit a4913994c2
1 changed files with 3 additions and 2 deletions

View File

@ -50,8 +50,9 @@ public class EmojiCategoryPageIndicatorView extends LinearLayout {
@Override @Override
protected void onDraw(Canvas canvas) { protected void onDraw(Canvas canvas) {
if (mCategoryPageSize == 0) { if (mCategoryPageSize <= 1) {
// If the category is not set yet, just clear and return. // If the category is not set yet or contains only one category,
// just clear and return.
canvas.drawColor(0); canvas.drawColor(0);
return; return;
} }