Skip to main content

Using resources referenced in the current theme



I find myself again trying to use resources set in the current theme inside my Android application and running into difficulties.





Following the rough guidelines found here for theme attribute value reuse





I was originally trying to create a selector like so







<?xml version="1.0" encoding="utf-8"?>

<selector xmlns:android="http://schemas.android.com/apk/res/android">

<item android:state_pressed="true" android:drawable="?android:attr/selectableItemBackground" />

<item android:drawable="@color/transparent" />

</selector>







where the pressed state drawable is declared like so







<item name="selectableItemBackground">@android:drawable/item_background</item>







in the current ICS themes xml doc themes xml doc . This compiles fine in eclispse (whereas if i spell the attr wrong it will give an error or reffng @android:drawable/item_background directly will inform me the drawable itself is private).





When i run the app i get a







FATAL EXCEPTION: main

E / AndroidRuntime (18815): android.view.InflateException: Binary XML file line #14: Error inflating class <unknown>







without any other useful information apart from the xml file that is using this selector for an ImageViews android:background attribute value. I know that there is a bug where colorStateLists cant be used as backgrounds as mentioned here and maybe this also applys to drawableState lists referencing drawables from the theme. I know however it does work as the post mentioned describes.





Am i missing something here?? I always run into something i dont understand when trying to do stuff like this so would be glad of any pointers.





Thanks for any help





EDIT





as another experiement I tried setting an alias to the referenced drawable in the theme like







<?xml version="1.0" encoding="utf-8"?>

<bitmap xmlns:android="http://schemas.android.com/apk/res/android"

android:src="?android:attr/selectableItemBackground" ></bitmap>







and using this as the background directly but this does not work either. Looking at aliases they are onlyment to ref actual images so this makes sense





EDIT 2





another test an I have found using it directly







android:background="?android:attr/selectableItemBackground"







does actually work. So it seems that using it inside a alias or selector is where it gets unhappy. Strange as i would assume that both background and the same arg





EDIT 3





It seems the theme attr i was pointing at was actually a selector instelf, which im sure didnt help the issue! Thought i wouldve guessed looking at the name of it


Comments

  1. I guess i answered the question myself in my edits - main issue i imagine was that i was trying to ref a selector inside a selector.

    ReplyDelete

Post a Comment

Popular posts from this blog

Why is this Javascript much *slower* than its jQuery equivalent?

I have a HTML list of about 500 items and a "filter" box above it. I started by using jQuery to filter the list when I typed a letter (timing code added later): $('#filter').keyup( function() { var jqStart = (new Date).getTime(); var search = $(this).val().toLowerCase(); var $list = $('ul.ablist > li'); $list.each( function() { if ( $(this).text().toLowerCase().indexOf(search) === -1 ) $(this).hide(); else $(this).show(); } ); console.log('Time: ' + ((new Date).getTime() - jqStart)); } ); However, there was a couple of seconds delay after typing each letter (particularly the first letter). So I thought it may be slightly quicker if I used plain Javascript (I read recently that jQuery's each function is particularly slow). Here's my JS equivalent: document.getElementById('filter').addEventListener( 'keyup', function () { var jsStart = (new Date).getTime()...

Is it possible to have IF statement in an Echo statement in PHP

Thanks in advance. I did look at the other questions/answers that were similar and didn't find exactly what I was looking for. I'm trying to do this, am I on the right path? echo " <div id='tabs-".$match."'> <textarea id='".$match."' name='".$match."'>". if ($COLUMN_NAME === $match) { echo $FIELD_WITH_COLUMN_NAME; } else { } ."</textarea> <script type='text/javascript'> CKEDITOR.replace( '".$match."' ); </script> </div>"; I am getting the following error message in the browser: Parse error: syntax error, unexpected T_IF Please let me know if this is the right way to go about nesting an IF statement inside an echo. Thank you.