Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
termux
GitHub Repository: termux/termux-api
Path: blob/master/app/src/main/res/layout/dialog_textarea_input.xml
1182 views
1
<?xml version="1.0" encoding="utf-8"?>
2
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3
xmlns:tools="http://schemas.android.com/tools"
4
android:id="@+id/RelativeLayout1"
5
android:layout_width="fill_parent"
6
android:layout_height="fill_parent"
7
android:padding="16dp"
8
android:paddingBottom="24dp"
9
android:orientation="vertical" >
10
11
<EditText
12
android:id="@+id/text_input"
13
android:layout_width="match_parent"
14
android:layout_height="wrap_content"
15
android:gravity="top|start"
16
android:inputType="textMultiLine"
17
android:lines="10"
18
android:scrollbars="vertical"
19
android:importantForAutofill="no"
20
tools:ignore="LabelFor" />
21
22
<LinearLayout
23
style="?android:attr/buttonBarStyle"
24
android:layout_width="wrap_content"
25
android:layout_height="wrap_content"
26
android:layout_gravity="end"
27
android:orientation="horizontal" >
28
29
<Button
30
android:id="@+id/cancel_button"
31
style="?android:attr/buttonBarButtonStyle"
32
android:layout_width="wrap_content"
33
android:layout_height="wrap_content"
34
android:text="@android:string/cancel" />
35
36
<Button
37
android:id="@+id/ok_button"
38
style="?android:attr/buttonBarButtonStyle"
39
android:layout_width="wrap_content"
40
android:layout_height="wrap_content"
41
android:text="@android:string/ok" />
42
</LinearLayout>
43
44
</LinearLayout>
45