我現在有一個問題,立場imageview下另一個imageview。儘管我已經使用了android:layout_below,似乎沒有任何事情發生。我之前已經成功完成了這個任務。我現在唯一能想到的就是這個圖像視圖和圖像相當大(寬度500sp,高度750sp)。postion one Imageview下另一個 - android
三個imageview的的ID是如下 - 兩個小的觀點
1)單 2)體積 3)extraImage(這是保持大的圖像的視圖)
我想把下面extraImage單
這裏是XML語法
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="5dp"
android:paddingLeft="0px"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="0px"
android:background="#ffffff"
tools:context=".PhraseActivity" >
<ImageView
android:id="@+id/single"
android:layout_width="68sp"
android:layout_height="68sp"
android:layout_centerVertical="true"
/>
<ImageView
android:id="@+id/extraImage"
android:layout_width="500sp"
android:layout_height="750sp"
android:layout_below="@+id/single"
/>
<ImageView
android:id="@+id/volume"
android:layout_width="50sp"
android:layout_height="40sp"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
/>
</RelativeLaoyout>
這裏是我怎麼想它
這裏是它是如何在目前
所以我的問題:我該如何解決這個問題 - 如何位置大的ImageView以下的小ONE (單)?
我也試圖與Android:layout_toEndOf =「」沒有成功
您是否使用相對佈局? –
@mohammedmomn是的 - 所有的孩子被包裹在一個RelativeLayout裏面 –
請顯示你的整個xml文件 – Aamirkhan