LineageParts: Fix generating id in android namespace
Fixes:
res/layout/profiles_header.xml:18: warn: generated id
'android:id/title' for external package 'android'.
Change-Id: I32599c3b895fdd0f0b142d9ca2250716f3cef172
diff --git a/res/layout/profiles_header.xml b/res/layout/profiles_header.xml
index 7f5440a..1f686d9 100644
--- a/res/layout/profiles_header.xml
+++ b/res/layout/profiles_header.xml
@@ -16,7 +16,7 @@
-->
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+android:id/title"
+ android:id="@android:id/title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="16dp"