画面の上部に表示したい2つの画像と、最初の画像の下部にある2つの画像があります。ここで、2 番目の画像 (テキスト) をスクロールしたいのですが、最初の画像はスクロールしたくありません。基本的には、スクロールしたくない上部のマップと、スクロールしたい下部のテキストです。現時点では、最初の画像が背面、2 番目の画像が上部です。これは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);
}
}
ここで何が間違っていますか?