suchen

Heim  >  Fragen und Antworten  >  Hauptteil

Da Intent in Android Schlüssel-Wert-Paardaten übergeben kann, warum sollten Intent und Bundle zusammen verwendet werden?

Wie im Titel erwähnt, können sowohl Bundle als auch Intent Schlüssel-Wert-Paardaten speichern. In logarithmischen Fällen verwenden Sie Intent einfach direkt. Warum gibt es eine solche Kombination aus Intent + Bundle?

大家讲道理大家讲道理2800 Tage vor851

Antworte allen(3)Ich werde antworten

  • 世界只因有你

    世界只因有你2017-05-16 13:37:37

    你就算用 intent传 里面也会自动生成一个bundle的。
    所以实际上都是用bundle

    Antwort
    0
  • 天蓬老师

    天蓬老师2017-05-16 13:37:37

    一楼已经回答的很正确了,我只是贴出个源码来:

        /**
         * Add extended data to the intent.  The name must include a package
         * prefix, for example the app com.android.contacts would use names
         * like "com.android.contacts.ShowAll".
         *
         * @param name The name of the extra data, with package prefix.
         * @param value The String data value.
         *
         * @return Returns the same Intent object, for chaining multiple calls
         * into a single statement.
         *
         * @see #putExtras
         * @see #removeExtra
         * @see #getStringExtra(String)
         */
        public Intent putExtra(String name, String value) {
            if (mExtras == null) {
                mExtras = new Bundle();
            }
            mExtras.putString(name, value);
            return this;
        }

    Antwort
    0
  • 给我你的怀抱

    给我你的怀抱2017-05-16 13:37:37

    好像是bundle能传递的数据类型多?

    Antwort
    0
  • StornierenAntwort