AndroidAPS/app/src/main/res/layout/insightpump_fragment.xml

38 lines
1.3 KiB
XML
Raw Normal View History

2018-01-24 15:18:31 +01:00
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
2018-01-26 17:46:09 +01:00
tools:context="info.nightscout.androidaps.plugins.PumpInsight.InsightPumpFragment">
2018-01-24 15:18:31 +01:00
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
2018-01-26 17:46:09 +01:00
android:id="@+id/insighttopholder"
2018-01-24 15:18:31 +01:00
android:layout_width="match_parent"
2018-01-26 17:46:09 +01:00
android:layout_height="wrap_content"
2018-01-24 15:18:31 +01:00
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
2018-01-26 17:46:09 +01:00
android:layout_marginTop="10dp"
android:layout_marginBottom="15dp"
2018-01-24 15:18:31 +01:00
android:text="@string/insightpump"
android:textAppearance="?android:attr/textAppearanceLarge" />
<LinearLayout
2018-01-26 17:46:09 +01:00
android:id="@+id/insightholder"
2018-01-24 15:18:31 +01:00
android:layout_width="match_parent"
2018-01-26 17:46:09 +01:00
android:layout_height="match_parent"
android:orientation="vertical">
2018-01-24 15:18:31 +01:00
</LinearLayout>
</LinearLayout>
</ScrollView>
</FrameLayout>