29 lines
897 B
XML
29 lines
897 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent">
|
|
|
|
|
|
<ScrollView android:layout_height="380px"
|
|
android:layout_width="fill_parent">
|
|
|
|
<TextView android:id="@+id/textSettings"
|
|
android:layout_height="fill_parent"
|
|
android:layout_width="fill_parent"
|
|
android:layout_weight="1.0"
|
|
/>
|
|
|
|
</ScrollView>
|
|
|
|
<Button android:id="@+id/btnSettingsClose"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="40px"
|
|
android:text="Close Log"
|
|
android:layout_margin="0sp"
|
|
|
|
|
|
|
|
/>
|
|
</LinearLayout>
|