Skip to content

Commit 88b8286

Browse files
committed
Update
1 parent 0f1e370 commit 88b8286

2 files changed

Lines changed: 14 additions & 29 deletions

File tree

.github/module/termux/py/common.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -62,11 +62,11 @@ def __init__(self):
6262
script_name = os.path.basename(exec_path)
6363
# logger hasn't been initialized yet at this point. Use print to output
6464
# warnings.
65-
print(
66-
'Warning: releasetools script should be invoked as hermetic Python '
67-
'executable -- build and run `{}` directly.'.format(
68-
script_name[:-3]),
69-
file=sys.stderr)
65+
# print(
66+
# 'Warning: releasetools script should be invoked as hermetic Python '
67+
# 'executable -- build and run `{}` directly.'.format(
68+
# script_name[:-3]),
69+
# file=sys.stderr)
7070
self.search_path = os.path.dirname(os.path.dirname(exec_path))
7171

7272
self.signapk_path = "bin/signapk.jar" # Relative to search_path
Lines changed: 9 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,24 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<androidx.drawerlayout.widget.DrawerLayout
2+
<FrameLayout
33
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:id="@+id/drawer_layout"
74
android:layout_width="match_parent"
8-
android:layout_height="match_parent"
9-
android:fitsSystemWindows="false"
10-
tools:openDrawer="start">
5+
android:layout_height="match_parent">
116

12-
<!-- 1. Nội dung chính của màn hình -->
13-
<include
14-
layout="@layout/app_bar_main"
15-
android:layout_width="match_parent"
16-
android:layout_height="match_parent" />
17-
18-
<!-- 2. Menu Drawer mờ (Khuyên dùng chiều rộng cố định khoảng 300dp - 320dp) -->
7+
<!-- Nội dung chính có nền Blur -->
198
<com.omarea.common.ui.BlurViewLinearLayout
209
android:id="@+id/file_drawer_container"
21-
android:layout_width="300dp"
10+
android:layout_width="match_parent"
2211
android:layout_height="match_parent"
23-
android:layout_gravity="start"
2412
android:orientation="vertical">
25-
13+
14+
<include layout="@layout/app_bar_main" />
15+
2616
<ListView
2717
android:id="@+id/file_selector_list"
2818
android:layout_width="match_parent"
2919
android:layout_height="match_parent"
30-
android:layout_marginTop="?attr/actionBarSize"
3120
android:fastScrollEnabled="true"
32-
android:fadingEdge="vertical"
33-
android:requiresFadingEdge="vertical"
34-
android:scrollbarStyle="insideOverlay"
3521
android:smoothScrollbar="true" />
36-
37-
</com.omarea.common.ui.BlurViewLinearLayout>
3822

39-
</androidx.drawerlayout.widget.DrawerLayout>
23+
</com.omarea.common.ui.BlurViewLinearLayout>
24+
</FrameLayout>

0 commit comments

Comments
 (0)