mirror of
https://github.com/ArcaneChat/android.git
synced 2026-07-03 14:05:24 +02:00
33 lines
1.3 KiB
XML
33 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<ScrollView
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="2">
|
|
|
|
<LinearLayout android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<EditText android:id="@+id/log_preview"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
style="?android:attr/textViewStyle"
|
|
android:padding="10dp"
|
|
android:background="@null"
|
|
android:fontFamily="monospace"
|
|
android:hint=""
|
|
android:scrollHorizontally="true"
|
|
android:inputType="textImeMultiLine|textNoSuggestions|textMultiLine"
|
|
android:textSize="10sp"
|
|
tools:ignore="UnusedAttribute,SmallSp"/>
|
|
</LinearLayout>
|
|
</ScrollView>
|
|
|
|
</LinearLayout> |