2013-05-26 12:39:44 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2013-07-19 11:38:57 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2013-05-26 12:39:44 +00:00
|
|
|
android:layout_width="fill_parent"
|
2013-07-07 17:52:43 +00:00
|
|
|
android:layout_height="@dimen/exp_listview_row_height"
|
2013-05-26 12:39:44 +00:00
|
|
|
android:layout_marginLeft="30dp"
|
|
|
|
android:orientation="horizontal" >
|
|
|
|
|
|
|
|
<ImageView
|
2013-06-08 06:34:21 +00:00
|
|
|
android:layout_width="25dp"
|
|
|
|
android:layout_height="25dp"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:id="@+id/iVFavicon"/>
|
2013-07-19 11:38:57 +00:00
|
|
|
|
|
|
|
<com.devspark.robototextview.widget.RobotoTextView
|
2013-05-26 12:39:44 +00:00
|
|
|
android:id="@+id/summary"
|
2013-06-08 06:34:21 +00:00
|
|
|
android:layout_width="0dp"
|
2013-05-26 12:39:44 +00:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_marginLeft="10dp"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:singleLine="true"
|
2013-06-08 06:34:21 +00:00
|
|
|
android:layout_weight="1"
|
2013-07-19 11:38:57 +00:00
|
|
|
android:textSize="20sp"
|
2013-07-20 08:36:48 +00:00
|
|
|
style="@style/RobotoFontStyle" />
|
2013-05-26 12:39:44 +00:00
|
|
|
|
2013-07-20 08:36:48 +00:00
|
|
|
<com.devspark.robototextview.widget.RobotoTextView
|
2013-06-08 06:34:21 +00:00
|
|
|
android:id="@+id/tv_unreadCount"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:gravity="center_vertical|right"
|
|
|
|
android:singleLine="true"
|
2013-07-20 08:36:48 +00:00
|
|
|
android:layout_marginRight="20dp"
|
|
|
|
style="@style/RobotoFontStyle" />
|
2013-06-08 06:34:21 +00:00
|
|
|
|
2013-05-26 12:39:44 +00:00
|
|
|
</LinearLayout>
|