如何在多行文本视图的最后一个单词之后添加图像?

时间:2016-06-13 16:00:04

标签: android

我正在使用餐馆应用程序,我想在食物名称之后的Veg Non-Veg图像。我使用了相对布局但无法实现。 See Image 我想实现这一目标。提前谢谢。

1 个答案:

答案 0 :(得分:0)

尝试使用像这样的自定义视图;

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal">
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" 
        android:id="@+id/item_name"
        android:layout_weight="1"/>
    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" 
        android:id="@+id/item_image"/>
</LinearLayout>

然后您的应用程序将需要一个适配器来显示列表中的内容或您想要显示的任何视图。