-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain_terminal.xml
40 lines (35 loc) · 1.58 KB
/
main_terminal.xml
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
34
35
36
37
38
39
40
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/terminal_background">
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/console_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text=""
android:textColor="@color/terminal_text"
android:textColorLink="@color/terminal_text"
android:textSize="14dip" />
<EditText
android:id="@+id/text_input"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_below="@+id/console_view"
android:background="@color/terminal_background"
android:imeOptions="actionDone"
android:inputType="text"
android:textColor="@color/terminal_text"
android:textColorLink="@color/terminal_background"
android:textCursorDrawable="@drawable/cursor_color"
android:textSize="14dip" />
</RelativeLayout>
</ScrollView>
</RelativeLayout>