You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1017 B
31 lines
1017 B
<?xml version="1.0" encoding="utf-8"?> |
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" |
|
android:layout_width="fill_parent" |
|
android:layout_height="wrap_content" |
|
android:gravity="center_vertical" |
|
android:padding="10dip" |
|
android:paddingRight="?android:attr/scrollbarSize"> |
|
|
|
<TextView |
|
android:id="@+id/feed_name" |
|
android:layout_width="wrap_content" |
|
android:layout_height="wrap_content" |
|
android:singleLine="true" |
|
style="@style/SearchNameText" /> |
|
<ProgressBar |
|
android:id="@+id/feed_loading" |
|
android:layout_width="24dip" |
|
android:layout_height="24dip" |
|
android:layout_alignParentRight="true" |
|
android:indeterminateOnly="true" /> |
|
<TextView |
|
android:id="@+id/feed_unreadcount" |
|
android:layout_width="wrap_content" |
|
android:layout_height="24dip" |
|
android:layout_alignParentRight="true" |
|
android:gravity="center_vertical" |
|
style="@style/SearchNameText" |
|
android:visibility="gone" /> |
|
|
|
</RelativeLayout>
|
|
|