aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/fragment_gauge.xml
diff options
context:
space:
mode:
authorTrygve Laugstøl <trygvis@inamo.no>2014-12-31 16:31:49 +0100
committerTrygve Laugstøl <trygvis@inamo.no>2014-12-31 16:31:49 +0100
commited559834ccddafa955df5b528f08fba964e57699 (patch)
tree3fcbcedaf49232de5c8fe8b6f67bd2fd8c52afa9 /app/src/main/res/layout/fragment_gauge.xml
downloadio.trygvis.soilmoisture-android-ed559834ccddafa955df5b528f08fba964e57699.tar.gz
io.trygvis.soilmoisture-android-ed559834ccddafa955df5b528f08fba964e57699.tar.bz2
io.trygvis.soilmoisture-android-ed559834ccddafa955df5b528f08fba964e57699.tar.xz
io.trygvis.soilmoisture-android-ed559834ccddafa955df5b528f08fba964e57699.zip
o Initial import of Soil Moisture app.
Diffstat (limited to 'app/src/main/res/layout/fragment_gauge.xml')
-rw-r--r--app/src/main/res/layout/fragment_gauge.xml24
1 files changed, 24 insertions, 0 deletions
diff --git a/app/src/main/res/layout/fragment_gauge.xml b/app/src/main/res/layout/fragment_gauge.xml
new file mode 100644
index 0000000..ff1df86
--- /dev/null
+++ b/app/src/main/res/layout/fragment_gauge.xml
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:orientation="vertical"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:clickable="true"
+ android:focusable="true"
+ >
+
+ <TextView
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:text="Gauge: XX"
+ android:id="@+id/gauge_title"
+ android:layout_gravity="center_horizontal"
+ android:gravity="start"/>
+
+ <SeekBar
+ style="?android:attr/progressBarStyleHorizontal"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:id="@+id/gauge_seek_bar"
+ android:layout_gravity="center_horizontal"/>
+</LinearLayout> \ No newline at end of file