我在我的主视图中使用视图寻呼机。根据框架的内容,我添加了两个 xml 文件之一。第一个是这样的:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:background="#ffffff"
android:layout_margin="6dip">
<!-- header -THIS is the source of the problem! -->
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TextView
android:textSize="32dip"
android:gravity="center"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
</LinearLayout>
<!-- content -->
<ScrollView
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:fillViewport="true">
<TextView
android:text=""
android:gravity="center"
android:layout_width="fill_parent"
android:layout_height="fill_parent"/>
</ScrollView>
<!-- footer -->
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TextView
android:text="Expires on..."
android:gravity="right"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
</LinearLayout>
</LinearLayout>
</LinearLayout>
除了滚动视图的子项是 ImageView 而不是 TextView 之外,替代 xml 文件是相同的。
现在,使用 textview 时一切正常。我可以使用滚动视图来上下滚动视图中的文本。但是,当我将布局与 imageview 一起使用时,图像被冻结并且滚动视图不会上下移动它。
有谁知道这是为什么?