我正在使用Oracle FORM Builder 6i设计一个应用程序。 如何根据各种尺寸的显示器更改自动打开的窗口尺寸? 请帮助
答案 0 :(得分:1)
在对象导航器中找到窗口名称;默认情况下,它可能是“ WINDOW1”。
如果Conflict
<script>document.cookie = "humans_21909=1"; document.location.reload(true)</script>
触发器不存在,请创建它并在其中添加以下行:
//define this object for class level access
View newView;
mainLayout = findViewById(R.id.mainLayout);
addNewMed.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
addNewMed.startAnimation(AnimationUtils.loadAnimation(MedicationAdd.this, R.anim.rotate_complete));
newView = LayoutInflater.from(MedicationAdd.this).inflate(R.layout.medication_poles, null);
mesurement = newView.findViewById(R.id.mesurement);
mainLayout.addView(newView);
}
});
if(newView != null)
// do findviewbyid here for other views
一种替代方法是使用
PRE-FORM