add WebView

This commit is contained in:
2019-02-24 19:16:36 +01:00
parent 761f4d8c27
commit 56195eb8f0
9 changed files with 210 additions and 6 deletions

View File

@@ -6,13 +6,14 @@
android:layout_height="match_parent"
tools:context=".MainActivity">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
<WebView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/webview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
app:layout_constraintTop_toTopOf="parent"></WebView>
</android.support.constraint.ConstraintLayout>

View File

@@ -1,3 +1,4 @@
<resources>
<string name="app_name">WiFi Weather Station</string>
<string name="action_settings">Einstellungen</string>
</resources>