我有一个TableLayout,并希望将其集中在ScrollView中。使用以下代码,表格在设计视图中是集中的,但在模拟器或电话上不起作用。
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true">
<TableLayout
android:gravity="center_vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:stretchColumns="*">
....
</TableLayout>
</ScrollView>
我尝试了两件事:
android:layout_centerVertical="true"
但结果是相同的(适用于Android Studio,无法在模拟器/手机上运行)。有什么东西我错过了吗?