android absolutelayout对齐中心

时间:2014-09-22 21:44:18

标签: android layout alignment

我有一个包含scrollview的简单Android应用程序,在其中有绝对布局,我希望它们位于中心。当我在eclipse中看到图形布局时,绝对布局位于屏幕的中心,如下所示:

这是我的代码:

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="400dp"
android:layout_height="fill_parent"
android:background="@drawable/bg"
android:gravity="center_vertical" >

<AbsoluteLayout
    android:id="@+id/AbsoluteLayout1"
    android:layout_width="284dp"
    android:layout_height="562dp"
    android:layout_marginBottom="40dp"
    android:layout_marginLeft="18dp"
    android:layout_marginRight="18dp"
    android:layout_marginTop="26dp"
    android:background="@drawable/bg4"
     >

    <TextView
        android:id="@+id/textView2"
        android:layout_width="244dp"
        android:layout_height="500dp"
        android:layout_x="20dp"
        android:layout_y="81dp"
        android:text="Info here"
        android:textColor="#ffffff" />

  </AbsoluteLayout>

</ScrollView>

2 个答案:

答案 0 :(得分:0)

首先,弃用AbsoluteLayout,因此您可能不应该使用它。我建议改为RelativeLayout。

对于ScrollView,请确保提供android:fillViewport =“true”然后设置子布局的layout_width =“match_parent”,如下所示:

<?xml version="1.0" encoding="utf-8"?>
<ScrollView  xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fillViewport="true"
    android:background="#444444">

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center_vertical" >

        <Button android:id="@+id/button"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerHorizontal="true"
            android:text="Button"/>

        <TextView
            android:id="@+id/textView2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerHorizontal="true"
            android:layout_below="@id/button"
            android:text="Info here"
            android:textColor="#ffffff" />

    </RelativeLayout>

</ScrollView>

这将处理ScrollView的子宽度小于ScrollView本身宽度的情况。

答案 1 :(得分:0)

您不必为此使用滚动视图。您可以向TextView添加一些XML属性,以使其可滚动。

使用此:

android:maxLines = "AN_INTEGER"

android:scrollbars = "vertical"

然后在你的Java类中:

yourTextView.setMovementMethod(new ScrollingMovementMethod())