0

我有两张图片,一张我想在屏幕顶部显示,第二张在第一张图片的底部。现在我想滚动第二个图像(这是文本),但不滚动第一个图像。所以基本上它的顶部是我不想滚动的地图,然后是我想要滚动的底部的文本。目前第一张图片在后面,第二张在上面。这是我的 xml 代码。

<ImageView
    android:id="@+id/imageView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/farsouthroute"
    android:layout_marginTop="0dp"
    />


 <ScrollView 
   android:layout_width="fill_parent"
   android:layout_height="fill_parent">

   <RelativeLayout
       android:layout_width="fill_parent"
       android:layout_height="fill_parent">

<ImageView
    android:id="@+id/imageView2"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_below="@+id/imageView1"
    android:src="@drawable/routesouth"
    android:scaleType="fitCenter">


  </ImageView>
 </RelativeLayout>
 </ScrollView>


</RelativeLayout>

这是java。

import android.os.Bundle;
import android.app.Activity;
import android.content.pm.ActivityInfo;
import android.os.Handler; 
import android.view.Window;
import android.view.WindowManager;
import android.webkit.WebView; 

public class MainActivity extends Activity { 

private Handler mHandler = new Handler(); 

@Override 
public void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState);
    requestWindowFeature(Window.FEATURE_NO_TITLE); 
    setContentView(R.layout.activity_main);
    }
}

我在这里做错了什么?

4

1 回答 1

0

一种选择是 LinearLayout 而不是 RelativeLayout,方向设置为垂直

<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
    <ImageView
    android:id="@+id/imageView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/farsouthroute"
    android:layout_marginTop="0dp"
    />

<ScrollView 
 android:layout_width="fill_parent"
 android:layout_height="fill_parent">

    <ImageView
    android:id="@+id/imageView2"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:src="@drawable/routesouth"
    android:scaleType="fitCenter">
    </ImageView>

</ScrollView>


</LinearLayout>
于 2012-10-21T15:03:20.850 回答