我一直试图在我的布局中放置 3 个 MvxBindableListView 小部件,但没有成功。有没有办法做到这一点,以便每个 MvxBindableListView 完全显示而无需内部滚动,并且我的“页面”可以滚动。这是布局:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:local="http://schemas.android.com/apk/res/MyCurrentProject.Client.UI"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp">
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
local:MvxBind="{}" />
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:textAppearance="?android:attr/textAppearanceLarge"
local:MvxBind="{}" />
<Mvx.MvxBindableListView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:clickable="false"
local:MvxBind="{}" />
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:textAppearance="?android:attr/textAppearanceLarge"
local:MvxBind="{}" />
<Mvx.MvxBindableListView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:clickable="false"
local:MvxBind="{}" />
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:textAppearance="?android:attr/textAppearanceLarge"
local:MvxBind="{}" />
<Mvx.MvxBindableListView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:clickable="false"
local:MvxBind="{}" />
</LinearLayout>
</LinearLayout>
此处绑定为空,但可以正常工作。列表具有可变数量的元素,因此固定高度是不可能的......
提前致谢!