gpt4 book ai didi

java - Android Web View 在平板电脑上看起来很奇怪,但在 Android Studio 的模拟器上看起来很好

转载 作者:行者123 更新时间:2023-12-01 16:18:18 24 4
gpt4 key购买 nike

我制作了一个 WebView,该网站在模拟器上看起来完全正常,但当我在我的 Samsung Galaxy Tab A 上安装 APK 时,它看起来真的很困惑。

它应该是这样的: enter image description here

这就是它在我的平板电脑上的样子:

enter image description here enter image description here

我有 3 个 xml 文件:

activity_webappview.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
android:layout_width="fill_parent"
android:orientation="horizontal"
android:layout_height="fill_parent"
tools:context="com.cwm.cwmapp.webappview">

<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:background="@null"
android:text=""
tools:layout_editor_absoluteX="2dp"
tools:layout_editor_absoluteY="2dp" />
</WebView>
</RelativeLayout>

content_main.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context=".webappview"
tools:showIn="@layout/activity_main">



</android.support.constraint.ConstraintLayout>

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">

<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay" />

</android.support.design.widget.AppBarLayout>

<include layout="@layout/content_main" />

<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:layout_margin="@dimen/fab_margin"
app:srcCompat="@android:drawable/ic_dialog_email" />

</android.support.design.widget.CoordinatorLayout>

我尝试对它们进行一些修改,但它只会改变模拟器中的结果,并且在平板电脑上始终保持不变。

有人知道为什么它在平板电脑上看起来如此困惑吗?

最佳答案

发现问题了。由于这是从文件而不是实际网站加载的,因此我无法访问引用的样式表(它是指向在线样式表的链接)。

事实证明按钮仍然可以保留...:^)

关于java - Android Web View 在平板电脑上看起来很奇怪,但在 Android Studio 的模拟器上看起来很好,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62344789/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com