Advertisement
Guest User

Untitled

a guest
Jul 28th, 2016
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. <LinearLayout android:layout_width="match_parent"
  2. android:layout_height="wrap_content"
  3. android:id="@+id/mainContent"
  4. android:orientation="vertical"
  5. xmlns:android="http://schemas.android.com/apk/res/android">
  6. <TextView
  7. android:id="@+id/traveller_data_title"
  8. android:layout_width="fill_parent"
  9. android:layout_height="70dp"
  10. android:gravity="center_vertical"
  11. android:layout_weight="1"
  12. android:textAlignment="center"
  13. android:paddingLeft="5dp"
  14. android:textSize="17dp"
  15. android:textColor="#0c333f"
  16. android:singleLine="true"
  17. />
  18. </LinearLayout>
  19.  
  20. <LinearLayout
  21. android:orientation="vertical"
  22. android:layout_width="match_parent"
  23. android:layout_height="wrap_content"
  24. android:id="@+id/traveller_data_content"
  25. xmlns:android="http://schemas.android.com/apk/res/android">
  26.  
  27. // rest of my layout elments here
  28.  
  29. </LinearLayout>
  30.  
  31. View childView =getChildView(groupPos,childPos)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement