Merge "Messaging: Fix generating id in android namespace"

This commit is contained in:
Raman Tenneti
2019-05-23 22:26:29 +00:00
committed by Gerrit Code Review
2 changed files with 3 additions and 3 deletions
@@ -94,7 +94,7 @@ public class ApnPreference extends Preference implements
public void setApnRadioButtonContentDescription(final CompoundButton buttonView) {
final View widget = (View) buttonView.getParent();
final TextView tv = (TextView) widget.findViewById(android.R.id.title);
final TextView tv = (TextView) widget.findViewById(R.id.title);
final String apnTitle = tv.getText().toString();
buttonView.setContentDescription(apnTitle);
}