【发布时间】:2012-01-04 11:11:31
【问题描述】:
我想将图像放在我的列表中的最右边,并按照 http://developer.android.com/reference/android/widget/LinearLayout.html#attr_android:gravity 我正在努力做
<ImageView
android:id="@+id/list_now_playing"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="end"
>
</ImageView>
但我遇到了错误。 请提出解决方案
【问题讨论】:
-
您使用的是哪个 Android 版本?
-
为您的文本视图使用 fill_parent 或 layout_weight=1
标签: android list listview imageview