我正在使用PHP构建基本会员应用程序,它还有一个联盟计划。我想要实现的是当该成员宣传该网站时,通过推荐横幅显示该成员的统计数据,例如成员的加入日期。
横幅或图片将相同,但显示的统计数据会因成员而异。
例如:
@Override
public boolean onPrepareOptionsMenu(Menu menu) {
//Get a reference to your item by id
MenuItem item = menu.findItem(R.id.menu_refresh);
//Here, you get access to the view of your item, in this case, the layout of the item has a RelativeLayout as root view but you can change it to whatever you use
RelativeLayout rootView = (RelativeLayout)item.getActionView();
//Then you access to your control by finding it in the rootView
TextView textview1 = (TextView) rootView.findViewById(R.id.text1);
//And from here you can do whatever you want with your text view
return true;
}
我在某些网站上看到横幅或图片显示统计信息,但我无法理解<a href="http://mywebsite.com/?a=details&id=1" target="_blank"><img src="mywebsite.com/?a=image&id=1"/></a>
标记最后没有图像格式,但它在网页上显示图像。
答案 0 :(得分:0)
这实际上是一个高度和宽度的div标签,并给出了背景图像。然后你可以设计和放置你的数据以显示在那个div
上答案 1 :(得分:0)
您可以使用PHP GD (manual link)动态生成图像。