blob: c814e7295ac9eaac432c0fe5eee116feb305b249 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?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">
<fragment
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:name="de.blinkt.openvpn.fragments.LogFragment"
android:id="@+id/fragment"
tools:layout="@layout/log_fragment"/>
</LinearLayout>
|