我正在尝试制作一个文件管理器应用程序,其中我在屏幕上半部分的 ListFragment 中列出某个目录的内容(不用说这个列表可以滚动),并且当用户点击某个文件/文件夹时,与其关联的元数据应该在位于片段正下方的 FrameLayout 中可见,以及文件类型的缩略图。这是我的布局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#00000000">
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0.4" >
<fragment
android:id="@+id/titles"
android:layout_width="match_parent"
android:layout_height="wrap_content"
class="com.test.fileManager.FileManagerActivity$TitlesFragment"
/>
</ScrollView>
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0.6"
android:background="#00000000"
>
</FrameLayout>
</LinearLayout>
我首先使用了没有 ScrollView 标记的“layout_weight”属性,但是片段不尊重这些权重属性,并且列表很好地延伸到屏幕底部。
当我将片段包含在 ScrollView 标记中时(我知道..不是一个好主意!),我一次只能看到一个列表条目。
无论如何,我可以让 ListFragment 占据屏幕的前 40% 并在必要时在 40% 的屏幕空间中显示可滚动列表?