Fix resource id generation

ID resources were being generated in the 'android' package.

Change-Id: Ia2569c187102551fe85fe7cc88970b38032801a6
This commit is contained in:
Adam Lesinski
2014-06-19 15:01:26 -07:00
parent cb4f825c77
commit 6eae70fd5d
2 changed files with 3 additions and 3 deletions

View File

@@ -22,7 +22,7 @@
android:gravity="center_vertical"> android:gravity="center_vertical">
<RelativeLayout <RelativeLayout
android:id="@+android:id/text_layout" android:id="@+id/text_layout"
android:layout_width="0dip" android:layout_width="0dip"
android:layout_height="match_parent" android:layout_height="match_parent"
android:paddingStart="8dip" android:paddingStart="8dip"
@@ -53,7 +53,7 @@
<RadioButton <RadioButton
xmlns:android="http://schemas.android.com/apk/res/android" 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_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_marginStart="8dip" android:layout_marginStart="8dip"

View File

@@ -26,7 +26,7 @@
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
android:gravity="center_vertical" android:gravity="center_vertical"
android:id="@+android:id/battery_history_chart" android:id="@+id/battery_history_chart"
android:textAppearance="?android:attr/textAppearanceSmall" android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="#ff000000" android:textColor="#ff000000"
app:headerAppearance="?android:attr/textAppearanceMedium" app:headerAppearance="?android:attr/textAppearanceMedium"