我没有找到仅 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);
}
}