如何将视图部分放置在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>
第二个webview是需要部分在屏幕之外的那个。
答案 0 :(得分:0)
您可以使用android:layout_marginRight="-30dp"
作为@ user1490103建议。或者您可以使用android:translationX
。如果您计划动画此视图,则翻译会更有意义。请记住RelativeLayout上的set android:clipChilren="false"
。