美好的一天。我想绘制一个矩形作为视图,但是底部应该是弯曲的。我不想应用那样的背景图像或使用任何视图,因为如果我使用视图并设置背景,曲线部分仍然会有不可见的空白空间,我将无法将另一个曲线图像附加到自定义视图的底部曲线。所以我应该如何绘制一个带有底部曲线的矩形并将其用作视图来设置我想要的任何背景颜色?
注意:我已经听过一些关于quadTo()
和cubicTo()
安卓方法的内容,但我不知道如何使用它们我的意思是我从文档中什么都不懂......所以我来到这里寻求帮助。
理想情况下,您可以从图像中看到我真正希望实现的内容......这是一个工具栏或操作栏或者其他什么,但我必须做出这样的事情......我完全没有任何想法。(顺便说一句你可以注意到顶部还有一个弯曲的图像......我也必须这样做,我想我可以通过绘制一个bitmap来做到这一点。虽然我仍然没有做任何图像android视图中的部分。)
答案 0 :(得分:17)
只需使用椭圆项目值即可获得所需的输出。
curve_toolbar_bg.xml
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="rectangle"/>
</item>
<item
android:bottom="0dp"
android:left="-100dp"
android:right="-100dp"
android:top="-80dp">
<shape android:shape="oval">
<solid android:color="@color/colorPrimary" />
</shape>
</item>
</layer-list>
activity_main.xml中
<?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/container"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="0dp"
android:layout_height="?android:attr/actionBarSize"
android:background="@drawable/curve_toolbar_bg"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.0">
</android.support.v7.widget.Toolbar>
</android.support.constraint.ConstraintLayout>
答案 1 :(得分:2)
嘿经过this link。它将帮助您制作所需视图的底部形状。
答案 2 :(得分:0)
这是我在Android应用程序上实现弯曲状态栏的目的。这样创建了一个工具栏,该工具栏可以位于其他视图之上,因此在滚动视图时,该工具栏将位于该工具栏下方。
首先,我通过创建无标题主题并从清单中选择该主题来隐藏活动中的原始工具栏。然后,我创建了自己的标题栏,然后通过玩边距和填充来达到预期的效果。
sytles.xml:
<style name="Notitle.Theme" parent="Theme.AppCompat.NoActionBar">
<item name="android:windowNoTitle">true</item>
</style>
AndroidManifest.xml
<activity
android:name=".MainActivity"
android:theme="@style/AppTheme.NoActionBar"/>
arch.xml:
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="rectangle"/>
</item>
<item
android:bottom="0dp"
android:left="-100dp"
android:right="-100dp"
android:top="-80dp">
<shape android:shape="oval">
<gradient
android:startColor="#2629fb"
android:endColor= "#2699FB"
android:angle="90" />
</shape>
</item>
</layer-list>
mainActivity.xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/linearLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="#27292c">
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="?attr/actionBarSize"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
android:contentInsetLeft="0dp"
android:contentInsetStart="0dp"
app:contentInsetLeft="0dp"
app:contentInsetStart="0dp"
android:contentInsetRight="0dp"
android:contentInsetEnd="0dp"
app:contentInsetRight="0dp"
app:contentInsetEnd="0dp"
android:layout_marginBottom="-50dp"
android:elevation="5dp"
android:background="@drawable/arch">
<TextView
android:id="@+id/headerWidgetTitle"
android:text="Title"
android:gravity="center"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="24sp"
android:paddingTop="10dp"
android:textColor="#FFFFFF"
android:paddingBottom="20dp"/>
</androidx.appcompat.widget.Toolbar>
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:id="@+id/scrollLinearLayout"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:orientation="vertical"
android:elevation="0dp"
android:paddingTop="50dp"
android:clipToPadding="false">
<!-- Your Views -->
</LinearLayout>
</ScrollView>