如何在 Android 中针对各种屏幕分辨率在固定位置显示控件?
我有一个像下面这样的屏幕设计
<?xml version="1.0" encoding="utf-8"?>
<TableLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:gravity="center_horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:background="@drawable/img_background_loadbackground">
<TableRow>
<TextView
android:id="@+id/tv1"
android:layout_width="fill_parent"
android:layout_height="300sp"/>
</TableRow>
<TableRow>
</TableRow>
<ProgressBar
android:id="@+id/progressbar"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
</TableLayout>
它在 HVGA(320x480) 分辨率下工作,进度条出现在屏幕底部,但如果我以其他分辨率 (WQVGA432 - 240x432) 运行,进度条出现在屏幕中间。我无法在固定位置显示它。
我正在使用下面显示的清单文件,但没有输出
<supports-screens android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:anyDensity="true" />
我没有解决方案,所以请给我一些想法来解决这个问题。