领透酷医云安卓客户端

item_shortcut.xml 776B

123456789101112131415161718192021222324
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:id="@+id/llShortcut"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:orientation="vertical">
  7. <ImageView
  8. android:id="@+id/ivIcon"
  9. android:layout_width="match_parent"
  10. android:layout_height="wrap_content"
  11. android:layout_marginTop="5dp"
  12. android:src="@drawable/icon_github" />
  13. <TextView
  14. android:id="@+id/tvName"
  15. android:layout_width="match_parent"
  16. android:layout_height="wrap_content"
  17. android:layout_marginTop="5dp"
  18. android:gravity="center"
  19. android:text="微博"
  20. android:textSize="10sp" />
  21. </LinearLayout>