图像不会以android:layout_centerHorizo​​ntal为中心

时间:2016-07-15 06:40:41

标签: android-layout android-xml

我的形象不会使用代码" android:layout_centerHorizo​​ntal"即使使用重力也不会解决它。在我的relativelayout和滚动视图中是否还有其他方式或输入错误。

scale layout bounds landscape view of with scale layout bounds 屏幕尺寸768x1280 nexus api23

我没有android版本4的问题也许这是api相关的?因为我的最小sdk是android版本2?

以下是代码:

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:fillViewport="true"
android:layout_height="fill_parent">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.capstone.jmilibraryapp.Login">


<EditText
    android:layout_width="300dp"
    android:layout_height="wrap_content"
    android:id="@+id/etUsername"
    android:hint="Enter Sr-Code"
    android:layout_below="@+id/imageView3"
    android:layout_centerHorizontal="true" />
<ImageView
    android:layout_centerHorizontal="true"
    android:layout_width="500dp"
    android:layout_height="200dp"
    android:src="@drawable/jmilogo"
    android:id="@+id/imageView3"
    android:layout_alignParentTop="true"
    android:layout_alignParentLeft="true"
    android:layout_alignParentStart="true" />

<EditText
    android:layout_width="300dp"
    android:layout_height="wrap_content"
    android:id="@+id/etPassword"
    android:inputType="textPassword"
    android:hint="Password"
    android:layout_below="@+id/etUsername"
    android:layout_centerHorizontal="true" />

<Button
    android:layout_width="300dp"
    android:layout_height="wrap_content"
    android:id="@+id/bLogin"
    android:text="Log In"
    android:layout_below="@+id/etPassword"
    android:layout_alignLeft="@+id/etPassword"
    android:layout_alignStart="@+id/etPassword" />

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textAppearance="?android:attr/textAppearanceSmall"
    android:text="Log In as Guest"
    android:id="@+id/guest"
    android:layout_marginTop="20dp"
    android:layout_below="@+id/bLogin"
    android:layout_centerHorizontal="true" />
<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textAppearance="?android:attr/textAppearanceSmall"
    android:text="Log In as Guest"
    android:id="@+id/testinguser"
    android:layout_marginTop="20dp"
    android:layout_below="@+id/guest"
    android:layout_centerHorizontal="true"
   />


</RelativeLayout>
</ScrollView>

2 个答案:

答案 0 :(得分:0)

可能您的图像与ImageView的比例不同,您可以在设备的开发者工具中检查它是否启用showLayoutBounds。您将看到imageView的实际大小。

要解决此问题,您可以使ImageView与ImageView成比例,或者将scaleType =“fitCenter”广告到ImageView。

答案 1 :(得分:0)

尝试下面的xml,这对我有用..

Outout

<?xml version="1.0" encoding="utf-8"?>
<ScrollView 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">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_margin="20dp"
        android:orientation="vertical">

        <ImageView
            android:id="@+id/imageView3"
            android:layout_width="wrap_content"
            android:layout_height="200dp"
            android:layout_gravity="center_horizontal"
            android:layout_weight="1"
            android:scaleType="fitCenter"
            android:src="@drawable/school" />

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_marginTop="20dp"
            android:layout_weight="1">

            <EditText
                android:id="@+id/etUsername"
                android:layout_width="300dp"
                android:layout_height="wrap_content"
                android:layout_centerHorizontal="true"
                android:hint="Enter Sr-Code" />

            <EditText
                android:id="@+id/etPassword"
                android:layout_width="300dp"
                android:layout_height="wrap_content"
                android:layout_below="@+id/etUsername"
                android:layout_centerHorizontal="true"
                android:hint="Password"
                android:inputType="textPassword" />

            <Button
                android:id="@+id/bLogin"
                android:layout_width="300dp"
                android:layout_height="wrap_content"
                android:layout_alignLeft="@+id/etPassword"
                android:layout_alignStart="@+id/etPassword"
                android:layout_below="@+id/etPassword"
                android:text="Log In" />

            <TextView
                android:id="@+id/guest"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_below="@+id/bLogin"
                android:layout_centerHorizontal="true"
                android:layout_marginTop="20dp"
                android:text="Log In as Guest"
                android:textAppearance="?android:attr/textAppearanceSmall"/>

            <TextView
                android:id="@+id/testinguser"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_below="@+id/guest"
                android:layout_centerHorizontal="true"
                android:layout_marginTop="20dp"
                android:text="Log In as Guest"
                android:textAppearance="?android:attr/textAppearanceSmall"/>

        </RelativeLayout>
    </LinearLayout>
</ScrollView>