ProjectLaogai/app/src/main/res/layout/fragment_home.xml

25 lines
1017 B
XML
Raw Normal View History

2018-10-24 18:22:05 +02:00
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
2018-10-30 20:41:22 +01:00
tools:context=".fragments.HomeFragment">
2018-10-24 18:22:05 +02:00
2018-10-26 00:50:37 +02:00
<androidx.constraintlayout.widget.ConstraintLayout
2018-10-24 18:22:05 +02:00
android:layout_width="match_parent"
android:layout_height="match_parent">
<ScrollView
2019-03-22 21:59:32 +01:00
android:layout_width="match_parent"
android:layout_height="match_parent">
2018-10-24 18:22:05 +02:00
<LinearLayout
android:orientation="vertical"
2019-03-22 21:59:32 +01:00
android:layout_width="match_parent"
android:layout_height="wrap_content" android:id="@+id/linLayout_Home">
2018-10-24 18:22:05 +02:00
</LinearLayout>
</ScrollView>
2018-10-26 00:50:37 +02:00
</androidx.constraintlayout.widget.ConstraintLayout>
2018-10-24 18:22:05 +02:00
</FrameLayout>