<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/listitem_contact"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:paddingBottom="@dimen/padding_wide"
android:paddingLeft="@dimen/padding_medium"
android:paddingRight="@dimen/padding_medium"
android:paddingTop="@dimen/padding_wide">
<TextView
android:id="@+id/textview1"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_marginRight="@dimen/padding"
android:layout_weight="1"
android:text="abcdefghijklm, Miss abcdefghi"
android:gravity="left|center_vertical"/>
<ImageView
android:id="@+id/imageview1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="@dimen/padding"
android:src="@drawable/ic_map"
android:background="@drawable/list_item_image_color"/>
<ImageView
android:id="@+id/imageview2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="@dimen/padding"
android:src="@drawable/ic_textmessage"
android:background="@drawable/list_item_image_color"/>
<ImageView
android:id="@+id/imageview3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_phone"
android:background="@drawable/list_item_image_color"/>
</LinearLayout>
here when text is abcdefghijklm, Miss abcdefghi in Textview at that time Text cutssOff I am only using LinearLayout.
can anybody help me where need I do changes ? Thanks in advanced.
0 comments:
Post a Comment