我有这样的布局:
<?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="wrap_content" >
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<TextView
android:layout_width="wrap_content"
android:layout_height="21474836px"
android:text="TextView" />
</RelativeLayout>
</ScrollView>
但是什么都没有显示,我将 2147483647px 更改为 214748364px,文本显示但不会滚动,当我更改为 21474836px 时,一切正常。
谁能解释一下?这里的最大值是多少?
更新:想用超大视图实现半无限视图,这里用px代替dp,因为不知道有没有限制,是用px表示还是用dp表示?