に取り組んでいない、私は私の問題を解決するために、任意のを見つけることができませんでした。標高が解決策を検索した後のLinearLayout
私は私のアプリの大部分に影を生成し、いくつかの上昇を持っています。
しかし、特定の場所では、私はそれを動作させることができません。
(私は下の絵の上に矢印を置く場所それはだ)
ツールバーの下に白い領域がLinearLayout
レイアウトを表示するFragment
次のとおりです。
<LinearLayout
android:id="@+id/panelAddress"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/button_flat_white"
android:elevation="10dp"
android:orientation="vertical"
android:padding="20dp"
>
//some content
</LinearLayout>
フラグメントの親:
<android.support.v4.widget.DrawerLayout
android:id="@+id/drawerLayout"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<include
android:id="@+id/custom_toolbar"
layout="@layout/toolbar"/>
<RelativeLayout
android:id="@+id/mapLayout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<fragment
android:id="@+id/map"
class="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
<FrameLayout
android:id="@+id/fragment_container_top"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
/>
<FrameLayout
android:id="@+id/fragment_container_bottom"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"/>
</RelativeLayout>
</LinearLayout>
</android.support.v4.widget.DrawerLayout>
あなたは私が私の標高を取得しない理由についての考えを持っていますか?
直線レイアウトの背景に赤を塗りつぶすだけで、実際にその領域が何であるかを調べることができます。それは断片全体に広がっているかもしれません。 – CurlyCorvus
@CurlyCorvus、それは正しい場所をとります.. –
あなたのアンドロイドを試しましたか:outlineProvider = "bounds"あなたの断片ですか? –