我有以下结构:
<LinearLayout
android:id="@+id/linearLayout5"
android:layout_width="match_parent"
android:layout_height="0dip"
android:background="@drawable/framewhite"
android:orientation="vertical"
android:layout_marginLeft="5dp"
android:layout_marginRight="5dp"
android:layout_weight="1"
android:gravity="right"
>
<ScrollView
android:layout_width="match_parent"
android:layout_height="120dp"
android:layout_marginTop="20dp"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
>
<TextView
android:id="@+id/txtBestPickTrivia"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/testTrivia"
android:textAppearance="?android:attr/textAppearanceMedium" />
</ScrollView>
<TextView
android:id="@+id/txtEntityName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="2dp"
android:layout_marginBottom="10dp"
android:layout_marginRight="20dp"
android:text="Cars (2006)" />
</LinearLayout>
问题出现在 ScrollView 的这一行:
android:layout_height="120dp"
我希望根据屏幕分辨率调整高度,我使用3.7 英寸 WVGA(Nexus One)设计它,它在我的 HTC Desire 中运行良好,但是当我使用 HTC Explorer 测试我的应用程序时,它使用3.2 HVGA它没有'不起作用,ScrollView 跨越了屏幕边界,我看不到我的 TextView 即 txtEntityName。
还有一件事,有什么方法可以像在 .NET 中一样停靠任何控件,其中控件可以停靠在顶部、底部、右侧或左侧?