我已经阅读了有关在Android中添加垂直线的其他问题,这是我的问题
垂直线代码
<View
android:id="@+id/verticalSeperatorHours"
android:layout_width="1dip"
android:layout_height="match_parent"
android:background="@color/medium_dark_gray"
/>
Run Code Online (Sandbox Code Playgroud)
水平线代码:
<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>
Run Code Online (Sandbox Code Playgroud)
我的结构xml:
没有出现水平线的LinearLayout之后的“视图”。我意识到我不了解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" …Run Code Online (Sandbox Code Playgroud)