私はGoogleマップとその下に2つのコントロールを表示します。 これはどのように達成するのですか?私はこのように試しました:縦線LinearLayout、地図を縮小するとより多くのコントロールが追加されます
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:map="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/map"
tools:layout="@android:layout/browser_link_context_header" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<EditText
android:id="@+id/edOrderLocation"
android:layout_height="wrap_content"
android:layout_width="match_parent" />
<Spinner
android:id="@+id/spinJobType"
android:layout_height="wrap_content"
android:layout_width="match_parent" />
</LinearLayout>
</LinearLayout>
コントロールは表示されず、画面全体がマップを占めます。 私はこれを試してみてくださいコントロールが画面の下部に表示されるようにしたいので、それに応じて断片の大きさをreduzing
は、Googleマップか何かのような結果を取得しようとしていますか?その場合、CollapsingToolbarLayoutを使用することができます。どのようなレイアウトを作成しようとしていますか? –