我正在为计算器设计UI,但我想为同时显示的UI的不同部分使用不同的片段。但是,我想在相对布局中垂直堆栈片段。
然而,我希望fragment1的大小可以通过控件的大小来设置,而不是硬编码一些高度。这样我就可以轻松更改fragment1的控件而不必担心它的总高度。
我尝试了相对布局,但我无法在fragment1下面显示fragment2。这是我尝试过的事情
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<fragment
android:id="@+id/side_panel"
android:layout_width="match_parent"
<!--this sort of sucks (don't want hadcode 100dp, I want the controls I put in here to resize this automatically.-->
android:layout_height="100dp"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
class="com.guitarv.www.ndigitcalc.SidePanelFragment">
</fragment>
<fragment
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/main_panel"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_below="@+id/side_panel"
class="com.guitarv.www.ndigitcalc.MainPanelFragment">
</fragment>
</RelativeLayout>
有关如何使这项工作的任何建议?
THX!