在android studio中我在一个相对布局中添加了一个ButtonView。虽然在预视化中它没关系,但在播放时它不会出现。
代码:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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="com.xxx.xxx.xxx"
android:orientation="vertical"
android:weightSum="1"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
>
<WebView
android:id="@+id/webV"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true">
</WebView>
<ImageButton
android:id="@+id/imageButton7"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:srcCompat="@mipmap/ic_gear" />
</RelativeLayout>
答案 0 :(得分:0)
在android:layout_below="@+id/webV"
ImageButton
<ImageButton
android:id="@+id/imageButton7"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/webV"
app:srcCompat="@mipmap/ic_gear" />
答案 1 :(得分:0)
这很奇怪但是如果你使用 android:background 而不是 app:srcCompat ,它可能有用
<ImageButton
android:id="@+id/imageButton7"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@mipmap/ic_gear" />