0
在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>
提示(*常見的錯誤使用'mipmap's *):請注意,'mipmap'文件夾僅用於保存**啓動器圖標**。 –
然後,我應該在哪裏將我的裝備圖像放在任何單獨的文件夾或具有特定名稱的文件夾中? – pepito
在一個具體的名稱:'drawable'(drawable-xyzdpi,實際上) –