show_more_info.xml 735 B

1234567891011121314151617181920
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="fill_parent"
  4. android:layout_height="wrap_content"
  5. android:gravity="center"
  6. android:background="@android:color/white"
  7. android:orientation="horizontal" >
  8. <TextView
  9. android:layout_width="wrap_content"
  10. android:layout_height="wrap_content"
  11. android:textSize="25dp"
  12. android:gravity="right"
  13. android:textStyle="bold"
  14. android:textColor="@android:color/black"
  15. android:text="更多" />
  16. <ProgressBar android:layout_width="wrap_content"
  17. android:layout_height="wrap_content"
  18. style="?android:attr/progressBarStyleSmallTitle"/>
  19. </LinearLayout>