如何在Android中创建带有居中圆形和图标的矩形?

时间:2019-02-21 13:23:20

标签: android xml shapes

我正在尝试创建一个在BottomNavigationView(BottomSheetDialog窥视)上方可见的形状。关于如何在应用程序中重新创建它的任何想法?

Intended effect

我一直在尝试使用图层列表,该列表在预览中看起来不错,但是在将其设置为视图的背景时变平了。

  takePic(){
    ImagePicker.launchCamera({storageOptions.cameraRoll: false},(responce)=>{
      const file ={
        uri : responce.uri,
        name :responce.fileName,,
        method: 'POST',
        path : responce.path,
        type :  responce.type,
        notification: {
            enabled: true
          }
      }
        this.state.saveImages.push(file);

    })
  }

XML预览:

XML Result in preview

可绘制对象应用于布局中的视图

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:top="-13dp" android:start="120dp" android:end="120dp">
        <shape android:shape="oval">
            <solid android:color="@color/turquoise"/>
        </shape>
    </item>
    <item>
        <shape android:shape="rectangle">
            <solid android:color="@color/turquoise"/>
        </shape>
    </item>
    <item android:drawable="@drawable/ic_bottomsheetdialog_arrow_up"
          android:bottom="15dp"
          android:start="130dp"
          android:end="130dp"
          android:top="-10dp"/>
</layer-list>

enter image description here

我还一直在考虑变通方法,例如以居中的FloatingActionButton为中心的BottomNavigationView,或仅以ConstraintLayout为中心的2个视图(矩形+带有图标的圆形)。

任何有关如何执行此操作或编写代码的指针都会很有帮助。

1 个答案:

答案 0 :(得分:0)

既然我已经弄清楚了,我将在这里发布我的解决方案

我删除了负边距,在矩形中添加了一个正数,并在android:src“ @drawable ...”而不是原始视图中使用了ImageView

<?xml version="1.0" encoding="utf-8"?>
<layer-list
    xmlns:android="http://schemas.android.com/apk/res/android">
    <item
        android:end="200dp"
        android:gravity="center_horizontal"
        android:start="200dp">
        <shape android:shape="oval">
            <size
                android:width="48dp"
                android:height="@dimen/bottomdialog_peek_height" />
            <solid android:color="@color/turquoise" />
        </shape>
    </item>
    <item android:top="10dp">
        <shape android:shape="rectangle">
            <solid android:color="@color/turquoise" />
        </shape>
    </item>
    <item
        android:drawable="@drawable/ic_bottomsheetdialog_arrow_up"
        android:gravity="center_horizontal" />

</layer-list>

这是ImageView:

 <ImageView
    android:id="@+id/imageView_bottomSheetDialog_peek"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:src="@drawable/drawable_bottom_sheet_dialog"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintHorizontal_bias="0.0"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent"
    android:contentDescription="@string/bottom_sheet_dialog_peek" />