Fix XML lint errors from CircleCI

This commit is contained in:
TacoTheDank 2021-07-22 16:49:13 -04:00
parent b290402f8f
commit ba34bea746
2 changed files with 39 additions and 39 deletions

View File

@ -1,29 +1,29 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<LinearLayout <LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools"
android:orientation="horizontal" android:layout_width="match_parent"
android:layout_width="match_parent" android:layout_height="match_parent"
android:layout_height="match_parent" android:orientation="horizontal"
tools:viewBindingIgnore="true"> tools:viewBindingIgnore="true">
<FrameLayout <FrameLayout
android:id="@+id/navDrawerFragment" android:id="@+id/navDrawerFragment"
android:layout_width="300dp" android:layout_width="300dp"
android:layout_height="match_parent" android:layout_height="match_parent"
android:layout_gravity="start" android:layout_gravity="start"
android:orientation="vertical" /> android:orientation="vertical" />
<View <View
android:layout_width="1dp" android:layout_width="1dp"
android:layout_height="match_parent" android:layout_height="match_parent"
android:background="?android:attr/listDivider" /> android:background="?android:attr/listDivider" />
<androidx.coordinatorlayout.widget.CoordinatorLayout <androidx.coordinatorlayout.widget.CoordinatorLayout
android:id="@+id/overview_coordinator_layout" android:id="@+id/overview_coordinator_layout"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent"> android:layout_height="match_parent">
<FrameLayout <FrameLayout
android:id="@+id/main_view" android:id="@+id/main_view"
@ -34,14 +34,14 @@
tools:background="@android:color/holo_red_dark" /> tools:background="@android:color/holo_red_dark" />
<FrameLayout <FrameLayout
android:elevation="8dp"
android:id="@+id/audioplayerFragment" android:id="@+id/audioplayerFragment"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
android:background="?android:attr/windowBackground" android:background="?android:attr/windowBackground"
android:elevation="8dp"
android:visibility="gone" android:visibility="gone"
app:layout_behavior="de.danoeh.antennapod.view.LockableBottomSheetBehavior" /> app:layout_behavior="de.danoeh.antennapod.view.LockableBottomSheetBehavior" />
</androidx.coordinatorlayout.widget.CoordinatorLayout> </androidx.coordinatorlayout.widget.CoordinatorLayout>
</LinearLayout> </LinearLayout>

View File

@ -1,21 +1,21 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<androidx.drawerlayout.widget.DrawerLayout <androidx.drawerlayout.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawer_layout" android:id="@+id/drawer_layout"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
tools:ignore="InconsistentLayout" tools:ignore="InconsistentLayout"
tools:viewBindingIgnore="true"> tools:viewBindingIgnore="true">
<!-- InconsistentLayout: Tablet layout does not have a drawer --> <!-- InconsistentLayout: Tablet layout does not have a drawer -->
<!-- viewBindingIgnore: Configurations for main.xml must <!-- viewBindingIgnore: Configurations for main.xml must
agree on the root element's ID --> agree on the root element's ID -->
<androidx.coordinatorlayout.widget.CoordinatorLayout <androidx.coordinatorlayout.widget.CoordinatorLayout
android:id="@+id/overview_coordinator_layout" android:id="@+id/overview_coordinator_layout"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent"> android:layout_height="match_parent">
<FrameLayout <FrameLayout
android:id="@+id/main_view" android:id="@+id/main_view"
@ -26,21 +26,21 @@
tools:background="@android:color/holo_red_dark" /> tools:background="@android:color/holo_red_dark" />
<FrameLayout <FrameLayout
android:elevation="8dp"
android:id="@+id/audioplayerFragment" android:id="@+id/audioplayerFragment"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
android:background="?android:attr/windowBackground" android:background="?android:attr/windowBackground"
android:elevation="8dp"
android:visibility="gone" android:visibility="gone"
app:layout_behavior="de.danoeh.antennapod.view.LockableBottomSheetBehavior" /> app:layout_behavior="de.danoeh.antennapod.view.LockableBottomSheetBehavior" />
</androidx.coordinatorlayout.widget.CoordinatorLayout> </androidx.coordinatorlayout.widget.CoordinatorLayout>
<FrameLayout <FrameLayout
android:id="@+id/navDrawerFragment" android:id="@+id/navDrawerFragment"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
android:layout_gravity="start" android:layout_gravity="start"
android:orientation="vertical" /> android:orientation="vertical" />
</androidx.drawerlayout.widget.DrawerLayout> </androidx.drawerlayout.widget.DrawerLayout>