relativelayout の中心に新しいビューを表示しようとしました。ただし、新しいビューは常に画面の上部に配置されます。
LayoutInflater inflater = (LayoutInflater)this.getSystemService("layout_inflater");
dest = inflater.inflate(R.layout.searchlayout, ViewGroup)
this.findViewById(R.layout.pdfview));
RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.WRAP_CONTENT, RelativeLayout.LayoutParams.WRAP_CONTENT);
params.addRule(RelativeLayout.CENTER_VERTICAL);
dest.setLayoutParams(params);
this.addContentView(dest, params);