70 lines
2.7 KiB
XML
70 lines
2.7 KiB
XML
<!--
|
|
~ // Copyright (c) 2024 ShanMukha Innovations Pvt. Ltd. All rights reserved.
|
|
~ // Notice: All information contained herein is, and remains
|
|
~ // the property of ShanMukha Innovations Pvt. Ltd. and its suppliers,
|
|
~ // if any. The intellectual and technical concepts contained
|
|
~ // herein are proprietary to ShanMukha Innovations Pvt. Ltd.
|
|
~ // and its suppliers and may be covered by Indian and Foreign Patents,
|
|
~ // patents in process, and are protected by trade secret or copyright law.
|
|
~ // Dissemination of this information or reproduction of this material
|
|
~ // is strictly forbidden unless prior written permission is obtained
|
|
~ // from ShanMukha Innovations Pvt. Ltd.
|
|
-->
|
|
|
|
<RelativeLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginStart="8dp"
|
|
android:layout_marginEnd="8dp"
|
|
>
|
|
|
|
<TextView
|
|
android:id="@+id/message_command"
|
|
style="@style/title1_1"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginTop="10dp"
|
|
android:gravity="start|bottom"
|
|
android:text="Start"
|
|
android:scrollbars = "vertical"
|
|
android:layout_alignParentStart="true"
|
|
android:layout_alignParentEnd="true"
|
|
android:layout_above="@+id/ll_commands"
|
|
android:visibility="visible"
|
|
android:textColor="@color/black"
|
|
android:textSize="18sp"
|
|
/>
|
|
<RelativeLayout
|
|
android:id="@+id/ll_commands"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentEnd="true"
|
|
android:layout_alignParentStart="true"
|
|
android:layout_alignParentBottom="true"
|
|
android:orientation="horizontal">
|
|
<EditText
|
|
android:id="@+id/et_commands"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="10dp"
|
|
android:hint="@string/commands"
|
|
android:layout_alignParentStart="true"
|
|
android:imeOptions="actionDone"
|
|
android:textSize="18sp"
|
|
android:layout_marginBottom="10dp"
|
|
/>
|
|
<ImageView
|
|
android:id="@+id/send_command"
|
|
android:layout_width="32dp"
|
|
android:layout_height="26dp"
|
|
android:layout_alignParentEnd="true"
|
|
android:layout_centerInParent="true"
|
|
android:src="@drawable/ic_baseline_send_24"/>
|
|
</RelativeLayout>
|
|
|
|
|
|
</RelativeLayout>
|