bdp_widget_expandable_text_layout.xml 905 B

12345678910111213141516171819202122232425
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:orientation="vertical" >
  6. <com.baidu.platformsdk.widget.ExpandableTextView
  7. android:id="@+id/txt_content"
  8. android:layout_width="fill_parent"
  9. android:layout_height="wrap_content"
  10. android:padding="5.0dip"
  11. android:textSize="14sp"
  12. android:textColor="@color/bdp_gray"
  13. android:lineSpacingMultiplier="1.5"
  14. />
  15. <!-- android:src="@drawable/bdp_widget_text_expandable_unfold" -->
  16. <ImageView
  17. android:id="@+id/img_expand"
  18. android:layout_width="wrap_content"
  19. android:layout_height="wrap_content"
  20. android:layout_alignRight="@id/txt_content"
  21. android:layout_alignBottom="@id/txt_content"
  22. android:contentDescription="@string/bdp_image"
  23. />
  24. </RelativeLayout>