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

This commit is contained in:
TreeHugger Robot
2019-04-18 16:51:37 +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); final TextView titleView = view.findViewById(android.R.id.title);
if (titleView != null) { 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); final TextView summary = view.findViewById(android.R.id.summary);