2

写真コラージュアプリをやっています。レイアウトで三角形のカスタム ビューを描画する方法が必要になりました。これは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>

私のレイアウトの 3 つのカスタム ビュー。色々な形にしたいです。サンプル画像は次のとおりです

フォトコラージュ

画像のこのレイアウトのように。前もって感謝します

4

0 に答える 0