0

Gmail アプリでそのフェード効果を行う方法を知りたいです。ナビゲーション ドロワーを指でドラッグして開閉すると、ナビゲーション ドロワーの下のビューが明るくなったり暗くなったりします (左に動かすと明るくなり、左に動かすと明るくなります)。

以下のコードのようにしてみましたが、クラッシュしてしまい、Gmail アプリとして見栄えがよくありませんでした。

    String colorString = "0x00000000";

    int max = MAX_SIZE_X;
    int auxMax = (int) (MAX_SIZE_X * 0.9); // 90
    int betMax = (int) (MAX_SIZE_X * 0.8); // 80
    int auxMaM = (int) (MAX_SIZE_X * 0.7); // 70
    int betMaM = (int) (MAX_SIZE_X * 0.6); // 60
    int auxMid = (int) (MAX_SIZE_X * 0.5); // 50
    int betMid = (int) (MAX_SIZE_X * 0.4); // 40
    int auxMiM = (int) (MAX_SIZE_X * 0.3); // 30
    int betMiM = (int) (MAX_SIZE_X * 0.2); // 20
    int betMin = (int) (MAX_SIZE_X * 0.1); // 10

    if (touch < max && touch >= auxMax) {
        colorString = "#88000000";

    } 
    if (touch < auxMax && touch >= betMax) {
        colorString = "#84000000";

    } 
    if (touch < betMax && touch >= auxMaM) {
        colorString = "#80000000";

    } 
    if (touch < auxMaM && touch >= betMaM) {
        colorString = "#76000000";

    } 
    if (touch < betMaM && touch >= auxMid) {
        colorString = "#72000000";

    } 
    if (touch < auxMid && touch >= betMid) {
        colorString = "#68000000";

    } 
    if (touch < betMid && touch >= auxMiM) {
        colorString = "#64000000";

    } 
    if (touch < auxMiM && touch >= betMiM) {
        colorString = "#60000000";

    } 
    if (touch < betMiM && touch >= betMin) {
        colorString = "#00000000";

    }
    colorInt = Color.parseColor(colorString);

    return colorInt;
4

2 に答える 2

2

Google 開発者サイトから次の例を確認してください。役に立つかもしれません。

http://developer.android.com/training/implementing-navigation/nav-drawer.html

詳細情報は、Navigation Drawer パターンに関するものです。

http://developer.android.com/design/patterns/navigation-drawer.html

于 2013-08-07T18:25:25.090 に答える
0

それはナビゲーション ドロワーです。こちらをご覧くださいhttp://developer.android.com/training/implementing-navigation/nav-drawer.html

于 2013-08-07T18:25:12.010 に答える