2
我需要創建如圖所示的佈局。 帶箭頭的圓形按鈕需要完全位於藍色和灰色背景之間。 我很難放置它,而沒有精確地指定邊距,這是我不想做的事情,因爲不能保證它在所有分辨率和設備上看起來不錯。 我將不勝感激的一個xml示例Android在兩個視圖之間放置圖像視圖
謝謝!
我需要創建如圖所示的佈局。 帶箭頭的圓形按鈕需要完全位於藍色和灰色背景之間。 我很難放置它,而沒有精確地指定邊距,這是我不想做的事情,因爲不能保證它在所有分辨率和設備上看起來不錯。 我將不勝感激的一個xml示例Android在兩個視圖之間放置圖像視圖
謝謝!
使用所需的繪製..希望它的工作原理..你可以根據你的需要設置的寬度和高度。
<?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>
[在頂部和之間的兩個視圖的地方觀看]的
什麼如果佈局的權重爲3和7。你如何將箭頭保持在兩個佈局的確切交叉點? – 2016-09-10 07:59:29
可能重複(http://stackoverflow.com/questions/16616376/place-view-on-top-and-between-two-views) – Voicu 2014-10-26 22:10:22