我的Android活动在同一活动中有ImageView
和TextView
。
但是,文本的长度超出了屏幕,因此我希望它可以滚动而不会将图像向上滚动。
这是我尝试的但我无法达到我想要的效果。
<ImageView
android:id="@+id/imageView1"
android:layout_width="260dp"
android:layout_height="210dp"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:layout_marginBottom="0dp"
android:layout_marginEnd="0dp"
android:layout_marginRight="0dp"
android:layout_marginStart="0dp"
android:layout_marginTop="0dp"
android:src="@drawable/xdr" />
<ScrollView>
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/imageView1"
android:layout_alignParentBottom="true"
android:text="@string/xdr" />
</ScrollView>
我的想法是将TextView
放入ScrollView
可以使文字在离开图像时滚动,这在ScrollView
之外完好无损,但似乎我错了。< / p>
请问我怎样才能达到我想要的效果?
答案 0 :(得分:0)
在xml以下使用
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="260dp"
android:layout_height="210dp"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:layout_marginBottom="0dp"
android:layout_marginEnd="0dp"
android:layout_marginRight="0dp"
android:layout_marginStart="0dp"
android:layout_marginTop="0dp"
android:src="@drawable/xdr" />
<ScrollView
android:id="@+id/scrollView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/imageView1" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/xdr" />
</LinearLayout>
</ScrollView>
</RelativeLayout>
答案 1 :(得分:0)
我更改了scrollviews属性。使用此xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="260dp"
android:layout_height="210dp"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:layout_marginBottom="0dp"
android:layout_marginEnd="0dp"
android:layout_marginRight="0dp"
android:layout_marginStart="0dp"
android:layout_marginTop="0dp"
android:src="@drawable/xdr" />
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/imageView1"
android:layout_alignParentBottom="true" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/xdr"
></TextView>
</ScrollView>
</RelativeLayout>