Я хочу добавить TextView над FloatingActionButton, я использую FrameLayout в качестве родительского макета TextView и FloatingActionButton, вот мой пример кода:
<FrameLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<android.support.design.widget.FloatingActionButton
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:backgroundTint="#00fff0"
app:borderWidth="0dp"
android:elevation="0dp"
app:fabSize="normal" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#000000"
android:text="above"/>
</FrameLayout>
но это бесполезно, TextView находится ниже FloatingActionButton, как это
и я хочу, чтобы это выглядело так:
Я беден за это, может ли кто-нибудь мне помочь?