嗨我已經創建了一個包含2個按鈕,一個單選按鈕和一個圖形視圖的RelativeLayout。將RelativeLayout分爲兩部分
我想現在在圖中顯示兩個不同的數據。
如何將RelativeLayout分成兩部分?
這是我現在的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">
<Button
android:id="@+id/BtnStart"
android:layout_width="100dip"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_marginTop="5dip"
android:text="SlaveEnable" />
<Button
android:id="@+id/BtnStop"
android:layout_width="100dip"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_marginTop="5dip"
android:layout_toRightOf="@id/BtnStart"
android:text="SlaveDisable" />
<RadioButton
android:id="@+id/BtnSaveFile"
android:layout_width="100dip"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_toRightOf="@id/BtnStop"
android:text="SaveFile" />
<helog.diwesh.NugaBest.GraphView
android:id="@+id/gview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@id/BtnStart"
android:layout_alignParentRight="true" />
</RelativeLayout>
我沒有在這裏得到問題嗎?你到底想做什麼?你是否想要在屏幕上添加兩個圖表,都佔用相同的空間?或者您可以上傳顯示所需佈局的樣本圖紙。 – Sagar
是的,我現在的佈局是一個相對佈局,圖形視圖顯示波形的ECG信號。我現在想把這張圖分成兩半,另一半顯示呼吸信號。底部有三個按鈕,應該放在同一個地方 –