我正在尝试将imageview放在android studio的scrollview中,但它不允许我在scrollview中拖放imageview。
这是我的代码:
<?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"
android:background="#ccc"
android:gravity="center"
android:orientation="vertical"
android:paddingTop="30dp">
<LinearLayout
android:id="@+id/content"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:background="#ffffff"
android:gravity="center"
android:orientation="vertical"
android:textColor="#ffffff">
<TextView
android:id="@+id/homepagetxt"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="10dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginTop="10dp"
android:textColor="#000000"
android:textStyle="italic" />
</LinearLayout>
</ScrollView>
我可以把它放在线性布局中,但它会弄乱我的屏幕布局。 但是,我无法将其放在滚动视图中,就像在linearlayout结束标记之后一样。
在scrollview中放置imageview有什么限制吗?
我很感激你的回应。
答案 0 :(得分:1)
在scrollview中放置imageview有什么限制吗?
没有。但是,ScrollView
只能有一个孩子。目前,那是你的LinearLayout
。
答案 1 :(得分:1)
ScrollView只能有一个直接子项。如果要在其中放置多个视图,则必须将这些视图放在LinearLayout或RelativeLayout中。