121 lines
3.9 KiB
XML
121 lines
3.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
android:padding="8dp"
|
|
android:background="#000000">
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="SSH Terminal"
|
|
android:textSize="18sp"
|
|
android:textColor="#FFFFFF"
|
|
android:textStyle="bold"
|
|
android:gravity="center"
|
|
android:layout_marginBottom="8dp"
|
|
android:background="#333333"
|
|
android:padding="8dp" />
|
|
|
|
<ScrollView
|
|
android:id="@+id/terminalScrollView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1"
|
|
android:background="#000000"
|
|
android:padding="4dp">
|
|
|
|
<TextView
|
|
android:id="@+id/terminalView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textColor="#00FF00"
|
|
android:textSize="14sp"
|
|
android:fontFamily="monospace"
|
|
android:background="#000000"
|
|
android:textIsSelectable="true" />
|
|
|
|
</ScrollView>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:layout_marginTop="8dp">
|
|
|
|
<EditText
|
|
android:id="@+id/inputEditText"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:hint="Type command here..."
|
|
android:textColor="#FFFFFF"
|
|
android:textSize="14sp"
|
|
android:background="#333333"
|
|
android:imeOptions="actionDone"
|
|
android:maxLines="1"
|
|
android:layout_marginEnd="8dp" />
|
|
|
|
<Button
|
|
android:id="@+id/sendButton"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="Send"
|
|
android:textColor="#FFFFFF"
|
|
android:backgroundTint="#4CAF50" />
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:layout_marginTop="8dp"
|
|
android:background="#333333"
|
|
android:padding="8dp">
|
|
|
|
<Button
|
|
android:id="@+id/ctrlCButton"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:text="Ctrl+C"
|
|
android:textColor="#FFFFFF"
|
|
android:backgroundTint="#FF5722"
|
|
android:layout_marginEnd="4dp" />
|
|
|
|
<Button
|
|
android:id="@+id/ctrlDButton"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:text="Ctrl+D"
|
|
android:textColor="#FFFFFF"
|
|
android:backgroundTint="#FF9800"
|
|
android:layout_marginStart="4dp"
|
|
android:layout_marginEnd="4dp" />
|
|
|
|
<Button
|
|
android:id="@+id/clearButton"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:text="Clear"
|
|
android:textColor="#FFFFFF"
|
|
android:backgroundTint="#2196F3"
|
|
android:layout_marginStart="4dp" />
|
|
|
|
</LinearLayout>
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="💡 Use ↑↓ for command history"
|
|
android:textSize="12sp"
|
|
android:textColor="#AAAAAA"
|
|
android:gravity="center"
|
|
android:layout_marginTop="8dp"
|
|
android:padding="4dp" />
|
|
|
|
</LinearLayout>
|