私のルート レイアウトは、RelativeLayout
いくつかの TextViews、Buttons、および ImageViews を含む です。画面の下部には、TableLayout
TextView の 4x4 グリッドを表す があります。グリッド内の各 TextView の右下に配置された View (TextView など) を表示したいと思います。
だから私は
<TableLayout ...>
<TableRow ...>
<TextView android:id="@+id/x0y0".../>
<TextView android:id="@+id/x0y1".../>
....
</TableLayout>
...
<TextView android:layout_alignTop="@id/x0y0"
android:layout_alignLeft="@id/x0y0" ... />
<TextView android:layout_alignTop="@id/x1y1"
android:layout_alignLeft="@id/x1y1" ... />
しかし、それは画面の左上隅にあります。RelativeLayout のビューは、同じ RelativeLayout 内の別のビューにのみ配置できると思われますが、これを確認するか、この問題を解決する方法について提案してください。