gpt4 book ai didi

android - Android-更改底部对话框的高度以容纳新文本

转载 作者:行者123 更新时间:2023-12-03 10:12:19 25 4
gpt4 key购买 nike

我有一段代码,可以通过按一个按钮来激活:

           helpdialog = new BottomSheetDialog(this);

View view = getLayoutInflater().inflate(R.layout.fragment_bottom_layout, null);

helpdialog.setContentView( view );

TextView tv = (TextView) view.findViewById( R.id.splo);

// Text to place in dialog omitted

tv.setText( sp );

helpdialog.show();

我的fragment_bottom_layout.xml布局如下:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:text=""
android:id="@+id/splo"
/>
</LinearLayout>

它在大多数情况下都可以正常工作,但是有时候文本会附加到文本 View 中,或者会显示很大的文本,在这种情况下,它会迫使文本顶部消失或被截断,例如FIFO。如何防止这种情况并调整对话框的大小以容纳所有文本?我曾考虑过将 Bottom Sheet 的高度设置为tv.getLineCount()* tv.getLineHeight(),但是我找不到将其应用于对话框本身的简便方法。

编辑:经过进一步调查,我注意到了另一个问题。如果我打开一个包含较长文本的底部对话框,然后向上滚动以使对话框的顶部脱离窗口的顶部,那么当我向下滚动时,缺少顶部的文本会丢失。这可能与我上面遇到的问题有关。

最佳答案

在您的.show()之后添加它

                //androidX
View bottomSheetInternal = helpdialog.findViewById(com.google.android.material.R.id.design_bottom_sheet);


/*
not androidX use:
View bottomSheetInternal = helpdialog.findViewById(android.support.design.R.id.design_bottom_sheet);
*/

BottomSheetBehavior.from(bottomSheetInternal).setState(BottomSheetBehavior.STATE_EXPANDED);
BottomSheetBehavior.from(bottomSheetInternal).setFitToContents(true);
BottomSheetBehavior.from(bottomSheetInternal).setHideable(false);

另外尝试将textview包装在scrollview中

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<ScrollView
android:layout_height="wrap_content"
android:layout_width="match_parent">

<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text=""
android:id="@+id/splo"/>
</ScrollView>
</LinearLayout>

观看完整的演示
https://github.com/Gaineyj0349/BottomSheetBehaviourExample

关于android - Android-更改底部对话框的高度以容纳新文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56913587/

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