ScrollView在顶部添加了额外的空间

时间:2013-08-21 15:39:35

标签: android

我正在使用嵌套在ScrollView中的TextView。滚动工作正常,但ScrollView似乎在TextView顶部添加了一个额外的填充,如下所示:

<ScrollViewTop>
<Padding>
<TextViewTop>
<TextViewContent>
<TextViewBottom>
<ScrollViewBottom>

enter image description here

请注意,这只发生在TextView的顶部,并且空间是静态的,滚动时不会移动。这是我在DialogFragment中使用的布局:

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fillViewport="true" 
    android:fadingEdge="none"
    android:orientation="vertical" >

        <TextView
        android:id="@+id/textViewHelp"
        android:adjustViewBounds="true"
        android:scrollbars = "vertical"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"/>
</ScrollView>

这是包含布局的片段:

public class HelpDialogFragment extends DialogFragment {

    public interface HelpDialogFragmentListener {
        void onFinishHelpDialogFragment(String inputText);
    }

    //empty constructor for fragment (android requirement)
    public HelpDialogFragment() {

    }

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        View view = inflater.inflate(R.layout.help_fragment, container);
        TextView tv = (TextView) view.findViewById(R.id.textViewHelp);
        tv.setText(Html.fromHtml(Utils.loadHtmlFromResources(getActivity(), R.raw.help)));
        return view;
    }
}

如何强制TextView占用整个ScrollView区域?

2 个答案:

答案 0 :(得分:1)

ScrollView只需要这个:

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

    <TextView
        android:id="@+id/textViewHelp"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"/>
</ScrollView>

我在xml中输入了你的代码。没有填充物。

答案 1 :(得分:0)

问题在这里解决了:

Layout margin/padding at the top of dialog fragment

问题是窗口标题可以通过设置删除:

getWindow().requestFeature(Window.FEATURE_NO_TITLE);