为什么UI没有在setContentView()之后加载,而是仅在onCreate()执行之后?

时间:2015-11-03 10:57:54

标签: android android-layout android-activity android-asynctask

在我的onCreate方法中,我一开始就是setContentView()

inflater = getLayoutInflater();
    Thread.setDefaultUncaughtExceptionHandler(new MyExceptionHandler());
    root = inflater.inflate(R.layout.activity_main, null, false);
//    root.setBackgroundColor(color50);
    setContentView(root);

... 接近onCreate()的末尾,我调用自定义的asynctask并从中获取结果。但是,即使任务完成执行,我的应用程序屏幕也会保持黑色。

try {
        task = (DatabaseTask) new DatabaseTask().execute(new DatabaseTaskParams(activity, images));
        helper = task.get();
    } catch (Exception e) {
        Log.e("DatabaseTask", "stack trace", e);
    }

    suggestions = helper.getKeywords();

为什么会这样?是因为我的XML,还是因为onCreate只在调用后呈现UI,或其他什么?

这是我的活动根源的XML

    <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/fragment_photos_root"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingTop="?android:attr/actionBarSize"
    tools:context="dtancompany.gallerytest.MainActivity">
    <com.sothree.slidinguppanel.SlidingUpPanelLayout
        xmlns:sothree="http://schemas.android.com/apk/res-auto"
        android:id="@+id/sliding_add_panel"
        android:layout_height="match_parent"
        android:layout_width="match_parent"
        android:gravity="bottom"
        sothree:umanoPanelHeight="0dp"
        sothree:umanoParalaxOffset="100dp"
        sothree:umanoDragView="@+id/dragView"
        sothree:umanoOverlay="true">

        <FrameLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent">
            <android.support.v4.widget.SwipeRefreshLayout
                android:id="@+id/swipe_refresh_layout"
                android:layout_width="match_parent"
                android:layout_height="match_parent">
                <GridView android:id="@+id/grid_view"
                    android:layout_width="match_parent"        android:layout_height="match_parent"
                    android:numColumns="auto_fit"
                    android:gravity="center"
                    android:stretchMode="columnWidth"/>

            </android.support.v4.widget.SwipeRefreshLayout>
        </FrameLayout>

        <RelativeLayout
            android:id="@+id/add_keyword_panel"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="bottom"
            android:orientation="vertical"
            android:clipToPadding="false"
            android:padding="16dp">
            <EditText
                android:id="@+id/edit_text"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:maxLength="64"
                android:hint="@string/edit_text_hint"
                android:background="@android:color/transparent"
                android:textSize="25sp"
                android:layout_centerHorizontal="true"/>

            <ImageButton
                android:id="@+id/add"
                android:layout_width="60dp"
                android:layout_height="60dp"
                android:src="@drawable/plus"
                android:background="@android:color/transparent"
                android:layout_marginTop="10dp"
                android:layout_centerHorizontal="true"
                android:scaleType="fitCenter"
                android:layout_below="@id/edit_text"/>
        </RelativeLayout>
    </com.sothree.slidinguppanel.SlidingUpPanelLayout>

    <FrameLayout
        android:id="@+id/listFragment"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

</FrameLayout>

1 个答案:

答案 0 :(得分:0)

  

为什么会这样?

因为您在get()上呼叫AsyncTaskget()说“哦,是的,AsyncTask我刚刚执行了,没关系,让我们把主要的应用程序线程等起来代替它”。

不要阻止等待数据库I / O完成的主应用程序线程,而是将您的更新UI逻辑移动到onPostExecute()的{​​{1}}。