如何在Android中制作自定义形状布局

时间:2017-01-11 16:46:00

标签: android shapes

我制作了一个自定义形状的底部导航栏 像这样=>

BottomToolbar

所以我尝试使用带有FAB的LinearLayout,因为我对定制形状不太了解, 但是当我滚动我的webView底栏隐藏时,我的想法不起作用,但是fab并没有。无论如何,这是一个糟糕的方法。

所以,我想要的是制作一个自定义形状的底栏, 请帮助我做,或者只是简单的指导会有所帮助,

非常感谢你:)

1 个答案:

答案 0 :(得分:2)

enter image description here使用以下字段创建一个drawable

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item
        android:bottom="4dp"
        android:left="20dp"
        android:right="20dp"
        android:top="15dp">
        <shape android:shape="rectangle">
            <solid android:color="#ED7D31" /> //Color of youe choice
        </shape>
    </item>

    <item
        android:width="50dp"
        android:height="50dp"
        android:gravity="top|center">
        <shape android:shape="oval">
            <solid android:color="#ED7D31" />

        </shape>
    </item>
</layer-list>

并在XML文件中将其添加为背景,如下所示

<TextView
    android:layout_width="match_parent"
    android:layout_height="100dp"
    android:elevation="4dp"
    android:background="@drawable/list" /> //Your drawable name here