Merge "[Network Connection] Show full SSID on list item" into qt-dev

am: 6e115e4fda

Change-Id: I7a5250221d73d163961f9894f96701d699711c90
This commit is contained in:
cosmohsieh
2019-04-18 10:05:44 -07:00
committed by android-build-merger

View File

@@ -377,7 +377,9 @@ public class NetworkRequestDialogFragment extends InstrumentedDialogFragment imp
final TextView titleView = view.findViewById(android.R.id.title);
if (titleView != null) {
titleView.setText(accessPoint.getSsidStr());
// Shows whole SSID for better UX.
titleView.setSingleLine(false);
titleView.setText(accessPoint.getTitle());
}
final TextView summary = view.findViewById(android.R.id.summary);