Android 2图像视图,左侧显示半显示,右侧显示半显示

时间:2015-06-02 18:06:41

标签: android android-layout android-activity

我正在Android中绘制一个线性布局,以显示左侧和半侧图像的半图像的2张图像。

我是这样画的:

enter image description here

但是我想画如下图所示,请你帮我画下面的图片。

enter image description here

我的布局文件在这里:

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

<LinearLayout
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:layout_alignParentTop="true"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="10dp"
    android:orientation="vertical" >

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="0dp"
        android:layout_weight="1.5" >

        <ImageView
            android:id="@+id/sideLeft"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="1.5"
            android:layout_marginBottom="10dp"
            android:background="@drawable/user"
            android:scaleType="centerCrop" />

        <ImageView
            android:id="@+id/sideRight"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_marginLeft="1dp"
            android:layout_weight="1.5"
            android:layout_marginBottom="10dp"
            android:background="@drawable/user"
            android:scaleType="centerCrop" />
    </LinearLayout>
</LinearLayout>

</RelativeLayout>

这看起来像1张图片。

提前致谢!

2 个答案:

答案 0 :(得分:1)

你需要在java上处理这样的输出,

设置两个图像适合中心, 并且从Java设置第一个imageview的右边填充为-width / 2,第二个imageview的左边填充为-width / 2。 这里宽度是imageview的宽度。

它可能对你有帮助。

答案 1 :(得分:0)

试试这个

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="0dp"
    android:gravity="center" 
    android:layout_weight="1.5" >

    <ImageView
        android:id="@+id/sideLeft"
       android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginBottom="10dp"
        android:background="@drawable/user"
        android:scaleType="centerCrop" />

    <ImageView
        android:id="@+id/sideRight"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="1dp"

        android:layout_marginBottom="10dp"
        android:background="@drawable/user"
        android:scaleType="centerCrop" />
</LinearLayout>