我试图并排显示两张桌子。最初只有一个表在ScrollView中,但我将其扩展到所有表。现在我在ScrollView上获得一个未绑定的前缀。有任何想法吗?我没有得到错误,直到将它包含在两个表周围。
编辑删除了ScrollView中的第二个表和相对布局。没效果。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:background="@drawable/aegis">
//Some TextViews here
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/techOvr"
android:layout_marginTop="10dp"
android:id="@+id/shipInfoLinearLayout1">
<RelativeLayout
android:id="@+id/headers"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:orientation="vertical">
//TextViews
</RelativeLayout>
<ScrollView
androud:id="@+id/tableScroll"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:layout_below="@id/headers"
android:fillViewport="true"
android:layout_marginTop="30dp"
android:layout_marginStart="30dp"
android:layout_marginLeft="30dp">
<TableLayout>
//Mess load of TableRows and TextViews.
</TableLayout>
</ScrollView>
</RelativeLayout>
</RelativeLayout>
答案 0 :(得分:0)
解决了......显然我在id上拼错了一个android:标签。应该是显而易见的 facepalm !