Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/PojavLauncher
Path: blob/v3_openjdk/app_pojavlauncher/src/main/res/layout/activity_basemain.xml
2130 views
1
<?xml version="1.0" encoding="utf-8"?>
2
<androidx.drawerlayout.widget.DrawerLayout
3
xmlns:android="http://schemas.android.com/apk/res/android"
4
xmlns:app="http://schemas.android.com/apk/res-auto"
5
xmlns:tools="http://schemas.android.com/tools"
6
android:layout_height="match_parent"
7
android:layout_width="match_parent"
8
android:layout_alignParentRight="true"
9
android:id="@+id/main_drawer_options"
10
android:background="@drawable/no_focus_shown"
11
android:keepScreenOn="true">
12
13
<FrameLayout
14
android:id="@+id/content_frame"
15
android:layout_width="match_parent"
16
android:layout_height="match_parent">
17
18
<net.kdt.pojavlaunch.customcontrols.ControlLayout
19
android:id="@+id/main_control_layout"
20
android:layout_width="match_parent"
21
android:layout_height="match_parent">
22
23
<View style="@style/DimensionTracker"/>
24
25
<net.kdt.pojavlaunch.MinecraftGLSurface
26
android:id="@+id/main_game_render_view"
27
android:layout_width="fill_parent"
28
android:layout_height="fill_parent"
29
android:defaultFocusHighlightEnabled="false"
30
tools:ignore="UnusedAttribute" />
31
32
<net.kdt.pojavlaunch.customcontrols.mouse.Touchpad
33
android:layout_height="match_parent"
34
android:layout_width="match_parent"
35
android:orientation="vertical"
36
android:id="@+id/main_touchpad"
37
android:focusable="false"
38
android:translationZ="1dp"
39
android:visibility="gone"/>
40
41
42
<net.kdt.pojavlaunch.customcontrols.keyboard.TouchCharInput
43
android:id="@+id/mainTouchCharInput"
44
android:layout_width="1dp"
45
android:layout_height="1dp"
46
android:background="@android:color/darker_gray"
47
android:ems="10"
48
android:imeOptions="flagNoFullscreen|flagNoExtractUi|flagNoPersonalizedLearning|actionDone"
49
android:inputType="textFilter|textImeMultiLine|textAutoComplete|textAutoCorrect"
50
tools:ignore="TouchTargetSizeCheck" />
51
52
<net.kdt.pojavlaunch.customcontrols.handleview.DrawerPullButton
53
android:id="@+id/drawer_button"
54
android:layout_width="40dp"
55
android:layout_height="20dp"
56
android:padding="8dp"
57
android:elevation="10dp"
58
android:layout_gravity="center_horizontal"/>
59
<net.kdt.pojavlaunch.customcontrols.mouse.HotbarView
60
android:id="@+id/hotbar_view"
61
android:layout_width="0px"
62
android:layout_height="0px"/>
63
64
</net.kdt.pojavlaunch.customcontrols.ControlLayout>
65
66
<com.kdt.LoggerView
67
android:id="@+id/mainLoggerView"
68
android:layout_width="match_parent"
69
android:layout_height="match_parent"
70
android:visibility="gone"
71
/>
72
73
</FrameLayout>
74
75
<ListView
76
android:layout_width="200dp"
77
android:layout_height="match_parent"
78
android:layout_gravity="right"
79
android:background="?attr/colorBackgroundFloating"
80
android:fitsSystemWindows="false"
81
android:id="@+id/main_navigation_view"/>
82
83
</androidx.drawerlayout.widget.DrawerLayout>
84
85
86