This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
periodsAdapter = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, new String[]{"loading..."}) { | |
View render(View convertView, int position) { | |
if (convertView == null) { | |
convertView = getLayoutInflater().inflate(R.layout.single_month, null); | |
} | |
// TODO set some data to views | |
return convertView; | |
} |
OlderNewer