Skip to content

Instantly share code, notes, and snippets.

public void fillShelves() {
setContentView(R.layout.records);
LayoutInflater mLayoutInflater = getLayoutInflater();
int i = 0;
while (i != Records.this.aData.length()) {
LinearLayout recordShelves = (LinearLayout) mLayoutInflater.inflate(R.layout.record_shelf,
(ViewGroup) findViewById(R.id.records));
LinearLayout recordShelf = (LinearLayout) recordShelves.getChildAt(recordShelves.getChildCount() - 1);
ImageButton record;
@jophde
jophde / dashboard.css
Created March 12, 2011 19:50
prototype for dashboard
#dashboard {
border: 3px solid;
width: auto;
float:left;
}
#incoming {
border: 2px solid;
padding: 10px 10px 10px 10px;
margin: 10px 5px 10px 10px;
width: 200px;