Advertisement
javajavajava

Untitled

Dec 19th, 2013
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.72 KB | None | 0 0
  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="fill_parent"
  5. android:orientation="vertical" >
  6.  
  7. <com.idg.omv.ui.widget.UrlImageView
  8. android:id="@+id/userVideoThumbImageView"
  9. android:layout_width="fill_parent"
  10. android:layout_height="fill_parent"
  11. android:adjustViewBounds="false"
  12. android:background="@android:color/black"
  13. android:clickable="false"
  14. android:contentDescription="YouTube video thumbnail"
  15. android:focusable="false"
  16. android:focusableInTouchMode="false"
  17. android:scaleType="fitXY"
  18. android:src="@drawable/ic_launcher" />
  19.  
  20. <View
  21. android:layout_width="match_parent"
  22. android:layout_height="2dp"
  23. android:visibility="invisible" />
  24.  
  25. <RelativeLayout
  26. android:layout_width="match_parent"
  27. android:layout_height="wrap_content"
  28. android:orientation="vertical" >
  29.  
  30. <TextView
  31. android:id="@+id/userVideoTitleTextView"
  32. android:layout_width="fill_parent"
  33. android:layout_height="wrap_content"
  34. android:paddingLeft="5dip"
  35. android:text="Video Title Not Found"
  36. android:textColor="@android:color/black"
  37. android:textSize="20sp" />
  38.  
  39. <Button
  40. android:id="@+id/fav_up_btn1"
  41. android:layout_width="27dp"
  42. android:layout_height="27dp"
  43. android:layout_alignParentRight="true"
  44. android:background="@drawable/fav_up_btn1"
  45. android:clickable="false"
  46. android:focusable="false"
  47. android:focusableInTouchMode="false"
  48. android:gravity="right"
  49. android:paddingRight="5dp"
  50. android:paddingTop="5dp" />
  51. </RelativeLayout>
  52.  
  53. <RelativeLayout
  54. android:layout_width="match_parent"
  55. android:layout_height="wrap_content"
  56. android:orientation="horizontal" >
  57.  
  58. <TextView
  59. android:id="@+id/userVideouploaderTextView"
  60. android:layout_width="wrap_content"
  61. android:layout_height="wrap_content"
  62. android:paddingLeft="5dip"
  63. android:textColor="@color/verylightgrey"
  64. android:textSize="16sp" />
  65.  
  66. <TextView
  67. android:id="@+id/userVideoviewsTextView"
  68. android:layout_width="wrap_content"
  69. android:layout_height="wrap_content"
  70. android:layout_toRightOf="@id/userVideouploaderTextView"
  71. android:textColor="@android:color/black"
  72. android:textSize="16sp" />
  73. </RelativeLayout>
  74.  
  75. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement