mirror of
https://github.com/nextcloud/android.git
synced 2024-11-26 07:05:49 +03:00
lint: fix layout ids
This commit is contained in:
parent
893c5a38be
commit
3bf7cfd39e
4 changed files with 12 additions and 8 deletions
|
@ -32,13 +32,14 @@
|
|||
android:orientation="vertical">
|
||||
|
||||
<include
|
||||
layout="@layout/toolbar_standard"/>
|
||||
android:id="@+id/navigation_bar"
|
||||
android:layout="@layout/toolbar_standard"/>
|
||||
|
||||
<FrameLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_above="@+id/bottom_navigation_view"
|
||||
android:layout_below="@+id/appbar">
|
||||
android:layout_below="@+id/navigation_bar">
|
||||
|
||||
<android.support.v4.widget.SwipeRefreshLayout
|
||||
android:id="@+id/swipe_containing_list"
|
||||
|
|
|
@ -34,13 +34,14 @@
|
|||
android:orientation="vertical">
|
||||
|
||||
<include
|
||||
layout="@layout/toolbar_standard"/>
|
||||
android:id="@+id/navigation_bar"
|
||||
android:layout="@layout/toolbar_standard"/>
|
||||
|
||||
<FrameLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_above="@+id/bottom_navigation_view"
|
||||
android:layout_below="@+id/appbar"
|
||||
android:layout_below="@+id/navigation_bar"
|
||||
android:id="@+id/frame_container">
|
||||
|
||||
</FrameLayout>
|
||||
|
|
|
@ -33,13 +33,14 @@
|
|||
android:orientation="vertical">
|
||||
|
||||
<include
|
||||
layout="@layout/toolbar_standard"/>
|
||||
android:id="@+id/navigation_bar"
|
||||
android:layout="@layout/toolbar_standard"/>
|
||||
|
||||
<FrameLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_above="@+id/bottom_navigation_view"
|
||||
android:layout_below="@+id/appbar">
|
||||
android:layout_below="@+id/navigation_bar">
|
||||
|
||||
<android.support.v4.widget.SwipeRefreshLayout
|
||||
android:id="@+id/swipe_containing_list"
|
||||
|
|
|
@ -31,7 +31,8 @@
|
|||
android:orientation="vertical">
|
||||
|
||||
<include
|
||||
layout="@layout/toolbar_standard"/>
|
||||
android:id="@+id/navigation_bar"
|
||||
android:layout="@layout/toolbar_standard"/>
|
||||
|
||||
<FrameLayout
|
||||
android:id="@+id/upload_list_fragment"
|
||||
|
@ -39,7 +40,7 @@
|
|||
android:layout_height="match_parent"
|
||||
android:background="@color/background_color"
|
||||
android:layout_above="@+id/bottom_navigation_view"
|
||||
android:layout_below="@+id/appbar" />
|
||||
android:layout_below="@+id/navigation_bar" />
|
||||
|
||||
<android.support.design.widget.BottomNavigationView
|
||||
android:id="@+id/bottom_navigation_view"
|
||||
|
|
Loading…
Reference in a new issue