WebView 上的自定义布局

发布于 2024-11-02 08:32:41 字数 103 浏览 0 评论 0原文

我想在 WebView 上设置自定义布局。 .. 我已经完成了 LinearLayout 和relativelayout,但我看不到 WebView 上的布局,怎么办?请帮我。 。 。 谢谢。

I want to Set the Custom layout on the WebView. ..
I have Done with the LinearLayout and the RelativeLayout but i cant seen the Layout on the WebView How it is Possible to do ? Please help me. . .
Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你不是我要的菜∠ 2024-11-09 08:32:41

保留一个父布局(即相对布局)并在那里设置您的布局,并在其中根据您的需要设置线性布局并在其中添加 webview。
请参阅以下代码

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 
    android:id="@+id/RelativeLayout01" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    xmlns:android="http://schemas.android.com/apk/res/android">

    <ImageView 
        android:id="@+id/ImageView01" 
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content"
        android:background="@drawable/main_title_bg"
        ></ImageView>

    <TextView 
        android:id="@+id/TitleText" 
        android:layout_height="wrap_content" 
        android:text="About us" 
        android:layout_width="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="8dip"
        android:textSize="18dip"
        android:textColor="#ffffff"
        ></TextView>

<LinearLayout
    android:id="@+id/linearlayout01"
    android:layout_below="@id/ImageView01"
    android:layout_height="fill_parent"
    android:layout_width="fill_parent"

    >

<WebView  
    android:id="@+id/webview"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"

/>

</LinearLayout>


</RelativeLayout>

希望这是您想要的......

Keep a parent layout(Say Relative Layout) and set your layout there and within it set a linear layout according to your need and add webview within it.
See the following code

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 
    android:id="@+id/RelativeLayout01" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    xmlns:android="http://schemas.android.com/apk/res/android">

    <ImageView 
        android:id="@+id/ImageView01" 
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content"
        android:background="@drawable/main_title_bg"
        ></ImageView>

    <TextView 
        android:id="@+id/TitleText" 
        android:layout_height="wrap_content" 
        android:text="About us" 
        android:layout_width="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="8dip"
        android:textSize="18dip"
        android:textColor="#ffffff"
        ></TextView>

<LinearLayout
    android:id="@+id/linearlayout01"
    android:layout_below="@id/ImageView01"
    android:layout_height="fill_parent"
    android:layout_width="fill_parent"

    >

<WebView  
    android:id="@+id/webview"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"

/>

</LinearLayout>


</RelativeLayout>

Hope this is what you want....

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文