-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Expand file tree
/
Copy pathactivity_card_browser.xml
More file actions
33 lines (31 loc) · 1.43 KB
/
activity_card_browser.xml
File metadata and controls
33 lines (31 loc) · 1.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<include layout="@layout/include_browser_toolbar" />
<LinearLayout
android:id="@+id/card_browser_xl_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<androidx.fragment.app.FragmentContainerView
android:id="@+id/card_browser_frame"
android:layout_width="1dip"
android:layout_weight="3"
android:layout_height="match_parent"/>
<com.ichi2.anki.ui.ResizingDivider
android:id="@+id/card_browser_resizing_divider"
android:layout_width="8dp"
android:layout_height="match_parent" />
<androidx.fragment.app.FragmentContainerView
android:id="@+id/note_editor_frame"
android:layout_weight="2"
android:layout_width="1dip"
android:layout_height="match_parent"/>
</LinearLayout>
</LinearLayout>
</androidx.coordinatorlayout.widget.CoordinatorLayout>