垂直线不画

时间:2013-07-10 08:26:41

标签: android android-layout

我正在尝试在scrollview中绘制一条居中的垂直线。我有两个galaxy 2s,一个是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>

example

在使用Android版本2.3.7时,视图(中间的行)不是画画。

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

1 个答案:

答案 0 :(得分: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生成以下视图。

enter image description here

如果您想要一个动态高度的线(视图),您可以将以下方法添加到您的活动中。这将把线的高度设置为与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);            
        }
    }