Merge "Declare no print services if 0 print services are enabled." into nyc-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
b852d0138a
@@ -319,7 +319,7 @@ public final class SelectPrinterActivity extends Activity implements
|
|||||||
}
|
}
|
||||||
TextView titleView = (TextView) findViewById(R.id.title);
|
TextView titleView = (TextView) findViewById(R.id.title);
|
||||||
View progressBar = findViewById(R.id.progress_bar);
|
View progressBar = findViewById(R.id.progress_bar);
|
||||||
if (mEnabledPrintServices.size() > 0) {
|
if (mEnabledPrintServices.size() == 0) {
|
||||||
titleView.setText(R.string.print_no_print_services);
|
titleView.setText(R.string.print_no_print_services);
|
||||||
progressBar.setVisibility(View.GONE);
|
progressBar.setVisibility(View.GONE);
|
||||||
} else if (adapter.getUnfilteredCount() <= 0) {
|
} else if (adapter.getUnfilteredCount() <= 0) {
|
||||||
|
|||||||
Reference in New Issue
Block a user