Как добавить FloatingActionButton на карты в xamarin.android - PullRequest
0 голосов
/ 16 ноября 2018

Я пытаюсь добавить пользовательскую кнопку, чтобы найти меня для карт. Я узнал, что нам нужно использовать FloatingActionButton, поэтому я создал в макете следующее:

  <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:fab="http://schemas.android.com/apk/res/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">
    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:id="@+id/header">
        <include
            android:id="@+id/mapToolbar"
            layout="@layout/toolbar" />
    </RelativeLayout>
    <Spinner
        android:id="@+id/spinner"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:entries="@array/maptype_arrays" />
    <fragment
        android.id="@+id/map"
        android:tag="maptag"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:name="com.google.android.gms.maps.MapFragment" />
    <android.support.design.widget.FloatingActionButton
        android:id="@+id/fab"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="bottom|left"
        android:src="@drawable/locateme_icon"
        android:layout_marginRight="15dp"
        android:layout_marginBottom="15dp"
        android:layout_alignParentBottom="true"
        android:layout_alignParentRight="true" />
</LinearLayout>

Но я не получаю кнопку на экране при запуске этого. Есть что-нибудь, чтобы добавить вместе с этим.

Заранее спасибо.

1 Ответ

0 голосов
/ 16 ноября 2018

Я получил отображаемую кнопку FloatingActionB путем изменения линейного макета на макет кадра.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...