The `TextIOActivity` can be used to edit or view text based on various config options defined by `TextIOInfo` and supports `monospace` font and horizontal scrolling for editing scripts, etc. Current max text limit is `95KB`, which can be increased in future.
15 lines
606 B
XML
15 lines
606 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<resources xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<style name="Theme.AppCompat.TermuxReportActivity" parent="Theme.AppCompat.Light.NoActionBar">
|
|
<item name="colorPrimaryDark">#FF0000</item>
|
|
</style>
|
|
|
|
<style name="Theme.AppCompat.TermuxTextIOActivity" parent="Theme.AppCompat.Light.NoActionBar">
|
|
<item name="colorPrimaryDark">#FF0000</item>
|
|
</style>
|
|
|
|
<style name="Toolbar.Title" parent="TextAppearance.Widget.AppCompat.Toolbar.Title">
|
|
<item name="android:textSize">14sp</item>
|
|
</style>
|
|
</resources>
|