我正在使用以下配置将图像正确放入滚动视图中。
<?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:scrollbars="vertical" >
<ImageView
android:id="@+id/textNimbo"
android:layout_width="match_parent"
android:layout_height="2492dp"
android:layout_alignParentRight="true"
android:src="@drawable/inicio"
android:adjustViewBounds="true" />
</ScrollView>
但是我需要在scrollView内部和ImageView下面设置一个按钮。我在scrollView中尝试了相对和线性布局但没有成功,按钮不可见或图像不适合scrollView。任何推荐的配置?谢谢。
答案 0 :(得分:2)
ScrollView只能有一个直接的子元素。所以要添加一个Button和一个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:scrollbars="vertical" >
<LinearLayout
android:id="@+id/layout"
android:layout_width="fill_parent"
android"layout_height="fill_parent">
<ImageView
android:id="@+id/textNimbo"
android:layout_width="match_parent"
android:layout_height="2492dp"
android:layout_alignParentRight="true"
android:src="@drawable/inicio"
android:adjustViewBounds="true" />
<Button
android:id="@+id/button1"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</LinearLayout>
</ScrollView>
答案 1 :(得分:0)
你也可以使用ImageButton
我
而不是ImageView
上有透明Button