我在字符串之前有一个字符串值我想把我的图像作为子弹吗?怎么做?
答案 0 :(得分:0)
你可以这样使用
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<ImageView
android:id="@+id/img_bullet"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="right"
android:layout_marginLeft="5dip"
android:background="@drawable/bullet"/>
<TextView
android:id="@+id/tv_content"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_alignParentRight="true"
android:gravity="right"
android:layout_marginRight="5dip"
android:layout_marginTop="5dip"
android:text="This is TextView"/>