使用弯曲线创建布局

时间:2015-05-11 07:36:36

标签: android layout drawable

我认为最好发布一张我想做的照片。我想要这样的布局:

enter image description here

关于我已经拍摄的照片,但我想我是以最糟糕的方式拍摄的。以下是我到目前为止所做的事情:

创建一个Shape(椭圆形)(game_top_circle.xml):

 <?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval">
    <solid android:color="#000000"/>
    <size android:width="120dp" android:height="120dp"/>
</shape>

然后创建以下布局:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
    android:layout_height="match_parent" android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:paddingBottom="@dimen/activity_vertical_margin"
    tools:context="com.assigame.nidhoegger.assigame.GamePlayfieldCards"
    android:background="#ffffffff"
    android:padding="0dp">

    <ImageView
        android:layout_width="fill_parent"
        android:layout_height="60dp"
        android:id="@+id/imageView4"
        android:src="@drawable/game_top_circle"
        android:scaleType="centerCrop"
        android:paddingTop="950dp"
        android:paddingLeft="-300dp"
        android:paddingRight="-300dp"
        android:layout_above="@+id/horizontalScrollView"
        android:layout_centerHorizontal="true" />

    <HorizontalScrollView
        android:layout_width="fill_parent"
        android:layout_height="250dp"
        android:id="@+id/horizontalScrollView"
        android:layout_alignParentBottom="true"
        android:layout_alignLeft="@+id/imageView4"
        android:layout_alignStart="@+id/imageView4"
        android:background="#ff000000" />
</RelativeLayout>

弯曲线下方的黑色应为水平滚动区域。可以向我指出正确的方向如何做得更好?

0 个答案:

没有答案