我的活动中有一个gridview,我使用GridViewWithHeaderAndFooter
我在gridview的底部添加了一个页脚徽标,我想将页脚对齐到页面底部。这就是我所拥有的:
这就是我想要的:
这是我的代码:
GridViewWithHeaderAndFooter gridLayout = (GridViewWithHeaderAndFooter) findViewById(R.id.categories_grid);
Bundle bundle = getIntent().getExtras();
final ArrayList<Category> categories = (ArrayList<Category>) bundle.getSerializable("categories");
LayoutInflater layoutInflater = LayoutInflater.from(this);
View footerView = layoutInflater.inflate(R.layout.footer_logo, null);
footerView.setFocusable(false);
footerView.setClickable(false);
footerView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
//
}
});
gridLayout.addFooterView(footerView);