Android:FrameLayout的自定义边框

时间:2015-04-24 15:38:40

标签: android android-framelayout

我正在尝试向framelayout添加自定义边框。 framelayout用作片段的容器。因此,我想显示带边框的片段。边框应该在framelayout外部,不应占用framelayout内部的空间。它应该根据屏幕尺寸的变化进行调整。

enter image description here

我现在能想到的是某种自定义ViewGroup,为边框添加ImageView。使用图像处理来获取imageview的内部区域,并在该区域中扩展帧布局。

我正在寻找一些简单的方法。

2 个答案:

答案 0 :(得分:5)

最简单的解决方案是创建一个9-patch drawable并将其设置为FrameLayout的背景。我已经创建了你可以使用的9-patch drawable。希望这足以满足您的要求。

enter image description here

答案 1 :(得分:4)

您可以使用例如LinearLayout和适当的layout_weight来通过布局XML获得效果,这样您的最中心的FrameLayout将会扩展以占用可用空间。

使用了4个绘图:用于框架的顶部,底部,左侧和右侧部分。

查看此代码:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal">

    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:scaleType="fitXY"
        android:src="@drawable/border_left" />

    <LinearLayout
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:orientation="vertical">

        <ImageView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:scaleType="fitXY"
            android:src="@drawable/border_top" />

            <FrameLayout
                android:layout_width="match_parent"
                android:layout_height="0dp"
                android:layout_weight="1">

                <!-- FrameLayout content goes here -->

            </FrameLayout>

        <ImageView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:scaleType="fitXY"
            android:src="@drawable/border_top" />

    </LinearLayout>

    <ImageView
        android:layout_width="wrap_conttXY"
        android:layout_height="match_parght"
        android:scaleType="fient"
        android:src="@drwable/border_right" />

</LinearLayout>