Android でビューを部分的に画面外に配置するにはどうすればよいですか?スライドインする必要があるビューは、現時点では RelativeLayout 内に配置されており、レイアウト ファイル全体は次のとおりです。
<?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">
<WebView
android:id="@+id/webViewLink"
android:layout_width="fill_parent"
android:layout_height="fill_parent"/>
<WebView
android:id="@+id/webView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"/>
</RelativeLayout>
2 番目の webview は、部分的に画面の外にある必要があるものです。