Android在两个视图之间放置一个图像视图

时间:2014-10-26 21:53:03

标签: android android-layout android-xml

我需要创建一个如图所示的布局。 带箭头的圆形按钮需要精确地位于蓝色和灰色背景之间。 我在放置它时遇到困难而没有精确指定边距,这是我不想做的事情,因为无法保证它在所有分辨率和设备上看起来都很好。 我很感激xml的样本

谢谢! enter image description here

1 个答案:

答案 0 :(得分:2)

Screenshot

使用所需的绘图..希望它有效..您可以根据需要设置宽度和高度。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent" >

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical" >

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="0dip"
                android:layout_weight="1"
                android:background="#1b96d9"
                android:orientation="vertical" >
            </LinearLayout>

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

        <ImageView
            android:id="@+id/textView1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:src="@drawable/arrow" />
    </FrameLayout>

</LinearLayout>