OSDN Git Service

Fix resource id generation
authorAdam Lesinski <adamlesinski@google.com>
Thu, 19 Jun 2014 22:01:26 +0000 (15:01 -0700)
committerAdam Lesinski <adamlesinski@google.com>
Thu, 19 Jun 2014 23:30:36 +0000 (16:30 -0700)
ID resources were being generated in the 'android' package.

Change-Id: Ia2569c187102551fe85fe7cc88970b38032801a6

res/layout/apn_preference_layout.xml
res/layout/battery_history_chart.xml

index b79b0b9..8938f29 100644 (file)
@@ -22,7 +22,7 @@
     android:gravity="center_vertical">
 
     <RelativeLayout
-        android:id="@+android:id/text_layout"
+        android:id="@+id/text_layout"
         android:layout_width="0dip"
         android:layout_height="match_parent"
         android:paddingStart="8dip"
@@ -53,7 +53,7 @@
 
     <RadioButton
         xmlns:android="http://schemas.android.com/apk/res/android"
-        android:id="@+android:id/apn_radiobutton"
+        android:id="@+id/apn_radiobutton"
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"
         android:layout_marginStart="8dip"
index 48eb7ed..0e3cf88 100644 (file)
@@ -26,7 +26,7 @@
         android:layout_width="match_parent"
         android:layout_height="match_parent"
         android:gravity="center_vertical"
-        android:id="@+android:id/battery_history_chart"
+        android:id="@+id/battery_history_chart"
         android:textAppearance="?android:attr/textAppearanceSmall"
         android:textColor="#ff000000"
         app:headerAppearance="?android:attr/textAppearanceMedium"