[![enter] image description [1]] [1]我是android到android開發的新品牌,只是用xml來構建佈局。我寫了下面的代碼來打印hello ubuntu並在其中插入圖像。但該圖像似乎有一個不需要的上下填充或邊距(不知道它叫什麼),看起來更奇怪。請任何人幫我刪除它。這裏是我的代碼:ImageView中的不需要的填充或邊距
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:background="@color/colorAccent"
android:orientation="vertical"
android:padding="10dp"
>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="8dp"
android:layout_margin="8dp"
android:text="Hello Ubuntu (16.06LTS)"
android:background="@color/colorPrimary"/>
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="0dp"
android:src="@mipmap/Ubuntu"
android:layout_margin="0dp"
/>
</LinearLayout>
截圖這裏(見右側preiew):https://i.stack.imgur.com/j9NlT.png
檢查你的Ubuntu命名圖像。它是否有額外的空間? – Piyush
你能爲它如何實際上看起來添加圖像和如何你想它是 –
PLZ提供屏幕圖像 –