有人可以指导我应该在代码中添加什么来绘制固定高度的垂直线我希望垂直线像这个网址中的比例测量see vertical line example 这是我的代码TRIED CODE
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<LinearLayout
android:id="@+id/linear_layout_one"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_marginLeft="5dp">
<View
android:layout_width="5dip"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
android:rotation="90"
android:background="@android:color/darker_gray"/>
<View
android:layout_width="5dip"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
android:layout_marginRight="5dp"
android:rotation="90"
android:background="@android:color/holo_purple"/>
<View
android:layout_width="5dip"
android:layout_height="match_parent"
android:layout_marginLeft="5dp"
android:rotation="90"
android:background="@android:color/darker_gray"/>
<View
android:layout_width="5dip"
android:layout_height="match_parent"
android:layout_marginLeft="5dp"
android:rotation="90"
android:background="@android:color/holo_purple"/>
<View
android:layout_width="5dip"
android:layout_height="match_parent"
android:layout_marginLeft="5dp"
android:rotation="90"
android:background="@android:color/holo_purple"/>
<View
android:layout_width="5dip"
android:layout_height="match_parent"
android:layout_marginLeft="5dp"
android:rotation="90"
android:background="@android:color/holo_purple"/>
<View
android:layout_width="5dip"
android:layout_height="match_parent"
android:layout_marginLeft="5dp"
android:rotation="90"
android:background="@android:color/holo_purple"/>
<View
android:layout_width="5dip"
android:layout_height="match_parent"
android:layout_marginLeft="5dp"
android:rotation="90"
android:background="@android:color/holo_purple"/>
<View
android:layout_width="5dip"
android:layout_height="match_parent"
android:layout_marginLeft="5dp"
android:rotation="90"
android:background="@android:color/holo_purple"/>
<View
android:layout_width="5dip"
android:layout_height="match_parent"
android:layout_marginLeft="5dp"
android:rotation="90"
android:background="@android:color/holo_purple"/>
</LinearLayout>
</ScrollView>