<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout 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:id="@+id/main"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
tools:context=".LogActivity">
|
<ScrollView
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:fillViewport="true">
|
<TextView
|
android:id="@+id/log_text_view"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:textSize="12sp"
|
android:textColor="#FFFFFF"
|
android:background="#000000"
|
android:focusable="true"
|
android:singleLine="false"
|
android:focusableInTouchMode="true"
|
android:breakStrategy="high_quality"
|
android:hyphenationFrequency="normal"
|
android:scrollbars="vertical" />
|
</ScrollView>
|
</LinearLayout>
|