我已阅读有关在 Android 中添加垂直线的其他问题,这是我的问题
- 我能够在我的主 RelativeLayout 下添加一条垂直线作为“视图”,但无法在子 RelativeLayout 中执行此操作。
垂直线的代码
<View
android:id="@+id/verticalSeperatorHours"
android:layout_width="1dip"
android:layout_height="match_parent"
android:background="@color/medium_dark_gray"
/>
水平线的代码:
<LinearLayout
android:id="@+id/currentTimeMarkerLinearLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="0dp"
android:layout_marginTop="100dp"
android:baselineAligned="false"
android:orientation="horizontal"
android:padding="0dp" >
<View
android:layout_width="0dp"
android:layout_height="3dp"
android:layout_weight="1" />
<View
android:id="@+id/currentTimeLineView"
android:layout_width="0dp"
android:layout_height="1dp"
android:layout_weight="14"
android:background="@color/strong_blue" />
</LinearLayout>
我的结构xml:
- 相对布局
- 线性布局
- 滚动视图
- 相对布局
- 相对布局
- “添加垂直线不起作用”
- “添加水平线作品”
- 线性布局
- 在此处添加垂直线有效,但不是我想要的”
没有出现水平线LinearLayout后的“View”。我意识到我没有深入了解android布局的结构,所以有人可以向我解释它是如何工作的。
完整的布局:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:arm="http://schemas.android.com/apk/res/edu.cmu.sv.arm"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="0dp" >
<LinearLayout ...
<View
android:id="@+id/dividerView"
android:layout_width="fill_parent"
android:layout_height="1dp"
android:layout_below="@+id/dayLabelsLinearLayout"
android:background="@color/medium_gray" />
<ScrollView
android:id="@+id/calendarScrollView"
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:layout_below="@+id/dividerView"
android:layout_alignParentBottom="true"
android:overScrollMode="never"
android:padding="0dp"
android:scrollbars="none"
android:fadingEdge="none" >
<RelativeLayout
android:id="@+id/calendarRelativeLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="0dp" >
<LinearLayout ...
<LinearLayout
android:id="@+id/currentTimeMarkerLinearLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="0dp"
android:layout_marginTop="100dp"
android:baselineAligned="false"
android:orientation="horizontal"
android:padding="0dp" >
<View
android:layout_width="0dp"
android:layout_height="3dp"
android:layout_weight="1" />
<View
android:id="@+id/currentTimeLineView"
android:layout_width="0dp"
android:layout_height="1dp"
android:layout_weight="14"
android:background="@color/strong_blue" />
</LinearLayout>
<View
android:id="@+id/verticalSeperatorHours"
android:layout_width="1dip"
android:layout_height="match_parent"
android:layout_marginLeft="100dp"
android:background="@color/medium_dark_gray" />
</RelativeLayout>
</ScrollView>
<LinearLayout ...
<View ...
</RelativeLayout>