Android - 以编程方式为 LinearLayout 设置Layout_Gravity
2022-09-03 16:41:50
我有以下问题:我实现了一个包含a和.在这种情况下,图像约为屏幕宽度的50%。所以我想把它放在中心。不幸的是,我发现将其居中的唯一方法是,在.HorizontalScrollView
LinearLayout
ImageView
layout_gravity="center"
LinearLayout
这是我的xml:
<HorizontalScrollView
android:layout_gravity="center"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<LinearLayout
android:orientation="horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<ImageView
android:src="@drawable/myImg"
android:layout_width="wrap_content"
android:adjustViewBounds="true"
android:layout_height="150dp"/>
</LinearLayout>
</HorizontalScrollView>
但我需要以编程方式设置。有没有人知道我如何实现这一目标或知道另一种方式?我通过Google找到的所有内容都不适合我,就像这篇文章一样。layout_gravity
谢谢!