activity_equip_container.xml 918 B

123456789101112131415161718192021222324
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:orientation="vertical"
  8. tools:context=".activities.EquipContainerActivity">
  9. <TextView
  10. android:id="@+id/title"
  11. android:layout_width="wrap_content"
  12. android:layout_height="wrap_content"
  13. android:layout_gravity="center_horizontal"
  14. android:padding="10dp"
  15. android:text=""
  16. android:textColor="@color/black_272727"
  17. android:textSize="18sp" />
  18. <com.sybotan.android.demo.view.SuperExpandableListView
  19. android:id="@+id/expandlv"
  20. android:layout_width="match_parent"
  21. android:layout_height="match_parent" />
  22. </LinearLayout>