在以下屏幕截图中看到的两个按钮确实有一些困难。
要解决该问题,我想移动菜单按钮(或工具栏本身)或两个Google地图按钮。
我无法移动其中任何一个。出于学习原因,我想知道如何移动这两个元素。
以下是可能相关的代码。
我的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();
我的activity_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>
我的toolbar.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>