mirror of
https://github.com/fankes/termux-app.git
synced 2025-09-06 10:45:23 +08:00
The `terminal-margin-horizontal` key can be used to adjust the terminal left/right margin and the `terminal-margin-vertical` can be used to adjust the terminal top/bottom margin. This will also affect drawer. The user can set an integer value between `0` and `100` as `dp` units. The default value is still `3` for horizontal and `0` for vertical margin. So adding an entry like `terminal-margin-horizontal=10` to `termux.properties` file will allow users to set a horizontal margin of `10dp`. After updating the value, either restart termux or run `termux-reload-settings` for changes to take effect. This was added since for some users text on edges would not be shown on the screen or they had screen protectors/cases that covered screen edges (Of course, that would require fixing every single app and android system UI itself, so kinda stupid to use). Moreover, horizontal margin of like `10dp` may be helpful with peek-and-slide for people having gesture navigation enabled on android `10+` since they won't be to touch at exactly the edge of the screen to trigger peek (#1325). Closes #2210
111 lines
4.7 KiB
XML
111 lines
4.7 KiB
XML
<com.termux.app.terminal.TermuxActivityRootView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/activity_termux_root_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
android:fitsSystemWindows="true">
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/activity_termux_root_relative_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1"
|
|
android:layout_marginHorizontal="3dp"
|
|
android:layout_marginVertical="0dp"
|
|
android:orientation="vertical">
|
|
|
|
<androidx.drawerlayout.widget.DrawerLayout
|
|
android:id="@+id/drawer_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_alignParentTop="true"
|
|
android:layout_above="@+id/terminal_toolbar_view_pager"
|
|
android:layout_height="match_parent">
|
|
|
|
<com.termux.view.TerminalView
|
|
android:id="@+id/terminal_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:focusableInTouchMode="true"
|
|
android:scrollbarThumbVertical="@drawable/terminal_scroll_shape"
|
|
android:scrollbars="vertical"
|
|
android:importantForAutofill="no"
|
|
android:autofillHints="password" />
|
|
|
|
<LinearLayout
|
|
android:id="@+id/left_drawer"
|
|
android:layout_width="240dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="start"
|
|
android:background="@android:color/white"
|
|
android:choiceMode="singleChoice"
|
|
android:divider="@android:color/transparent"
|
|
android:dividerHeight="0dp"
|
|
android:descendantFocusability="blocksDescendants"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
<ImageButton
|
|
android:id="@+id/settings_button"
|
|
android:layout_width="40dp"
|
|
android:layout_height="40dp"
|
|
android:src="@drawable/ic_settings"
|
|
android:background="@null"
|
|
android:contentDescription="@string/action_open_settings" />
|
|
</LinearLayout>
|
|
|
|
<ListView
|
|
android:id="@+id/terminal_sessions_list"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_gravity="top"
|
|
android:layout_weight="1"
|
|
android:choiceMode="singleChoice"
|
|
android:longClickable="true" />
|
|
|
|
<LinearLayout
|
|
style="?android:attr/buttonBarStyle"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<Button
|
|
android:id="@+id/toggle_keyboard_button"
|
|
style="?android:attr/buttonBarButtonStyle"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:text="@string/action_toggle_soft_keyboard" />
|
|
|
|
<Button
|
|
android:id="@+id/new_session_button"
|
|
style="?android:attr/buttonBarButtonStyle"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:text="@string/action_new_session" />
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
|
|
</androidx.drawerlayout.widget.DrawerLayout>
|
|
|
|
<androidx.viewpager.widget.ViewPager
|
|
android:id="@+id/terminal_toolbar_view_pager"
|
|
android:visibility="gone"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="37.5dp"
|
|
android:background="@android:drawable/screen_background_dark_transparent"
|
|
android:layout_alignParentBottom="true" />
|
|
|
|
</RelativeLayout>
|
|
|
|
<View
|
|
android:id="@+id/activity_termux_bottom_space_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:background="@android:color/transparent" />
|
|
|
|
</com.termux.app.terminal.TermuxActivityRootView>
|