目前,我正试图使自定义导航栏一样的图像给。
我的代码,使这个导航栏看起来像这样:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/nav"
android:layout_width="match_parent"
android:layout_height="110dp"
android:background="@android:color/transparent"
android:orientation="vertical">
<View
android:layout_width="match_parent"
android:layout_height="70dp"
android:alpha="0.8"
android:background="#0089BA"
app:layout_constraintBottom_toBottomOf="@+id/linearLayout3"
app:layout_constraintEnd_toEndOf="parent"></View>
<LinearLayout
android:id="@+id/linearLayout3"
android:layout_width="match_parent"
android:layout_height="110dp"
android:background="@android:color/transparent"
android:orientation="vertical"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_centerHorizontal="true"
android:gravity="center_horizontal"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<android.support.design.widget.FloatingActionButton
android:id="@+id/floatingActionButton"
android:layout_width="100dp"
android:layout_height="70"
android:layout_gravity="center_horizontal"
android:layout_weight="1"
android:clickable="true"
app:srcCompat="@drawable/common_google_signin_btn_icon_dark" />
</LinearLayout>
<LinearLayout
android:id="@+id/linearLayout2"
android:layout_width="match_parent"
android:layout_height="50dp"
android:background="#0089BA"
android:orientation="horizontal"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<ImageView
android:id="@+id/home_img"
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_weight="1"
app:srcCompat="@drawable/googleg_standard_color_18" />
<ImageView
android:id="@+id/home_img2"
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_weight="1"
app:srcCompat="@drawable/googleg_standard_color_18" />
<ImageView
android:id="@+id/home_img3"
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_weight="1"
app:srcCompat="@drawable/googleg_standard_color_18" />
<ImageView
android:id="@+id/home_img4"
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_weight="1"
app:srcCompat="@drawable/googleg_standard_color_18" />
</LinearLayout>
</LinearLayout>
</android.support.constraint.ConstraintLayout>
但是,因为我真的很不擅长用xml进行设计,我希望得到一些帮助。我如何才能让这个设计发生,我如何才能更好地用xml进行设计?颜色:#0089BA透明度:80%我正在使用目前相同的谷歌图标来测试这个设计。
2条答案
按热度按时间pu82cl6c1#
我建议使用底部导航视图。
和bottom_navigation_main:
eaf3rand2#
我认为,有三个步骤,
1-按如下方式使用底部应用程序栏和浮动操作按钮
2-使用@Marc Laliberté提到的bottom_navigation_main
3-使用形状制作一个圆角,如下所示: