fix forge responsive widget
continuous-integration/drone/push Build is passing Details

OpenWeatherApi
Lucas Delanier 2 years ago
parent 2b44820d67
commit bb0b05ed91

@ -27,7 +27,8 @@
android:id="@+id/fragment" android:id="@+id/fragment"
android:name="androidx.navigation.fragment.NavHostFragment" android:name="androidx.navigation.fragment.NavHostFragment"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="725dp" android:layout_height="match_parent"
android:layout_marginBottom="63dp"
app:defaultNavHost="true" app:defaultNavHost="true"
app:layout_constraintEnd_toEndOf="parent" app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" app:layout_constraintStart_toStartOf="parent"

@ -14,20 +14,20 @@
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:gravity="center" android:gravity="center"
android:paddingTop="50dp" android:paddingTop="50dp"
android:paddingBottom="20dp" android:paddingBottom="30dp"
app:layout_constraintEnd_toEndOf="parent" app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" app:layout_constraintTop_toTopOf="parent"
android:layout_marginBottom="20dp"> app:layout_constraintBottom_toTopOf="@id/RecipeScroll">
<TextView <TextView
android:id="@+id/backbutton" android:id="@+id/backbutton"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_gravity="left|center_vertical" android:layout_gravity="start|center_vertical"
android:focusable="true" android:focusable="true"
android:drawableStart="@drawable/back" app:drawableStartCompat="@drawable/back"
android:drawableTint="@color/blue" app:drawableTint="@color/blue"
android:text="Home" android:text="Home"
android:textColor="@color/blue" android:textColor="@color/blue"
android:textSize="16sp" android:textSize="16sp"
@ -51,96 +51,108 @@
</FrameLayout> </FrameLayout>
<ScrollView <androidx.core.widget.NestedScrollView
android:id="@+id/RecipeScroll" android:id="@+id/RecipeScroll"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="635dp" android:layout_height="4294967294dp"
android:paddingHorizontal="10dp" android:paddingHorizontal="10dp"
app:layout_constraintTop_toBottomOf="@id/frameLayout"
app:layout_constraintEnd_toEndOf="parent" app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/frameLayout"> app:layout_constraintBottom_toBottomOf="parent"
>
<LinearLayout <LinearLayout
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:orientation="vertical"> android:orientation="vertical">
<LinearLayout <LinearLayout
android:background="@drawable/recipelistcard"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_marginVertical="10dp" android:layout_marginVertical="10dp"
android:background="@drawable/recipelistcard"
android:orientation="vertical"
android:paddingBottom="10dp"> android:paddingBottom="10dp">
<TextView <TextView
android:paddingTop="20dp"
android:paddingLeft="20dp"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:textSize="17dp" android:paddingLeft="20dp"
android:paddingTop="20dp"
android:text="Objects"
android:textColor="@color/grey_400" android:textColor="@color/grey_400"
android:textStyle="bold" android:textSize="17sp"
android:text="Objects"/> android:textStyle="bold" />
<androidx.recyclerview.widget.RecyclerView <androidx.recyclerview.widget.RecyclerView
android:overScrollMode="never"
android:id="@+id/RecyclerviewObjects" android:id="@+id/RecyclerviewObjects"
android:layout_marginHorizontal="20dp"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
tools:listitem="@layout/list_recipe" android:layout_marginHorizontal="20dp"
tools:itemCount="3"/> android:overScrollMode="never"
tools:itemCount="3"
tools:listitem="@layout/list_recipe" />
</LinearLayout> </LinearLayout>
<LinearLayout <LinearLayout
android:background="@drawable/recipelistcard"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_marginVertical="10dp" android:layout_marginVertical="10dp"
android:background="@drawable/recipelistcard"
android:orientation="vertical"
android:paddingBottom="10dp"> android:paddingBottom="10dp">
<TextView <TextView
android:paddingTop="20dp"
android:paddingLeft="20dp"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:textSize="17dp" android:paddingStart="20dp"
android:paddingTop="20dp"
android:text="Tools"
android:textColor="@color/grey_400" android:textColor="@color/grey_400"
android:textStyle="bold" android:textSize="17sp"
android:text="Tools"/> android:textStyle="bold" />
<androidx.recyclerview.widget.RecyclerView <androidx.recyclerview.widget.RecyclerView
android:overScrollMode="never"
android:id="@+id/RecyclerviewTools" android:id="@+id/RecyclerviewTools"
android:layout_marginHorizontal="20dp"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
tools:listitem="@layout/list_recipe" android:layout_marginHorizontal="20dp"
tools:itemCount="3"/> android:overScrollMode="never"
tools:itemCount="3"
tools:listitem="@layout/list_recipe" />
</LinearLayout> </LinearLayout>
<LinearLayout <LinearLayout
android:background="@drawable/recipelistcard"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_marginVertical="10dp" android:layout_marginVertical="10dp"
android:background="@drawable/recipelistcard"
android:orientation="vertical"
android:paddingBottom="10dp"> android:paddingBottom="10dp">
<TextView <TextView
android:paddingTop="20dp"
android:paddingLeft="20dp"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:textSize="17dp" android:paddingStart="20dp"
android:paddingTop="20dp"
android:text="Blacksmithing"
android:textColor="@color/grey_400" android:textColor="@color/grey_400"
android:textStyle="bold" android:textSize="17sp"
android:text="Blacksmithing"/> android:textStyle="bold" />
<androidx.recyclerview.widget.RecyclerView <androidx.recyclerview.widget.RecyclerView
android:id="@+id/RecyclerviewBlacksmithing" android:id="@+id/RecyclerviewBlacksmithing"
android:overScrollMode="never"
android:layout_marginHorizontal="20dp"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
tools:listitem="@layout/list_recipe" android:layout_marginHorizontal="20dp"
tools:itemCount="3"/> android:overScrollMode="never"
tools:itemCount="3"
tools:listitem="@layout/list_recipe"/>
</LinearLayout> </LinearLayout>
@ -149,7 +161,6 @@
</LinearLayout> </LinearLayout>
</androidx.core.widget.NestedScrollView>
</ScrollView>
</androidx.constraintlayout.widget.ConstraintLayout> </androidx.constraintlayout.widget.ConstraintLayout>
Loading…
Cancel
Save