Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有LinearLayout并且我想投入其中ImageView。有什么简单的方法可以将此图像放在屏幕的右侧吗?现在,图像放在左边,填充和标记不能解决这个问题,因为这应该是动态完成的,图像每次都不一样。
LinearLayout
ImageView
谢谢。
您是否尝试将重力属性设置为right?
right
<ImageView android:id="@+id/image" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="right" android:contentDescription="@string/imageDesc" android:src="@drawable/image" />