zoukankan      html  css  js  c++  java
  • Head Fisrt Android Development读书笔记(3)When things take time

    The activity lifecycle

    onCreate() : called when your activity is created and typically where layouts and configuration occurs -->

    onStart(): called when your activity is displayed on the screen. -->

    onResume()\onPause(): this could be caused by a phone call, an alert from another application, or a user switching to a different app.

    Auto-refresh mechanism is processor and battery intensive. (How sensitive???)

    android:gravity="center"

    android:padding="5dp" controls the spaceing between views within a layout

    android:layout_marginTop="5dp" controls the spacing between this view and the views outside this layout.

    android:backgroud="#FF8D8D8D"

     

    android:layout_height="wrap_content": just as big bas it needs to be

    android:layout_hegiht="fill_parent". fill all of the space it can

    android:layout_weight="1" make the view stretch, "0" make that view just as big as needed.


    ProgressDialog

    show a dialog:

    ProgressDialog dialog = ProgressDialog.show(this, "Loading", "Loading the image og the Day");

    dismiss the dialog

    dialog.dismiss();

    Dedicated UI thread

    Android has a dedicated thread for updating the UI, it it responsible for prepaints, layouts, and other graphical processing that helps keep the UI responsive and keeps animation smooth. The UI has a queue of work, and it continually gets the most important chunk of work to process.

    1.KEEP the UI thread FREE of expensive processing for a responsive UI.

    2.Make SURE all necessary UI code occurs on the UI thread.

    Handler

    handler works by keeping a reference to the thread it was created by. You can pass it work and Handler ensures that the code is executed on the insatntiated thread.

    Handler handler;

    public void onCreat(...)

    {

    ...

    handler = new Handler();

    refreshFromFeed();

    }

    pass work to the Handler using post

    handler.post(Runnable runnable)


    WallpaperManager

    WallpaperManager wallpaperManager = WallpaperManager.getInstance(NasaDailyImage.this);

    wallpaperManager.setBitmap(image);

    Toast

    Toast.makeText(NasaDailyImage.this, "Wallpaper set", Toast.LENGTH_SHORT).show();

  • 相关阅读:
    设置linux查看历史命令显示执行时间
    CentOS7.6操作系统安装实例以及Linux版本、哲学思想介绍
    JavaScript 数据结构1
    原生js 正则表达
    js Event事件
    引用类型: 归并方法
    引用类型: 迭代方法
    引用类型 位置方法 indexOf()和 lastIndexOf()
    引用类型 操作方法
    引用类型 重排序方法
  • 原文地址:https://www.cnblogs.com/java20130722/p/3206870.html
Copyright © 2011-2022 走看看