아래와 같이 했는데...
	해상도마다 말풍선이 다르게 나오네요. ㅠ.ㅠ
	뭐가 잘못 된건지요??
	 
	 
	==========================================
	 
	<?xml version="1.0" encoding="utf-8"?>
	<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
	    android:layout_width="68dp"
	    android:layout_height="48dp"
	    android:layout_gravity="center_vertical"
	    android:adjustViewBounds="true"
	    android:background="@drawable/custom_callout_balloon_1"
	    android:orientation="vertical" >
	 
	 
	     <LinearLayout
	         android:layout_width="match_parent"
	         android:layout_height="0px"
	         android:layout_weight="6" >
	 
	         <TextView
	             android:id="@+id/title"
	             android:layout_width="match_parent"
	             android:layout_height="wrap_content"
	             android:layout_gravity="center_horizontal"
	             android:ellipsize="end"
	             android:singleLine="true"
	             android:text="이름"
	             android:textColor="#ff000000"
	             android:textSize="11dp"
	             android:textStyle="bold" />
	     </LinearLayout>
	         
	     <LinearLayout
	         android:layout_width="match_parent"
	         android:layout_height="0px"
	         android:layout_weight="5">
	         
	         <TextView
	             android:id="@+id/desc"
	             android:layout_width="match_parent"
	             android:layout_height="wrap_content"
	             android:ellipsize="end"
	             android:singleLine="true"
	             android:text="타입"
	             android:textColor="#ff7f7f7f"
	             android:textSize="9dp" />
	     </LinearLayout>
	 
	</LinearLayout>