Merge "Messaging: Fix generating id in android namespace" am: 1e56062ac9 am: d6b0b845ee am: 2084ce2d5d

am: 53c1f09d06

Change-Id: I09a7faa8248d60c97232ed235007af50d1866d60
This commit is contained in:
Raman Tenneti
2019-05-24 02:33:41 -07:00
committed by android-build-merger
2 changed files with 3 additions and 3 deletions

View File

@@ -38,7 +38,7 @@
android:background="?android:attr/selectableItemBackground">
<TextView
android:id="@+android:id/title"
android:id="@+id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:focusable="true"
@@ -46,7 +46,7 @@
android:textAppearance="?android:attr/textAppearanceListItem" />
<TextView
android:id="@+android:id/summary"
android:id="@+id/summary"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@android:id/title"

View File

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