summaryrefslogtreecommitdiff
path: root/org.fox.ttrss/src/main/res/layout/activity_logcat.xml
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2018-07-13 14:00:22 +0300
committerAndrew Dolgov <[email protected]>2018-07-13 14:00:22 +0300
commitd819f6c4d9162cfbfa31a6eabb995fe01fef8f78 (patch)
tree5702237955f408d6f7fc768bd2c26fcbe6d406e5 /org.fox.ttrss/src/main/res/layout/activity_logcat.xml
parent8a9a2e9b5c8c5579d285e78bc8e18a2ea39ced35 (diff)
add simple logcat viewer
Diffstat (limited to 'org.fox.ttrss/src/main/res/layout/activity_logcat.xml')
-rwxr-xr-xorg.fox.ttrss/src/main/res/layout/activity_logcat.xml26
1 files changed, 26 insertions, 0 deletions
diff --git a/org.fox.ttrss/src/main/res/layout/activity_logcat.xml b/org.fox.ttrss/src/main/res/layout/activity_logcat.xml
new file mode 100755
index 00000000..39275c03
--- /dev/null
+++ b/org.fox.ttrss/src/main/res/layout/activity_logcat.xml
@@ -0,0 +1,26 @@
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:background="?android:colorBackground"
+ android:fitsSystemWindows="true"
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent" >
+
+ <include layout="@layout/toolbar" android:id="@+id/toolbar" />
+
+ <android.support.v4.widget.SwipeRefreshLayout
+ android:id="@+id/logcat_swipe_container"
+ android:layout_below="@+id/toolbar"
+ android:layout_alignParentBottom="true"
+ android:layout_alignParentLeft="true"
+ android:layout_alignParentStart="true"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent">
+
+ <ListView
+ android:id="@+id/logcat_output"
+ android:scrollbars="vertical"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"/>
+
+ </android.support.v4.widget.SwipeRefreshLayout>
+
+</RelativeLayout> \ No newline at end of file