0

我的问题对其他人来说可能是微不足道的,但对我来说,我无法让它发挥作用。我有如下布局xml。

<?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:layout_width="match_parent"
    android:layout_height="match_parent"   
    android:orientation="vertical"
    >

    <LinearLayout android:id="@+id/tracker_container"
        android:layout_width="match_parent"
        android:layout_height="0dip"
        android:layout_weight="1"
        android:orientation="vertical"
        />

    <ImageView
        android:id="@+id/mainImageView"
        android:contentDescription="@string/display"        
        android:layout_gravity="center"
        android:layout_width="400dp"
        android:layout_height="300dp"
        android:opacity="translucent" 

        />

</LinearLayout>

如何使ImageViewis 在整个屏幕的中心?谢谢

4

2 回答 2

1

尝试这个 -

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

<RelativeLayout android:id="@+id/tracker_container"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
/>

<ImageView
    android:id="@+id/mainImageView"
    android:contentDescription="@string/display"        
    android:layout_centerInParent="true"
    android:layout_width="400dp"
    android:layout_height="300dp"
    android:opacity="translucent" 

    />

</RelativeLayout>
于 2013-06-30T08:44:23.480 回答
0

您可以使用 aRelativeLayout作为父级并使用layout_centerInParent

<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">

    <LinearLayout android:id="@+id/tracker_container"
        android:layout_width="match_parent"
        android:layout_height="0dip"
        android:layout_weight="1"
        android:orientation="vertical" />

    <ImageView
        android:id="@+id/mainImageView"
        android:contentDescription="@string/display"        
        android:layout_centerInParent="true"
        android:layout_width="400dp"
        android:layout_height="300dp"
        android:opacity="translucent" />

</RelativeLayout>

我不确定那LinearLayout是为了什么,但我把它保存在那里。也许您正在以编程方式填充它并且它正在推动您ImageViewRelativeLayout确保无论其他视图元素如何,它始终是父级的中心。

于 2013-06-30T08:36:21.633 回答