Using ?android:attr/listPreferredItemHeight instead of an explicit constant.
diff --git a/res/layout-finger/social_list_item.xml b/res/layout-finger/social_list_item.xml
index a34511e..ab4eddf 100644
--- a/res/layout-finger/social_list_item.xml
+++ b/res/layout-finger/social_list_item.xml
@@ -17,7 +17,7 @@
 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
     android:layout_width="fill_parent"
     android:layout_height="wrap_content"
-    android:minHeight="64dip"
+    android:minHeight="?android:attr/listPreferredItemHeight"
 >
 
     <View
diff --git a/res/layout-finger/social_list_item_reply.xml b/res/layout-finger/social_list_item_reply.xml
index b9553e7..b7c06a0 100644
--- a/res/layout-finger/social_list_item_reply.xml
+++ b/res/layout-finger/social_list_item_reply.xml
@@ -17,7 +17,7 @@
 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
     android:layout_width="fill_parent"
     android:layout_height="wrap_content"
-    android:minHeight="64dip"
+    android:minHeight="?android:attr/listPreferredItemHeight"
     android:paddingBottom="5dip"
 >