Merge "[Network Connection] Show full SSID on list item"

This commit is contained in:
TreeHugger Robot
2019-04-16 07:48:02 +00:00
committed by Android (Google) Code Review

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);