我正在使用弹出窗口显示位于相对视图中的图像 我想将图像放在弹出窗口的左侧而不是中心 怎么办呢?
注意:我厌倦了将相对视图的重力设置为左,但它不起作用
儿童班
public class child extends RelativeLayout{
public void child (){
....
....
this.setGravity(Gravity.LEFT);
}
弹出类:
public void PopUp extends PopupWindow{
public PopUp(Context context)
{
super(context);
child = new Child(context, URL);
this.setBackgroundDrawable(null);
setHeight(300);
setWidth(300);
this.setContentView(child);
}
}