在android布局的三角形状视图

时间:2013-08-02 04:46:10

标签: android android-layout layout view photo

我正在做一个照片拼贴应用程序。我现在需要一种在布局中绘制三角形自定义视图的方法。在Android布局中这是可能的吗?如果是的话请向我提出一些想法

我的布局如下

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >

<LinearLayout 
android:id="@+id/viewLayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal" >

<com.wglxy.example.pinchzoompan.PanZoomView
android:id="@+id/zoomview1"
android:layout_weight="1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>
<com.wglxy.example.pinchzoompan.PanZoomView1
android:id="@+id/zoomview2"
android:layout_weight="1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>
<com.wglxy.example.pinchzoompan.PanZoomView2
android:id="@+id/zoomview3"
android:layout_weight="1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>

</LinearLayout>
</FrameLayout>

我的布局中有三个自定义视图。我希望它有不同的形状。样本图像如下

photo collage

像图片中的这种布局。 提前谢谢

0 个答案:

没有答案