图像底部没有重力(底部)

时间:2017-02-18 23:44:38

标签: java android xml

我正在Android工作室构建应用程序,我有一点问题。我在main_activity.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:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:orientation="vertical"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:background="@drawable/login_background"
tools:context="com.example.filip.transport.Activities.MainActivity"
android:windowSoftInputMode="stateVisible|adjustPan"
android:layout_centerInParent="true">

<LinearLayout
    android:layout_marginTop="5dp"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="300dp"
    android:layout_centerVertical="true"
    android:layout_centerHorizontal="true"
    android:layout_marginStart="38dp">

    <TextView
        android:textSize="18sp"
        android:textColor="#000000"
        android:text="Ime i Prezime"
        android:layout_width="wrap_content"
        android:layout_height="35dp"
        android:id="@+id/textView2" />
    <RelativeLayout
        android:background="@drawable/border"
        android:layout_width="match_parent"
        android:layout_height="40dp" >
        <Spinner
            android:layout_height="40dp"
            android:layout_width="300dp"
            android:id="@+id/spinner3"
            />

    </RelativeLayout>
    <TextView

        android:layout_marginTop="8dp"
        android:textSize="17sp"
        android:text="Lozinka"
        android:textColor="#000"
        android:layout_width="wrap_content"
        android:layout_height="30dp"
        android:id="@+id/textView"
        android:height="@android:dimen/app_icon_size" />

    <EditText

        android:layout_marginTop="-3dp"
        android:layout_width="match_parent"
        android:layout_height="40dp"
        android:inputType="textPassword"
        android:id="@+id/lozinka"
        android:background="@drawable/border"

        />

    <Button

        android:layout_marginTop="8dp"
        android:id="@+id/button1"
        android:textAllCaps="false"
        android:text="Prijava korisnika"
        android:textColor="#FFFFFF"
        android:textSize="18sp"

        android:layout_width="match_parent"
        android:layout_height="40dp"
        android:background="@drawable/button"
        />


</LinearLayout>
<RelativeLayout
    android:id="@+id/relativeLayout1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" >


    <ImageView
        android:layout_centerVertical="true"
        android:layout_centerHorizontal="true"
        android:id="@+id/pic"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="bottom"
        android:src="@drawable/truck_login1"
        android:layout_alignParentBottom="true"/>

</RelativeLayout>
</RelativeLayout>

就像你看到的那样,我有gravity="bottom",当我在手机上测试应用程序时,图像位于我的活动底部,但是当我在其他一些设备上测试时(21 api),图像是cca 10 dp在底部之上。有人可以给我一些暗示吗? ty

3 个答案:

答案 0 :(得分:2)

首先,ImageView上方不需要相对布局。此外,ImageView还有android:layout_centerVertical =“true”&amp;&amp; android:layout_centerHorizo​​ntal =“true”,它只是将图像放在屏幕的中心。如果要将ImageView放在屏幕的中心底部,只需删除centerVertical属性即可。

<ImageView
        android:id="@+id/pic"
        android:layout_centerHorizontal="true"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="bottom"
        android:src="@drawable/truck_login1"
        android:layout_alignParentBottom="true"/>

答案 1 :(得分:0)

为ImageView删除RelativeLayout parent或将android:layout_alignParentBottom="true"添加到ImageView的RelativeLayout。

答案 2 :(得分:0)

Jatin Jha的回答。但是imageView中使用的图像可能在其周围有一些空白区域。使用一些图像编辑软件检查图像。