Show aditional WiFi calling message.

Bug: 37624313
Test: manual - locally apply this setting and verify that the
               additional text is shown.
Change-Id: I8a15a9aeb71a0daab1ae4533f2c3b7d05c57bc5f
This commit is contained in:
Meng Wang
2017-05-16 11:50:20 -07:00
parent 3b1bf3b96d
commit 7cecf2d3ba
3 changed files with 24 additions and 1 deletions

View File

@@ -152,7 +152,9 @@ public class WifiCallingSettings extends SettingsPreferenceFragment
mEmptyView = (TextView) getView().findViewById(android.R.id.empty);
setEmptyView(mEmptyView);
mEmptyView.setText(R.string.wifi_calling_off_explanation);
String emptyViewText = activity.getString(R.string.wifi_calling_off_explanation)
+ activity.getString(R.string.wifi_calling_off_explanation_2);
mEmptyView.setText(emptyViewText);
}
@Override