【发布时间】:2017-02-17 08:56:11
【问题描述】:
嘿,我想在没有 xml 布局的情况下在我的 android 应用程序中创建和显示框架布局。为此,我使用 Rect 和 Fragments。如果所有都在 MainActivity 中它工作正常,但如果我尝试在额外的类中执行,我得到错误 Activity 已被破坏。
我想创建 rect 并在其中加载一个 pdf 查看器作为片段。
这是我的 MainActiticy 没有加载 xml 布局:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
MainActivity.thisContext = this;
MainActivity.thisActivity = (Activity) this;
final PSPDFConfiguration configuration = new PSPDFConfiguration.Builder(BuildConfig.PSPDFKIT_LICENSE_KEY).build();
final Uri documentUri = Uri.parse("file:///android_asset/psp.pdf");
CordovaView viewer = new CordovaView(thisContext,10,10,500,500);
viewer.loadFileInView(thisActivity,thisContext,0,300,configuration,documentUri);
}
CordovaView 类。这里必须创建Views并加载里面的File。
public class CordovaView extends FragmentActivity {
private List<WebView>views;
public CordovaView(Context ctx,int x,int y,int w, int h){
this.views = new ArrayList<WebView>();
createView(ctx,x,y,w,h);
}
public void createView(Context ctx, int x, int y, int w, int h){
final Rect rect = new Rect(x, y, x + w, y + h);
View view = new WebView(ctx);
FrameLayout.LayoutParams params = new FrameLayout.LayoutParams(rect.right - rect.left, rect.bottom - rect.top);
params.leftMargin = rect.left;
params.topMargin = rect.top;
params.gravity = 0;
view.setLayoutParams(params);
view.setBackgroundColor(Color.BLUE);
views.add((WebView) view);
}
public void showViewById(Activity ac, int index){
WebView view = views.get(index);
ac.addContentView(view,view.getLayoutParams());
}
public void loadFileInView(Activity ac, Context ctx, int index, int containerId, final PSPDFConfiguration configuration, Uri documentUri){
FrameLayout layout = new FrameLayout(ctx);
layout.setId(containerId);
WebView view = views.get(index);
layout.setLayoutParams(view.getLayoutParams());
view.addView(layout);
PSPDFFragment fragment = (PSPDFFragment) getSupportFragmentManager().findFragmentById(layout.getId());
//Here I have a error I think :(
if(fragment==null){
fragment = PSPDFFragment.newInstance(documentUri,configuration);
getSupportFragmentManager()
.beginTransaction()
.replace(layout.getId(),fragment)
.commit();
}
showViewById(ac,index);
}
}
我的错误:
E/AndroidRuntime: FATAL EXCEPTION: main
Process: de.wladimir.tarasov.pdfframelayout, PID: 9932
java.lang.RuntimeException: Unable to start activity ComponentInfo{de.wladimir.tarasov.pdfframelayout/de.wladimir.tarasov.pdfframelayout.MainActivity}: java.lang.IllegalStateException: Activity has been destroyed
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2491)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2564)
at android.app.ActivityThread.access$800(ActivityThread.java:170)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1441)
at android.os.Handler.dispatchMessage(Handler.java:111)
at android.os.Looper.loop(Looper.java:194)
at android.app.ActivityThread.main(ActivityThread.java:5576)
at java.lang.reflect.Method.invoke(Native Method)
at java.lang.reflect.Method.invoke(Method.java:372)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:956)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:751)
Caused by: java.lang.IllegalStateException: Activity has been destroyed
at android.support.v4.app.FragmentManagerImpl.enqueueAction(FragmentManager.java:1854)
at android.support.v4.app.BackStackRecord.commitInternal(BackStackRecord.java:643)
at android.support.v4.app.BackStackRecord.commit(BackStackRecord.java:603)
at de.wladimir.tarasov.pdfframelayout.CordovaView.loadFileInView(CordovaView.java:82)
...
...
【问题讨论】:
-
You asked the same question yesterday ... 和 你会得到答案 .. 这是关于运算符
new和Activity派生类 ...请不要转发问题 -
这帮不了我。
-
我删除了另一个问题,因为我想问得更好
标签: java android android-activity fragment android-framelayout