Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 ScrollView 中均匀排列垂直的图像行。
我告诉我的LinearLayout里面ScrollViewto fill_parent,但它不是,它是包装内容。
LinearLayout
ScrollView
fill_parent
你能发布你的XML吗?您是将每个 ImageView 放在单独的 LinearLayout 中还是什么?只需将所有的 ImageViews 放在一个垂直的 LinearLayout 中,然后添加:
android:layout_weight="1" android:layout_width="fill_parent" android:layout_height="fill_parent"
对他们所有人。这应该够了吧。
编辑:等等,我很困惑。你想达到什么目的?你的 ScrollView 有固定大小吗?