答案 0 :(得分:0)
我不认为底部边框的重复图像是个好主意。您需要找到该图像背景并设置背景: Is there a way to set actionbar backgound by image in android?
如果您仍想要底部边框的重复图像,可以在底部自定义操作栏中创建LinearLayout并添加如下图像视图:
LinearLayout lnlContainer = (LinearLayout) findViewById(R.id.lnl_container);
for (int i = 0; i<10;i++){
ImageView imagView = new ImageView(YourAcitivty.this);
imagView.setImageResource(R.drawable.your_image_bg);
lnlPhotosContainer.addView(imagView);
}