这让我彻底疯了。我想在android中使用一个有点复杂的布局。我正在尝试使用权重而不是固定事物的大小。也许我应该放弃那个...
这是我想要做的:
我想要 3 个滚动视图(里面有文本视图)和一个大小相同的列表视图。
我使用了权重和为 4 的 TableLayout,并为包含滚动视图和列表视图的行赋予了权重 1。这实际上是一种工作,这让我感到惊讶,因为还有其他行没有分配权重。但是一旦实际填充了列表视图或文本视图开始占用多行,一切都会搞砸。我希望它们都保持相同的大小。
我在下面粘贴了我当前的 axml 文件。我已经尝试了一百万种不同的东西,我准备放弃了。这真的不应该那么难。
提前致谢!
<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/StepTable"
android:stretchColumns="*"
android:orientation="vertical"
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:background="@color/bgray"
android:padding="15dp"
android:weightSum="4">
<TableRow
style="@style/PhaseHeaderRow">
<TextView
android:text="Header 1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_span="3"
style="@style/PhaseHeader" />
</TableRow>
<TableRow
style="@style/PhaseRow.ListHeader"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<LinearLayout
android:orientation="horizontal"
android:weightSum="8"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_span="3">
<TextView
android:id="@+id/txt_PhaseListNumber"
android:gravity="center"
android:layout_weight="1"
android:text="Sub"
style="@style/PhaseTextView.List"
android:width="0px"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="2dp" />
<TextView
android:id="@+id/txt_PhaseListStatus"
android:layout_weight="2"
android:gravity="center"
style="@style/PhaseTextView.List"
android:width="0px"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="2dp"
android:text="head" />
<TextView
android:id="@+id/txt_PhaseListNote"
android:layout_weight="5"
android:gravity="left"
android:text="er"
style="@style/PhaseTextView.List"
android:width="0px"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="2dp" />
</LinearLayout>
</TableRow>
<TableRow
android:id="@+id/row_StepList"
android:layout_weight="1"
android:layout_width="fill_parent"
android:background="#ff9abf2f"
android:layout_height="wrap_content">
<ListView
android:id="@+id/list_Steps"
android:layout_span="3"
android:listSelector="#44ff0000"
android:drawSelectorOnTop="true"
android:choiceMode="singleChoice"
android:layout_width="fill_parent" />
</TableRow>
<TableRow
android:id="@+id/row_PhaseDescHeader"
style="@style/PhaseHeaderRow"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/txt_PhaseDescHeader"
style="@style/PhaseHeader"
android:text="Header 2" />
</TableRow>
<TableRow
android:id="@+id/row_TesterActionLabel"
style="@style/PhaseRow.ListHeader"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/txt_TesterActionLabel"
android:text="SubHeader"
style="@style/PhaseTextView.List"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
</TableRow>
<TableRow
android:id="@+id/row_TesterAction"
style="@style/PhaseRow"
android:layout_weight="1"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ScrollView
android:id="@+id/scroller_TesterAction"
android:layout_weight="1"
android:scrollbars="vertical"
android:fillViewport="true"
android:layout_span="3"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:id="@+id/txt_TesterAction"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:textSize="15sp"
android:ellipsize="start"
android:text="ScollView with TextView Inside" />
</ScrollView>
</TableRow>
<TableRow
android:id="@+id/row_ExitCriteraLabel"
style="@style/PhaseRow.ListHeader"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/txt_ExitCriteraLabel"
android:text="SubHeader"
style="@style/PhaseTextView.List"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
</TableRow>
<TableRow
android:id="@+id/row_ExitCritera"
style="@style/PhaseRow"
android:layout_weight="1"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ScrollView
android:id="@+id/scroller_ExitCritera"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scrollbars="vertical"
android:fillViewport="true"
android:layout_span="3">
<TextView
android:id="@+id/txt_ExitCritera"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textSize="15sp"
android:ellipsize="start"
android:text="Another ScollView with TextView Inside" />
</ScrollView>
</TableRow>
<TableRow
android:id="@+id/row_PhaseNotesHeader"
style="@style/PhaseHeaderRow">
<TextView
android:id="@+id/txt_PhaseNotesHeader"
style="@style/PhaseHeader"
android:text="Header 3" />
</TableRow>
<!-- -->
<TableRow
android:id="@+id/row_Notes"
style="@style/PhaseRow"
android:layout_weight="1"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ScrollView
android:id="@+id/scroller_Notes"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scrollbars="vertical"
android:fillViewport="true"
android:layout_span="3">
<TextView
android:id="@+id/txt_Notes"
android:layout_width="fill_parent"
android:textSize="17sp"
android:layout_height="wrap_content"
android:text="Yet another ScollView with TextView Inside"
android:singleLine="false"
android:ellipsize="none" />
</ScrollView>
</TableRow>
</TableLayout>
</TableLayout>