2016-11-17 92 views
2

在我的應用我使用一個工具欄,它似乎有它周圍的邊框,我想擺脫: example of toolbar border如何刪除工具欄周圍的邊框?

,我創造了它這樣的:

<android.support.design.widget.AppBarLayout 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:background="@color/transparent"> 

    <android.support.v7.widget.Toolbar 
     android:id="@+id/toolbar" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:gravity="center" 
     android:layout_gravity="center" 
     android:minHeight="?attr/actionBarSize"/> 

    </android.support.design.widget.AppBarLayout> 

</android.support.design.widget.CoordinatorLayout> 

和我這樣使用:

<LinearLayout 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:orientation="vertical"> 

    <include 
     layout="@layout/app_bar_main_light" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" /> 
</LinearLayout> 

而且我從來沒有找到指定這個邊界的屬性或樣式。

回答

3

我嘗試了沒有AppBarLayout,它的工作。不要使用AppBarLayout,只需使用工具欄即可。

+0

是的,也適用於我。你知道AppBarLayout中有什麼使這個「影子」? – Axl

+0

@Axl對不起,Idk。但是,您可以在Playstore應用程序的搜索欄中看到相同的佈局,您可以嘗試使它變得非常漂亮。 – joyl

相關問題