我有一個問題,在xml佈局顯示下一個和後退按鈕,除了圖像,應該在圖像的高度中間。顯示背部和下一個按鈕之間的圖像的一半高度android
請看看這個網址
http://screencast.com/t/zE47nb0rkFE
兩個按鈕上面的圖片,這是左,右,但沒有圖像的中間高度。 它應該適用於屏幕的每個分辨率大小。
我的XML是
<?xml version="1.0" encoding="utf-8"?>
我有一個問題,在xml佈局顯示下一個和後退按鈕,除了圖像,應該在圖像的高度中間。顯示背部和下一個按鈕之間的圖像的一半高度android
請看看這個網址
http://screencast.com/t/zE47nb0rkFE
兩個按鈕上面的圖片,這是左,右,但沒有圖像的中間高度。 它應該適用於屏幕的每個分辨率大小。
我的XML是
<?xml version="1.0" encoding="utf-8"?>
您可以在代碼中使用滾動視圖這樣的:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#FFFFFF">
<ScrollView android:id="@+id/ScrollView01"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<WebView
android:id="@+id/imv"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="55dip"
/>
<ImageView
android:id="@+id/imagegallery"
android:layout_width="70sp"
android:layout_height="70sp"
android:layout_alignParentRight="true"
android:layout_below="@id/imv"/>
<ProgressBar
android:id="@+id/Bar"
android:layout_width="wrap_content"
android:layout_centerInParent="true"
android:layout_height="wrap_content"
android:layout_above="@id/imagegallery"
android:layout_below="@id/imv"
/>
<TextView android:layout_height="wrap_content"
android:id="@+id/textView1"
android:text="Art Gallery"
android:textColor="#000000"
android:layout_width="wrap_content"
android:layout_below="@id/imv"
/>
<TextView android:layout_height="wrap_content"
android:id="@+id/textView2"
android:textColor="#00C000"
android:textSize="20dip"
android:text=" "
android:layout_width="wrap_content"
android:layout_toLeftOf="@id/imagegallery"
android:layout_alignParentLeft="true"
android:layout_below="@id/textView1"
/>
<TextView android:layout_height="wrap_content"
android:id="@+id/textopeningnow"
android:text="Opening Now"
android:textColor="#000000"
android:layout_width="wrap_content"
android:layout_below="@id/textView2"
/>
<TextView android:layout_height="wrap_content"
android:id="@+id/diosas"
android:textSize="20dip"
android:text="Diosas/Godesses"
android:textColor="#00C000"
android:layout_width="wrap_content"
android:layout_below="@id/textopeningnow"
/>
<Button
android:id="@+id/back"
android:layout_height="wrap_content"
android:layout_width="25dip"
android:layout_centerVertical="true"
android:background="@drawable/leftarrow"/>
<Button
android:id="@+id/next"
android:layout_height="wrap_content"
android:layout_width="25dip"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:background="@drawable/rightarrow"/>
<ImageView android:id="@+id/imageLoader"
android:layout_width="wrap_content"
android:layout_height="200dip"
android:layout_toLeftOf="@id/next"
android:layout_toRightOf="@id/back"
android:layout_below="@id/diosas"
/>
<TextView
android:id="@+id/artistname"
android:textColor="#000000"
android:text=" "
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_below="@id/imageLoader"
android:layout_centerInParent="true"
/>
</LinearLayout>
</ScrollView>
</RelativeLayout>
我圍在一個單獨的RelativeLayout你的形象,和按鈕添加到它。僅僅通過全局相對佈局來實現你想要的就太難了。
嘿,我不明白..plsü可以分享烏爾XML的same..howü在附上圖片一個單獨的RelativeLayout ...謝謝 – shyam
轉到Eclipse中的UI編輯器,右鍵單擊要包含在其自己的佈局中的小部件(在您的情況下,它是圖片),然後選擇「Wrap in Container」。 – Macondo2Seattle
使用滾動視圖:: –