Mobile_Application_Developm.../DailyHelper/app/src/main/res/layout/fragment_weather.xml

36 lines
1.1 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/darker_gray">
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="Wetter Details"
android:textSize="80px"/>
<LinearLayout
android:id="@+id/ly_weather"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_below="@+id/ly_position"
android:layout_margin="20dp"
android:padding="20dp"
android:background="@drawable/border">
<TextView
android:id="@+id/tv_weather"
android:text="Wetter"
android:padding="10dp"
android:textSize="25sp"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
</RelativeLayout>