2
如何在Android屏幕上部分放置視圖?需要滑入的視圖放置在RelativeLayout中,現在是整個佈局文件。在Android屏幕上部分定位視圖
<?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>
第二個webview是需要部分在屏幕之外的webview。
你試過'android:layout_marginRight =「 - 30dp」'? – Wesley