Bir ListView
benim uygulamada gibi birçok dize öğesi vardır name
, experience
, date of joining
vb Sadece yapmak istiyorum name
kalın. Tüm dize elemanları tek bir içinde olacaktır TextView
.
XML'im:
<ImageView
android:id="@+id/logo"
android:layout_width="55dp"
android:layout_height="55dp"
android:layout_marginLeft="5dp"
android:layout_marginRight="5dp"
android:layout_marginTop="15dp" >
</ImageView>
<TextView
android:id="@+id/label"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/logo"
android:padding="5dp"
android:textSize="12dp" >
</TextView>
ListView öğesinin Metin Görünümünü ayarlamak için kodum:
holder.text.setText(name + "\n" + expirience + " " + dateOfJoininf);