如何找到没有id的片段(framelayout)?
这是我的代码:
private void setRect(int _x, int _y, int _w, int _h){
final Rect rect = new Rect(_x,_y,_w,_h);
final PSPDFConfiguration configuration = new PSPDFConfiguration.Builder(BuildConfig.PSPDFKIT_LICENSE_KEY)
.scrollDirection(PageScrollDirection.HORIZONTAL)
.build();
final Uri assetFile = Uri.parse("file:///android_asset/psp.pdf");
final FrameLayout frameLayout = new FrameLayout(thisContext);
runOnUiThread(new Thread(new Runnable() {
@Override
public void run() {
frameLayout.setId(View.generateViewId());
FrameLayout.LayoutParams params;
params = new FrameLayout.LayoutParams(rect.right-rect.left,rect.bottom-rect.top);
params.leftMargin = rect.left;
params.topMargin = rect.top;
params.gravity = 0;
frameLayout.setLayoutParams(params);
viewer_one.setLayoutParams(params);
viewer_one.getSettings().setBuiltInZoomControls(true);
viewer_one.setBackgroundColor(Color.BLUE);
thisActivity.addContentView(viewer_one,params);
PSPDFFragment fragment;
FragmentManager manager = getSupportFragmentManager();
fragment = (PSPDFFragment) manager.findFragmentById(frameLayout.getId());
if(fragment == null){
fragment = PSPDFFragment.newInstance(assetFile,configuration);
getSupportFragmentManager()
.beginTransaction()
.replace(frameLayout.getId(), fragment)
.commit();
}
}
}));
}
我在布局xml中没有使用framelayout。
更新
我已更新我的代码并收到此错误 - >对于片段PSPDFFragment {373f9470
,找不到id 0x1(未知)的视图答案 0 :(得分:2)
Set an ID to a view programatically
通过代码(以编程方式)分配ID
使用strchr()
手动设置ID
int必须是正数,否则是任意的 - 它可以是你想要的任何东西(如果这是可怕的话,继续阅读。)
例如,如果创建和编号表示项目的多个视图,则可以使用其项目编号。
这应该这样做。现在您有了一个ID,将其用于片段管理器。希望这会有所帮助。