Quantcast
Channel: Appcelerator Developer Center Q&A Unanswered Questions 20
Viewing all articles
Browse latest Browse all 8068

select image not working in android

$
0
0

Hi I have some problem in project. I'm showing some list in the table view row. By clicking the list it has to show select image for selected id. And I wrote code for selected id and my problem is when i'm selected the the select image is showing in IOS and not showing in the Andriod. Can any check code and guide me where I did mistake

~~~

var cellWidth = 192; var cellHeight = 192; var xSpacer = 10; var ySpacer = 10; var xGrid = 3;

var tableData = [];

var colorSet = [
    {id: 'array_key', image: '/images/p2.jpg', datum: ' Dec 2012'},
    { image: '/images/p3.jpg',id:2, datum: ' Jun 2012' },
    { image: '/images/cafe.jpg', datum: ' Feb 2013' },
         ];
var colorSet2 = [
    { image: '/images/cafe.jpg', datum: ' Dec 2012'},
    { image: '/images/p2.jpg',id:2, datum: ' Jun 2012' },
     { image: '/images/cafe.jpg', datum: ' Feb 2013' },     
    ];   
 var arraytest = [
         "key1","key2"
    ];           
var keyarray  = [];  
var keyarray2 = [];       
 colorSet.sort(comp);
 Ti.API.info('friends sorted Array ='+arraytest.length);

  keyarray=[
               {key1:colorSet},
               {key2:colorSet2}

            ];

var yGrid = keyarray.length;     
var yGridkey2 = keyarray[1].key2.length;  

//custom sort function
function comp(a, b) {
    // change the > condition to < for reverse the sort.
    return new Date(a.datum).getTime() < new Date(b.datum).getTime();  
}

var colorSetIndex = 0; var cellIndex = 0;

var tableview = Ti.UI.createTableView({ //data:tableData }); ///-------// var globaltest = " "; var globaltest2 = " ";

for (var i=0; i < yGrid; i++) {

     for(key in keyarray[i]){

       globaltest = keyarray[i][key].length;

    }
  Ti.API.info('globaltest' +globaltest);


 var keynamevar = arraytest[i];



  var yGridkey = globaltest;   


    var row0 = Ti.UI.createTableViewRow({height:&quot;100&quot;,backgroundColor:&quot;#EEEEEE&quot;});   

        var labelTitle = Ti.UI.createLabel({         
                             text:&quot;JAN 2013&quot;,
                            left:'40%',
                            color:'black' ,
                            font :{fontSize: Alloy.CFG.font2,fontWeight: 'bold'},      
                        }); 
              row0.add(labelTitle);                            
              tableview.appendRow(row0);    

              var yGridkeyarray = keyarray[i][key];   

             //  Ti.API.info(&quot;yGridkeyarray:&quot; + JSON.stringify(yGridkeyarray));                
             var testvar = keyarray.yGridkeyarray;
             Ti.API.info(&quot;testvar:&quot;+ yGridkeyarray); 

            var  dividegridkey = yGridkey/3;  
            var  modegridkey = yGridkey%3;


     Ti.API.info(&quot;dividegridkey:&quot;+ dividegridkey);    
     Ti.API.info(&quot;modegridkey:&quot;+ modegridkey); 

     if(modegridkey &gt; 0){
        dividegridkey = dividegridkey+1;
     }



       for(var k= 0; k&lt;dividegridkey; k++){
            var row1= Ti.UI.createTableViewRow({
                            //height:80,
                            backgroundColor:&quot;#FFFFFF&quot;,
                               className: &quot;grid&quot;,
                                layout: &quot;horizontal&quot;,
                                height: cellHeight+(2*ySpacer),
                                //selectedBackgroundColor:&quot;red&quot;                               

             });



           for(var j = 0; j&lt;3; j++){

              var cellimgwidth = j*cellWidth + parseInt(ySpacer);


               var thisView = Ti.UI.createView({
                    //objName:&quot;grid-view&quot;,
                   // objIndex:cellIndex.toString(),
                  //  backgroundColor: &quot;white&quot;,
                    left: 5,
                    height: cellHeight,
                    width: cellWidth
                });



                var icon = Ti.UI.createButton({
                    left: 5,
                    height: cellHeight,
                    backgroundImage: yGridkeyarray[(k*3+j)].image,
                    top: 0,           
                    width: cellWidth,
                    objName:&quot;grid-view&quot;,
                    objIndex:cellIndex.toString(),      
                    value: false                
                }); 



                        //Attach some simple on/off actions

                var labelView = Titanium.UI.createView({
                                    visible:false,
                                    width : cellHeight,
                                    height : cellWidth,
                                    //backgroundColor : '#000',
                                    backgroundImage:&quot;/images/transparent.png&quot;,
                                   // opacity : 0.8

                                    });

                    var select_icon = Ti.UI.createImageView({
                        left: 0,
                        height: 33,
                        backgroundImage:&quot;/images/event_select.png&quot;,

                        top: 0,           
                        width: 36,                                                                  
                    });
                    labelView.add(select_icon);                         
                    icon.on = function() {
                        this.value = true;

                    };

                    icon.off = function() {
                        this.value = false;

                    };

               icon.add(labelView); 
               thisView.add(icon);

               row1.add(thisView); 

                cellIndex++;
                colorSetIndex++;     



         }

                        tableview.appendRow(row1);  


       }   
        //tableview.data= tableData; 

}; //-------//

tableview.addEventListener("click", function(e){ if(e.source.objName){ Ti.API.info("---> " + e.source.objName+e.source.objIndex + " was clicked!"); Ti.API.info("---> " + e.source.height + " was clicked!");

                 // checkbox click

         if(false == e.source.value) {
                        e.source.on();
                     e.source.children[0].setVisible(true);

                    } else {
                       e.source.off();  
                      e.source.children[0].setVisible(false);
                        Ti.API.info(&quot;e.index&quot;+e.source.value);

                    }   


}

});

var win = Ti.UI.createWindow({ backgroundColor:"black", navBarHidden:false, title:"Main Window" }); $.win.add(tableview);

$.win.open();


Viewing all articles
Browse latest Browse all 8068

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>