This file contains hidden or 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
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; |
This file contains hidden or 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
#dashboard { | |
border: 3px solid; | |
width: auto; | |
float:left; | |
} | |
#incoming { | |
border: 2px solid; | |
padding: 10px 10px 10px 10px; | |
margin: 10px 5px 10px 10px; | |
width: 200px; |
NewerOlder