gpt4 book ai didi

java - 将 ListView 添加到 fragment 会缩小布局

转载 作者:行者123 更新时间:2023-11-30 03:10:39 26 4
gpt4 key购买 nike

我有一个包含三个 fragment 的 android Activity ,在其中一个 fragment 中,我使用 ListView 来显示列表。列表可能很长, View 需要可以滚动。当 Activity 启动时,调用所有 fragment 的 onCreateView 方法。这是 onCreateView 方法的代码

    @Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)
{
View rootView;
rootView=inflater.inflate(R.layout.files, container,false);
WebService.getFiles((UsersPOJO)getArguments().getSerializable("currentUser"));
return rootView;
}

R.layout.files 有 listView。问题是当 Activity 开始布局时,当弹出软键盘时,该 Activity 中所有三个 fragment 的布局都会缩小。我尝试在单个布局上将 isScrollContainer 设置为 false,但它无法解决此问题。

编辑:R.layout.files

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/WhiteBackground"
android:orientation="vertical">

<ProgressBar
android:id="@+id/filesLoading"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"/>

<TextView
android:id="@+id/noFiles"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/edit_text_left_margin"
android:layout_marginRight="@dimen/edit_text_right_margin"
android:layout_marginTop="@dimen/heading_top_margin"/>

<ListView
android:id="@+id/filesListView"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
</ListView>


</LinearLayout>

最佳答案

看看 windowsSoftInputMode AndroidMenifest.xml 中的属性文件。只需设置 windowsSoftInputModeadjustPan在你的<activity> .

关于java - 将 ListView 添加到 fragment 会缩小布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21038972/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com