如何在NestedScrollView中限制RecyclerView的高度

前端之家收集整理的这篇文章主要介绍了如何在NestedScrollView中限制RecyclerView的高度前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

在我当前的Android应用程序中,我有一个显示android.support.v4.app.DialogFragment的屏幕.

此DialogFragment视图包含以下UI组件

HEADING
== Sub Heading
== NestedScrollView
==== RecyclerView
==== RadioGroup
==== Spinner
==== EditText
==== Action Buttons

DialogFragment使用Style配置为全屏,如下所示: –

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setStyle(DialogFragment.STYLE_NO_TITLE,R.style.AppDialogTheme);
}

我的对话框风格是

 原文链接:https://www.f2er.com/android/430245.html

猜你在找的Android相关文章