Added a border to separate the button bar from the content area.

This commit is contained in:
akwizgran
2013-03-05 15:31:10 +00:00
parent c83b1b74e5
commit 050f2094cf
7 changed files with 28 additions and 3 deletions

View File

@@ -156,6 +156,12 @@ implements OnClickListener {
scrollView.addView(message);
layout.addView(scrollView);
View line = new View(this);
line.setLayoutParams(new LayoutParams(MATCH_PARENT, 5));
int colour = getResources().getColor(R.color.ButtonBarBorder);
line.setBackgroundColor(colour);
layout.addView(line);
LinearLayout footer = new LinearLayout(this);
footer.setLayoutParams(new LayoutParams(MATCH_PARENT, WRAP_CONTENT));
footer.setOrientation(HORIZONTAL);