我在Android中繪製了一個線性佈局,顯示左半邊和半邊圖像中的一半圖像的2幅圖像。Android 2圖像視圖,左半側半顯示,右半側顯示
我得出這樣的:
,但我想提請像下面,你可以請幫我繪製圖像像下面。
我的佈局文件是在這裏:
<?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個圖像。
在此先感謝!
那你的問題是什麼呢? –
我已經更新了我的問題,我想繪製第二張圖片? – Singh
發佈佈局文件 –