Merge "Update string for Connected devices page."

This commit is contained in:
TreeHugger Robot
2017-03-23 23:42:14 +00:00
committed by Android (Google) Code Review
3 changed files with 21 additions and 13 deletions

View File

@@ -98,13 +98,13 @@ public final class BluetoothSummaryUpdater extends SummaryUpdater implements Blu
}
switch (mConnectionState) {
case BluetoothAdapter.STATE_CONNECTED:
return mContext.getString(R.string.bluetooth_connected);
return mContext.getString(R.string.bluetooth_connected_summary);
case BluetoothAdapter.STATE_CONNECTING:
return mContext.getString(R.string.bluetooth_connecting);
case BluetoothAdapter.STATE_DISCONNECTING:
return mContext.getString(R.string.bluetooth_disconnecting);
default:
return mContext.getString(R.string.bluetooth_disconnected);
return mContext.getString(R.string.disconnected);
}
}