Advertisement
Guest User

Untitled

a guest
Apr 18th, 2014
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.83 KB | None | 0 0
  1. <android.support.v4.widget.DrawerLayout
  2. xmlns:android="http://schemas.android.com/apk/res/android"
  3.  
  4. android:id="@+id/drawer_layout"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. >
  8.  
  9. <!-- The main content view -->
  10.  
  11. <LinearLayout
  12. xmlns:android="http://schemas.android.com/apk/res/android"
  13. xmlns:tools="http://schemas.android.com/tools"
  14. xmlns:sat="http://schemas.android.com/apk/res/android.view.ext"
  15. android:layout_width="match_parent"
  16. android:layout_height="match_parent"
  17. tools:context=".MainActivity"
  18. android:background="@drawable/front"
  19. android:gravity="bottom"
  20. android:orientation="vertical" >
  21.  
  22.  
  23. <TextView
  24. android:id="@+id/textView2"
  25. android:layout_width="150dp"
  26. android:layout_height="60dp"
  27. android:layout_marginBottom="21dp"
  28. android:text="@string/cd"
  29. android:textSize="15sp"
  30. android:gravity="center_horizontal"/>
  31. <TextView
  32. android:id="@+id/textView1"
  33. android:layout_width="150dp"
  34. android:layout_height="wrap_content"
  35. android:textAppearance="?android:attr/textAppearanceLarge"
  36. android:color="@color/white"
  37. android:textSize="25sp"
  38. android:gravity="center_horizontal"/>
  39.  
  40. <com.cngcnasaud.orar
  41. android:id="@+id/menu"
  42. android:layout_width="wrap_content"
  43. android:layout_height="wrap_content"
  44. android:layout_gravity="bottom|right"
  45. android:layout_margin="8dp"
  46. sat:satelliteDistance="170dp"
  47. sat:mainImage="@drawable/ic_launcher"
  48. sat:totalSpacingDegree="90"
  49. sat:closeOnClick="true"
  50. sat:expandDuration="500"/>
  51.  
  52.  
  53.  
  54.  
  55.  
  56. </LinearLayout>
  57.  
  58. <!-- The navigation drawer -->
  59.  
  60. <ListView
  61. android:id="@+id/drawer"
  62. android:layout_width="300dp"
  63. android:layout_height="match_parent"
  64. android:layout_gravity="start"
  65. android:background="@drawable/sdb"
  66. android:choiceMode="singleChoice"
  67. android:divider="@android:color/black"
  68. android:dividerHeight="0dp"
  69. android:textColor="@android:color/white"
  70. />
  71.  
  72.  
  73.  
  74.  
  75.  
  76.  
  77. </android.support.v4.widget.DrawerLayout>
  78.  
  79. Multiple annotations found at this line:
  80. - error: No resource identifier found for attribute 'satelliteDistance' in package
  81. 'android.view.ext'
  82. - error: No resource identifier found for attribute 'mainImage' in package 'android.view.ext'
  83. - error: No resource identifier found for attribute 'closeOnClick' in package
  84. 'android.view.ext'
  85. - error: No resource identifier found for attribute 'expandDuration' in package
  86. 'android.view.ext'
  87. - error: No resource identifier found for attribute 'totalSpacingDegree' in package
  88. 'android.view.ext'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement