我在啓動屏幕活動中使用了一個圖像作爲LinearLayout的背景,但它顯示不適合屏幕。我不知道如何使用屬性來擴展它。LinearLayout中的初始屏幕圖像背景不適合
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_splash"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.myproject.SplashActivity"
android:orientation="horizontal"
android:background="@drawable/my_image_background">
</LinearLayout>
他需要背景圖片。如果他在Linearlayout中設置了imageview,他如何放置其餘的佈局?你能解釋一下嗎? – Noorul
@Ahamed我剛剛給出了一個啓動畫面的通用示例。可以使用RelativeLayout而不是LinearLayout來解決您所陳述的問題。 –
是的。你做到了。我很感激。但是,一些新的基本程序員不知道下一步該怎麼做。所以,給你一些關於你的答案的更多信息,那麼你將獲得更好的聲譽。 – Noorul