android:layout_x与android:layout_y

欧金鹏
2023-12-01

场景

WebView子控件Button之属性android:layout_xandroid:layout_y可调按钮位(屏幕左上角原点,右、下为X轴、Y轴正向):

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context="com.self.zsp.zwebview.MainActivity">

    <WebView
        android:id="@+id/webView"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <Button
            android:id="@+id/button"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_x="190dp"
            android:layout_y="190dp"
            android:background="@color/colorPrimary"
            android:text="点击" />
    </WebView>
</LinearLayout>

分析

WebView继承自AbsoluteLayout,该两属性仅AbsoluteLayout布局有效。

 类似资料: