diff options
Diffstat (limited to 'libraries/pinned-section-listview/example/res')
| -rw-r--r-- | libraries/pinned-section-listview/example/res/drawable-hdpi/ic_launcher.png | bin | 0 -> 5819 bytes | |||
| -rw-r--r-- | libraries/pinned-section-listview/example/res/drawable-mdpi/ic_launcher.png | bin | 0 -> 3479 bytes | |||
| -rw-r--r-- | libraries/pinned-section-listview/example/res/drawable-xhdpi/ic_launcher.png | bin | 0 -> 7534 bytes | |||
| -rw-r--r-- | libraries/pinned-section-listview/example/res/drawable-xxhdpi/ic_launcher.png | bin | 0 -> 11732 bytes | |||
| -rw-r--r-- | libraries/pinned-section-listview/example/res/layout/activity_main.xml | 8 | ||||
| -rw-r--r-- | libraries/pinned-section-listview/example/res/menu/main.xml | 27 | ||||
| -rw-r--r-- | libraries/pinned-section-listview/example/res/values-v11/styles.xml | 11 | ||||
| -rw-r--r-- | libraries/pinned-section-listview/example/res/values-v14/styles.xml | 12 | ||||
| -rw-r--r-- | libraries/pinned-section-listview/example/res/values/colors.xml | 10 | ||||
| -rw-r--r-- | libraries/pinned-section-listview/example/res/values/strings.xml | 10 | ||||
| -rw-r--r-- | libraries/pinned-section-listview/example/res/values/styles.xml | 20 |
11 files changed, 98 insertions, 0 deletions
diff --git a/libraries/pinned-section-listview/example/res/drawable-hdpi/ic_launcher.png b/libraries/pinned-section-listview/example/res/drawable-hdpi/ic_launcher.png Binary files differnew file mode 100644 index 000000000..3841c3408 --- /dev/null +++ b/libraries/pinned-section-listview/example/res/drawable-hdpi/ic_launcher.png diff --git a/libraries/pinned-section-listview/example/res/drawable-mdpi/ic_launcher.png b/libraries/pinned-section-listview/example/res/drawable-mdpi/ic_launcher.png Binary files differnew file mode 100644 index 000000000..e65953cce --- /dev/null +++ b/libraries/pinned-section-listview/example/res/drawable-mdpi/ic_launcher.png diff --git a/libraries/pinned-section-listview/example/res/drawable-xhdpi/ic_launcher.png b/libraries/pinned-section-listview/example/res/drawable-xhdpi/ic_launcher.png Binary files differnew file mode 100644 index 000000000..4ea093d86 --- /dev/null +++ b/libraries/pinned-section-listview/example/res/drawable-xhdpi/ic_launcher.png diff --git a/libraries/pinned-section-listview/example/res/drawable-xxhdpi/ic_launcher.png b/libraries/pinned-section-listview/example/res/drawable-xxhdpi/ic_launcher.png Binary files differnew file mode 100644 index 000000000..87e928a35 --- /dev/null +++ b/libraries/pinned-section-listview/example/res/drawable-xxhdpi/ic_launcher.png diff --git a/libraries/pinned-section-listview/example/res/layout/activity_main.xml b/libraries/pinned-section-listview/example/res/layout/activity_main.xml new file mode 100644 index 000000000..b641f4c80 --- /dev/null +++ b/libraries/pinned-section-listview/example/res/layout/activity_main.xml @@ -0,0 +1,8 @@ +<com.hb.views.PinnedSectionListView xmlns:android="http://schemas.android.com/apk/res/android" + android:id="@android:id/list" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:headerDividersEnabled="false" + android:footerDividersEnabled="false" + android:divider="@null" + />
\ No newline at end of file diff --git a/libraries/pinned-section-listview/example/res/menu/main.xml b/libraries/pinned-section-listview/example/res/menu/main.xml new file mode 100644 index 000000000..091b6c770 --- /dev/null +++ b/libraries/pinned-section-listview/example/res/menu/main.xml @@ -0,0 +1,27 @@ +<menu xmlns:android="http://schemas.android.com/apk/res/android" > + + <item + android:id="@+id/action_fastscroll" + android:showAsAction="never" + android:title="@string/action_fastscroll" + android:checkable="true"/> + + <item + android:id="@+id/action_addpadding" + android:showAsAction="never" + android:title="@string/action_addpadding" + android:checkable="true"/> + + <item + android:id="@+id/action_showShadow" + android:showAsAction="never" + android:title="@string/action_showShadow" + android:checkable="true"/> + + <item + android:id="@+id/action_showHeaderAndFooter" + android:showAsAction="never" + android:title="@string/action_showHeaderAndFooter" + android:checkable="true"/> + +</menu>
\ No newline at end of file diff --git a/libraries/pinned-section-listview/example/res/values-v11/styles.xml b/libraries/pinned-section-listview/example/res/values-v11/styles.xml new file mode 100644 index 000000000..541752f6e --- /dev/null +++ b/libraries/pinned-section-listview/example/res/values-v11/styles.xml @@ -0,0 +1,11 @@ +<resources> + + <!-- + Base application theme for API 11+. This theme completely replaces + AppBaseTheme from res/values/styles.xml on API 11+ devices. + --> + <style name="AppBaseTheme" parent="android:Theme.Holo.Light"> + <!-- API 11 theme customizations can go here. --> + </style> + +</resources>
\ No newline at end of file diff --git a/libraries/pinned-section-listview/example/res/values-v14/styles.xml b/libraries/pinned-section-listview/example/res/values-v14/styles.xml new file mode 100644 index 000000000..f20e01501 --- /dev/null +++ b/libraries/pinned-section-listview/example/res/values-v14/styles.xml @@ -0,0 +1,12 @@ +<resources> + + <!-- + Base application theme for API 14+. This theme completely replaces + AppBaseTheme from BOTH res/values/styles.xml and + res/values-v11/styles.xml on API 14+ devices. + --> + <style name="AppBaseTheme" parent="android:Theme.Holo.Light.DarkActionBar"> + <!-- API 14 theme customizations can go here. --> + </style> + +</resources>
\ No newline at end of file diff --git a/libraries/pinned-section-listview/example/res/values/colors.xml b/libraries/pinned-section-listview/example/res/values/colors.xml new file mode 100644 index 000000000..b4da27c93 --- /dev/null +++ b/libraries/pinned-section-listview/example/res/values/colors.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <color name="red_light">#ffff4444</color> + <color name="green_light">#ff99cc00</color> + <color name="orange_light">#ffffbb33</color> + <color name="blue_light">#ff33b5e5</color> + + <!-- Went to: $android-sdk > Android:v14 > res > values > colors.xml and copied the colors--> + +</resources>
\ No newline at end of file diff --git a/libraries/pinned-section-listview/example/res/values/strings.xml b/libraries/pinned-section-listview/example/res/values/strings.xml new file mode 100644 index 000000000..e9d43a4aa --- /dev/null +++ b/libraries/pinned-section-listview/example/res/values/strings.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + + <string name="app_name">Pinned Section Demo</string> + <string name="action_fastscroll">Fast scroll</string> + <string name="action_addpadding">Add padding</string> + <string name="action_showShadow">Show shadow</string> + <string name="action_showHeaderAndFooter">Show Header & Footer</string> + +</resources>
\ No newline at end of file diff --git a/libraries/pinned-section-listview/example/res/values/styles.xml b/libraries/pinned-section-listview/example/res/values/styles.xml new file mode 100644 index 000000000..4a10ca492 --- /dev/null +++ b/libraries/pinned-section-listview/example/res/values/styles.xml @@ -0,0 +1,20 @@ +<resources> + + <!-- + Base application theme, dependent on API level. This theme is replaced + by AppBaseTheme from res/values-vXX/styles.xml on newer devices. + --> + <style name="AppBaseTheme" parent="android:Theme.Light"> + <!-- + Theme customizations available in newer API levels can go in + res/values-vXX/styles.xml, while customizations related to + backward-compatibility can go here. + --> + </style> + + <!-- Application theme. --> + <style name="AppTheme" parent="AppBaseTheme"> + <!-- All customizations that are NOT specific to a particular API-level can go here. --> + </style> + +</resources>
\ No newline at end of file |
