从Android

时间:2018-04-20 07:00:04

标签: android android-custom-view

我有这样的形状:

<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/darkViolet" />
        </shape>
    </item>
</layer-list>

在我的示例应用标题中。我已将此形状作为background插入RelativeLayout,代码如下:

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="130dp"
    android:background="@drawable/curve_header_bg" />

这是结果:

header

我想用户图像配置文件填充这个形状,就像我的形状一样,并且有形状的曲线。我不知道我怎么能这样做。我只知道,我必须创建自定义视图,但我做不知道,我怎么能像我的形状一样裁剪用户形象。 像这样(我用 Photoshop 创建): enter image description here

1 个答案:

答案 0 :(得分:1)

你可以在你的布局中做这样的事情。获取 imageview ,然后添加背景并提供 src = "yourImage"

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
android:id="@+id/tagsVerticalLineup"
android:layout_width="wrap_content"
android:layout_height="150dp"
android:orientation="vertical"
android:gravity="center_horizontal"
xmlns:android="http://schemas.android.com/apk/res/android">

<ImageView
    android:layout_width="match_parent"
    android:layout_height="75dp"
    android:background="@drawable/test"
    android:src="@mipmap/ic_launcher"/>

你会得到这样的东西,我认为这就是你想要的吗?

enter image description here