Перемещение MylocationButton / Компас и панель инструментов - PullRequest
0 голосов
/ 13 февраля 2019

У меня есть некоторые трудности с двумя кнопками, показанными на скриншоте ниже.

Screenshot

  • Кнопка Mylocation перекрывается с моей кнопкой Menu
  • Две кнопки не активируются, потому что панель инструментов (ее прозрачная) находится сверху

Чтобы решить эту проблему, я хочу переместить либо Menubutton (или сама панель инструментов), либо две кнопки Google maps.

Я не могу сдвинуть ни одного из них.Для изучения причин я хотел бы знать, как перемещать эти два элемента.

Ниже приведен код, который может иметь значение.

My MapsActivity.Java:

public class MapsActivity extends AppCompatActivity implements
        OnMapReadyCallback,
        GoogleApiClient.ConnectionCallbacks,
        GoogleApiClient.OnConnectionFailedListener,
        LocationListener, GoogleMap.OnMarkerDragListener {

    private GoogleMap mMap;
    private GoogleApiClient googleApiClient;
    private LocationRequest locationRequest;
    private Location lastLocation;
    private Marker currentUserLocationMarker;
    private Marker destinationMarker;

    private static final int Request_User_Location_Code = 99;
    double end_latitude, end_longitude;
    double start_latitude, start_longitude;


    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_maps);

        Toolbar toolbar = findViewById(R.id.toolbar);
        setSupportActionBar(toolbar);
        getSupportActionBar().setDisplayShowTitleEnabled(false); // hide Toolbarname
        toolbar.bringToFront();

Моя деятельность_maps.xml

<?xml version="1.0" encoding="utf-8"?>

<RelativeLayout xmlns:tools="http://schemas.android.com/tools"
    android:layout_height="match_parent"
android:layout_width="match_parent"
xmlns:android="http://schemas.android.com/apk/res/android">

    <include
        android:id="@+id/toolbar"
        layout="@layout/toolbar" />


<fragment xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:map="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/map"
    android:name="com.google.android.gms.maps.SupportMapFragment"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_alignParentStart="true"
    android:layout_alignParentBottom="true"
    tools:context=".Map" />

    <EditText
        android:id="@+id/TF_location"
        android:layout_width="300dp"
        android:layout_height="wrap_content"
        android:layout_alignParentStart="true"
        android:layout_alignParentTop="true"
        android:layout_marginStart="10dp"
        android:layout_marginTop="55dp"
        android:background="#FFF"
        android:elevation="10dp"
        android:ems="10"
        android:hint="Wohin soll's heute gehen?"
        android:imeOptions="actionDone"
        android:inputType="textPersonName" />

</RelativeLayout>

Моя панель инструментов.xml:

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@null">

</android.support.v7.widget.Toolbar>
...