diff options
author | Michael Bestas <mkbestas@lineageos.org> | 2020-11-21 02:26:39 +0200 |
---|---|---|
committer | Michael Bestas <mkbestas@lineageos.org> | 2020-11-22 20:14:48 +0200 |
commit | 63e9bd1f2108225adcc3bbff1a619f15ff8e51d7 (patch) | |
tree | 9c33320e888b44e2635ca5c5137263d16daee021 | |
parent | 591109aaea1f4c10e036d4794f43315c0bda2799 (diff) |
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
-rw-r--r-- | res/layout/profiles_header.xml | 2 |
1 files changed, 1 insertions, 1 deletions
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" |