我正在嘗試使用工具欄製作底部欄並將其與父級底部對齊。這是它的外觀:Android工具欄佈局問題
但不知何故,在圖像中所提到的,他們是一個很大的空白,由於其佈局是不完全居中。爲什麼會發生?
bottom_tool_bar.xml
<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="@color/ColorPrimaryLight"
android:elevation="4dp"
android:layout_alignParentBottom="true"
>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<ImageView
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:id="@+id/origin_select"
android:src="@mipmap/ic_action_play"
android:background="@drawable/feedback_background"
android:onClick="choose_origin_button"
/>
<ImageView
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:id="@+id/destination_select_select"
android:src="@mipmap/ic_action_stop"
android:background="@drawable/feedback_background"
android:onClick="choose_destination_button"/>
<ImageView
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:id="@+id/poi_select"
android:src="@mipmap/ic_action_pause"
android:background="@drawable/feedback_background"
android:onClick="choose_interest_button"/>
</LinearLayout>
</android.support.v7.widget.Toolbar>
爲有關活動的佈局文件:
<include
android:id="@+id/tool_bar"
layout="@layout/tool_bar"
>
</include>
<include
android:id="@+id/bottom_tool_bar"
layout="@layout/bottom_tool_bar">
</include>
<fragment
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/plot_path_map"
android:layout_below="@+id/tool_bar"
android:layout_above="@+id/bottom_tool_bar"
android:name="com.google.android.gms.maps.MapFragment"
/>
<Button
android:layout_width="match_parent"
android:layout_height="50dp"
android:id="@+id/submit_button"
android:text="Submit"
android:textColor="#FFFFFF"
android:layout_centerHorizontal="true"
android:background="@drawable/feedback_background"
android:layout_centerVertical="true"
android:textSize="20sp"
android:layout_alignParentBottom="true"
android:visibility="invisible"
android:onClick="submit_button_click"
/>
</RelativeLayout>
http://stackoverflow.com/questions/26455027/android-api-21-toolbar-padding –
那麼,任何答案都適合你嗎? – commonSenseCode