PageRenderTime 17ms CodeModel.GetById 12ms RepoModel.GetById 0ms app.codeStats 0ms

/res/layout/help_item.xml

https://bitbucket.org/ClarkNovaSoftware/android-sumdoku-solver
XML | 29 lines | 27 code | 2 blank | 0 comment | 0 complexity | 38e5ccc2561508b38854e86e5a889b54 MD5 | raw file
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:id="@+id/help_item"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. >
  7. <ImageView
  8. android:id="@+id/help_img"
  9. android:layout_width="match_parent"
  10. android:layout_height="wrap_content"
  11. android:layout_alignParentLeft="true"
  12. android:layout_alignParentTop="true"
  13. android:contentDescription="@string/empty"
  14. android:src="@drawable/screenshot_01" />
  15. <TextView
  16. android:id="@+id/help_txt"
  17. android:text="@string/app_name"
  18. android:layout_width="match_parent"
  19. android:layout_height="wrap_content"
  20. android:layout_below="@id/help_img"
  21. android:background="@android:color/background_dark"
  22. android:textColor="@android:color/white"/>
  23. <View
  24. android:layout_below="@id/help_txt"
  25. android:layout_width="match_parent"
  26. android:layout_height="5dp"/>
  27. </RelativeLayout>