Started adding code to create a datapoint - getting error 405 "POST Not Allowed", which might be an issue with the API

This commit is contained in:
Graham Jones
2021-12-16 21:45:08 +00:00
parent 6031436cc8
commit bec437e858
4 changed files with 176 additions and 30 deletions

View File

@@ -93,6 +93,26 @@
android:layout_weight="1"
android:text="@string/logout" />
</LinearLayout>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<Button
android:id="@+id/createEventBtn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Create Event" />
<Button
android:id="@+id/createDatapointBtn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Create Datapoint" />
</LinearLayout>
</LinearLayout>
</LinearLayout>