-
Notifications
You must be signed in to change notification settings - Fork 7
Open
Labels
Description
‼️ 문제
구현해야 하는 기능
지금까지 사용한 라이브러리 및 Class
문제의 Code
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/rv_tab2"
android:layout_width="match_parent"
android:layout_height="0dp"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
tools:listitem="@layout/rv_my_farm_item"/>
<ImageView
android:id="@+id/floatingActionButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:clickable="true"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
android:layout_marginEnd="16dp"
android:layout_marginBottom="35dp"
android:src="@drawable/btn_add_new_farm"
android:labelFor="@id/floatingActionButton"
android:contentDescription="새 농지 등록 버튼"
/>
</androidx.constraintlayout.widget.ConstraintLayout>
</layout>
