我想把圖像(menumain)作爲全屏幕背景。我的代碼是:背景圖像AndroidStudio
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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:id="@+id/mainactivity"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="com.hgyghyfghyu.apkana40.MainActivity"
tools:showIn="@layout/activity_main"
android:background="@drawable/menumain"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:layout_marginTop="20dp"
android:orientation="horizontal"
android:layout_marginBottom="10dp">
<LinearLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:paddingBottom="7dp"
android:paddingTop="7dp"
android:paddingRight="10dp"
android:paddingLeft="15dp"
android:id="@+id/mainavatarbck">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/mainavatar"/>
</LinearLayout>
<LinearLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="2"
android:layout_marginRight="10dp"
android:id="@+id/mainnamebck">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="7dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/mainname"
android:textStyle="bold"
android:textSize="25sp"
android:textColor="#FFFFFF"
android:paddingTop="10dp"
android:layout_alignParentTop="true"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/maincity"
android:textSize="10sp"
android:textColor="#FFFFFF"
android:layout_below="@+id/mainname"
android:layout_centerInParent="true"/>
</RelativeLayout>
</LinearLayout>
<LinearLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:layout_marginLeft="10dp"
android:id="@+id/mainbackbtn">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:tint="#FFFFFF"
android:id="@+id/mainbackicon"
android:layout_centerInParent="true"/>
</RelativeLayout>
</LinearLayout>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="6"
android:paddingTop="10dp">
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/MainContainer">
</FrameLayout>
</LinearLayout>
</LinearLayout>
存在問題,因爲圖像未全屏顯示。周圍有空白(圖像位於中央)。我該怎麼做才能解決這個問題?
其實我有:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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:id="@+id/mainactivity"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="com.hgyghyfghyu.apkana40.MainActivity"
tools:showIn="@layout/activity_main"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/menumain"
android:scaleType="fitXY"/>
//info
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:layout_marginTop="20dp"
android:orientation="horizontal"
android:layout_marginBottom="10dp">
<LinearLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:paddingBottom="7dp"
android:paddingTop="7dp"
android:paddingRight="10dp"
android:paddingLeft="15dp"
android:id="@+id/mainavatarbck">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/mainavatar"/>
</LinearLayout>
<LinearLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="2"
android:layout_marginRight="10dp"
android:id="@+id/mainnamebck">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="7dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/mainname"
android:textStyle="bold"
android:textSize="25sp"
android:textColor="#FFFFFF"
android:paddingTop="10dp"
android:layout_alignParentTop="true"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/maincity"
android:textSize="10sp"
android:textColor="#FFFFFF"
android:layout_below="@+id/mainname"
android:layout_centerInParent="true"/>
</RelativeLayout>
</LinearLayout>
<LinearLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:layout_marginLeft="10dp"
android:id="@+id/mainbackbtn">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:tint="#FFFFFF"
android:id="@+id/mainbackicon"
android:layout_centerInParent="true"/>
</RelativeLayout>
</LinearLayout>
</LinearLayout>
//koniec info
//kontener
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="6"
android:paddingTop="10dp">
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/MainContainer">
</FrameLayout>
</LinearLayout>
//koniec kontenera
</LinearLayout>
</LinearLayout>
在我的代碼是:機器人:背景= 「@繪製/ menumain」 – littlewombat
試android:scaleType =「fitXY」 – MrRobot9
我試圖實現Imageview並使用scaleType,但在那裏是另一個問題,我只有這個imageview(仍然不是全屏),我編輯我的帖子。你能檢查一下嗎? – littlewombat