1

我正在尝试在滚动视图中绘制居中的垂直线。我有两部 Galaxy 2,一部是 Android 4.2.2,另一部是 2.3.7。

到目前为止,我的结果仅适用于 android 版本 4.2.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="match_parent"
    android:layout_height="match_parent" >

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >

        <View
            android:layout_width="4dp"
            android:layout_height="match_parent"
            android:layout_gravity="center"
            android:background="#000000" />

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

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Test text" />

        </RelativeLayout>
    </FrameLayout>

</ScrollView>

例子

在使用 android 版本 2.3.7 时,视图(中间的线)没有绘制。

有谁知道运行 android 2.3.7 的问题是什么?

4

1 回答 1

0

我没有找到仅 xml 的解决方案。

我的 xml 看起来像。请注意,视图有一个固定的高度,它将在活动中被替换。

<?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="wrap_content" >

    <RelativeLayout
        android:id="@+id/RelativeLayout1"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical" >

        <TextView
            android:id="@+id/ManualStartTextView"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentTop="true"
            android:layout_centerHorizontal="true"
            android:text="Start" />

        <RelativeLayout
            android:id="@+id/CenterRelativLayout"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@+id/ManualNoCardTableRow" >

            <View
                android:id="@+id/ManualTopGrayLine"
                android:layout_width="1dp"
                android:layout_height="200dp"
                android:layout_centerHorizontal="true"
                android:background="#000000" />

            <TextView
                android:id="@+id/ManualStepTreeHeaderTextView"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_below="@+id/ManualStepTreeButton"
                android:layout_marginLeft="3dp"
                android:layout_marginTop="15dp"
                android:layout_toRightOf="@+id/ManualTopGrayLine"
                android:gravity="right"
                android:text="3) Verifizieren" />

            <TextView
                android:id="@+id/ManualStepTreeBodyTextView"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignLeft="@+id/ManualStepTreeHeaderTextView"
                android:layout_below="@+id/ManualStepTreeHeaderTextView"
                android:layout_marginLeft="3dp"
                android:text="Lorem alfpha alsda a,si ljkasoi kjasbas asdop1 ,aspo9ij aslkdja9s oaisdjas0pd oasdn0p9m asd0p9" />
        </RelativeLayout>

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_below="@+id/CenterRelativLayout"
            android:layout_marginLeft="15dp"
            android:layout_marginRight="15dp"
            android:orientation="vertical" >

            <!-- some other content -->

        </LinearLayout>
    </RelativeLayout>

</ScrollView>

xml 生成以下视图。

在此处输入图像描述

如果您想要动态的线条高度(视图),您可以将以下方法添加到您的活动中。这会将行的高度设置为与RelativeLayout 相同的高度。

@Override
    public void onWindowFocusChanged(boolean hasFocus) {
        super.onWindowFocusChanged(hasFocus);
        if (hasFocus == true) {
            View manualTopGrayLine = findViewById(R.id.ManualTopGrayLine);
            RelativeLayout rlayout = (RelativeLayout) findViewById(R.id.CenterRelativLayout);

            RelativeLayout.LayoutParams layoutParams = (android.widget.RelativeLayout.LayoutParams) manualTopGrayLine.getLayoutParams();
            layoutParams.height = rlayout.getHeight();
            manualTopGrayLine.setLayoutParams(layoutParams);            
        }
    }
于 2013-07-10T11:15:35.373 回答