我想製作一個包含頂部欄和圖像的屏幕。我使用TextView作爲頂部欄和ImageView作爲圖像。我只想將填充設置爲圖像視圖。我的xml如下。填充操作不起作用。任何人都可以解釋爲什麼和做什麼?在ImageView中填充不工作
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/background" >
<TextView android:id="@+id/topBar"
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:text="@string/home"
android:textSize="20sp"
android:textColor="#ffffff"
android:textStyle="bold"
android:shadowColor="#000000"
android:shadowRadius="1"
android:shadowDy="-1"
android:gravity="center"
android:background="@drawable/navBar"/>
<ImageView android:id="@+id/image"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingLeft="10dp"
android:paddingTop="10dp"
android:paddingRight="10dp"
android:paddingBottom="10dp"
android:layout_below="@+id/topBar"
android:background="@drawable/image"/>
</RelativeLayout>
是的,這正是我正在尋找的。感謝@Coderji爲您的快速反應。 :) – CrazyLearner
這是我的榮幸:),如果你發現這個有用的話,你可以打勾它作爲正確的,所以人們可以在將來參考:) – Coderji
我勾選它是正確的,但抱歉不能投票作爲我的聲譽得分低於15. :( – CrazyLearner