Android 4.0 UI for Tablet and Handset

來源:互聯網
上載者:User

Android 4.0(ICS) merge handset and tablet UI together, make customer flexible to use which UI they want. On marketing nowdays, phone use phone mode directly and other product like tablet/MID/PND use tablet mode.

ICS support multi-panel in tablet mode to fully use advantage of large screen size which is the major difference with former Android version.

Following layout gives us a brief knowledge about ICS UI:

+-------------------------------------------------+
| System bar (only in phone UI)                      |
+-------------------------------------------------+
| (Layout with background drawable)               |
| +---------------------------------------------+ |
| |
Title/Action? bar (optional)                          |
| +---------------------------------------------+ |
| | Content, vertical extending                        |
| |                                                                |
| +---------------------------------------------+ |
+-------------------------------------------------+
| System bar (only in tablet UI)                       |
+-------------------------------------------------+

config_statusBarComponent choose which resource we want, statusBar or systemBar.if phone, use com.android.systemui.statusbar.phone.PhoneStatusBar?; while
tablet, use com.android.systemui.statusbar.tablet.TabletStatusBar?. frameworks/base/packages/SystemUI/src/com/android/systemui/SystemUIService.java

    public void onCreate() {        // Pick status bar or system bar.        IWindowManager wm = IWindowManager.Stub.asInterface(                ServiceManager.getService(Context.WINDOW_SERVICE));        try {            SERVICES[0] = wm.canStatusBarHide()                    ? R.string.config_statusBarComponent                    : R.string.config_systemBarComponent;        } catch (RemoteException e) {            Slog.w(TAG, "Failing checking whether status bar can hide", e);        }

res/values/config.xml

<string name="config_statusBarComponent" translatable="false">             com.android.systemui.statusbar.phone.PhoneStatusBar</string><string name="config_systemBarComponent" translatable="false">             com.android.systemui.statusbar.tablet.TabletStatusBar<string> 

canStatusBarHide defined inframeworks/base/policy/src/com/android/internal/policy/impl/PhoneWindowManager.java

    public boolean canStatusBarHide() {        return mStatusBarCanHide;    }

mStatusBarCanHide true or false determine status bar or system bar.

        int shortSizeDp = shortSize                * DisplayMetrics.DENSITY_DEFAULT                / DisplayMetrics.DENSITY_DEVICE;        mStatusBarCanHide = shortSizeDp < 600;        mStatusBarHeight = mContext.getResources().getDimensionPixelSize(                mStatusBarCanHide                ? com.android.internal.R.dimen.status_bar_height                : com.android.internal.R.dimen.system_bar_height);

Here if shortSizeDp smaller than 600, then system use as tablet mode, otherwise phone mode. DENSITY_DEFAULT is fixed 160. Therefore, 800*480 resolution which compute as 480*160/DENSITY_DEVICE and 800*600 compute as 600*160/DENSITY_DEVICE. So 120 should be
suitable value to make both needs the tablet condition.

setprop ro.sf.lcd_density 120

frameworks/base/core/java/android/content/res/Configuration.java system configuration

public static final int SCREENLAYOUT_SIZE_SMALL = 0x01; public static final int SCREENLAYOUT_SIZE_NORMAL = 0x02; public static final int SCREENLAYOUT_SIZE_LARGE = 0x03; public static final int SCREENLAYOUT_SIZE_XLARGE = 0x04;

ICS also has three common software virtual key BACK, HOME and RECENT, default tablet mode appear while phone mode should modify code to adapt these keys. framework/base/packages/SystemUI/res/layout/navigation_bar.xml

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.