IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Android Discussion :

Plusieurs activity [Débutant(e)]


Sujet :

Android

  1. #1
    Membre régulier
    Homme Profil pro
    Software Engineer
    Inscrit en
    Février 2013
    Messages
    139
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Software Engineer
    Secteur : High Tech - Électronique et micro-électronique

    Informations forums :
    Inscription : Février 2013
    Messages : 139
    Points : 94
    Points
    94
    Par défaut Plusieurs activity
    Bonjour,

    JE cherche a faire une application avec plusieurs pages mais je n'arrive pas a naviguer parmi elles. Je pense que je ne dois pas fermer quelque chose au niveau de la première Activity car l'appui sur le premier bouton marche mais les autres bug ensuite.

    Voici le code java (le xml doit être bon normalement) :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    public class MainActivity extends Activity {
     
     
    ////////////////CREATION ACTIVITE////////////////	
    	@Override
    	public void onCreate(Bundle savedInstanceState) {
    	  super.onCreate(savedInstanceState);
    	  setContentView(R.layout.activity_main);
     
    	  final ImageView edtbutton = (ImageView) findViewById(R.id.edt);
    	  final ImageView notebutton = (ImageView) findViewById(R.id.note);
    	  final ImageView coursbutton = (ImageView) findViewById(R.id.cours);
    	  final ImageView tdbutton = (ImageView) findViewById(R.id.td);
    	  final ImageView tpbutton = (ImageView) findViewById(R.id.tp);
     
    	  edtbutton.setOnClickListener(new OnClickListener() {
     
    		  @Override
    		  public void onClick(View v) {
     
    			  if(v == (View) findViewById(R.id.edt)){
    				  Intent intentedt = new Intent(MainActivity.this, EdtActivity.class);
    				  startActivity(intentedt);
    			  }
     
    			}
    	  });
     
     
    	  notebutton.setOnClickListener(new OnClickListener() {
     
    		  @Override
    		  public void onClick(View v) {
     
    			  if(v == (View) findViewById(R.id.note)){
    				  Intent intentnote = new Intent(MainActivity.this, NoteActivity.class);
    				  startActivity(intentnote);
    			  }
     
    			}
    	});
     
    	  coursbutton.setOnClickListener(new OnClickListener() {
     
    		  @Override
    		  public void onClick(View v) {
     
    			  if(v == (View) findViewById(R.id.cours)){
    				  Intent intentcours = new Intent(MainActivity.this, CoursActivity.class);
    				  startActivity(intentcours);
    			  }
     
    			}
    	});
     
    	  tdbutton.setOnClickListener(new OnClickListener() {
     
    		  @Override
    		  public void onClick(View v) {
     
    			  if(v == (View) findViewById(R.id.td)){
    				  Intent intenttd = new Intent(MainActivity.this, TdActivity.class);
    				  startActivity(intenttd);
    			  }
     
    			}
    	});
     
    	  tpbutton.setOnClickListener(new OnClickListener() {
     
    		  @Override
    		  public void onClick(View v) {
     
    			  if(v == (View) findViewById(R.id.tp)){
    				  Intent intenttp = new Intent(MainActivity.this, TpActivity.class);
    				  startActivity(intenttp);
    			  }
     
    			}
    	});
     
     
    	   }
    ////////////////FIN CREATION ACTIVITE////////////////   
     
    }

    Merci d'avance.
    Thomas

  2. #2
    Expert éminent

    Homme Profil pro
    Ingénieur systèmes et réseaux
    Inscrit en
    Février 2007
    Messages
    4 253
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Rhône (Rhône Alpes)

    Informations professionnelles :
    Activité : Ingénieur systèmes et réseaux
    Secteur : High Tech - Multimédia et Internet

    Informations forums :
    Inscription : Février 2007
    Messages : 4 253
    Points : 7 618
    Points
    7 618
    Billets dans le blog
    3
    Par défaut
    le coup du test sur v == findViewById() n'est pas très utile puisqu'il y a 1 seul listener par bouton, ce sera forcément le bon....

    D'autre part, il serait plus judicieux de le faire dans l'autre sens:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    if (v.getId() == R.id.cours)


    Sinon, c'est quoi qui "bug"... parce que bon... ca ne veut pas dire grand chose ... le téléphone explose ? redémarre ? rien ne se passe ? l'application "crashe" (doit être arrêtée),... y a t il un logcat ?
    N'oubliez pas de cliquer sur mais aussi sur si un commentaire vous a été utile !
    Et surtout

  3. #3
    Membre régulier
    Homme Profil pro
    Étudiant
    Inscrit en
    Septembre 2011
    Messages
    144
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Septembre 2011
    Messages : 144
    Points : 118
    Points
    118
    Par défaut
    Ce serait beaucoup plus propre et compréhensible, voire même plus fonctionnel, en utilisant :
    - un seul listenner
    - la méthode v.getId() pour différencier les boutons


    Exemple en implémentant l'interface :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
     
    public class MainActivity extends Activity implements OnClickListener
    {
     
    	@Override
    	public void onCreate(Bundle savedInstanceState)
    	{
    		super.onCreate(savedInstanceState);
    		setContentView(R.layout.activity_main);
     
    		final ImageView edtbutton = (ImageView) findViewById(R.id.edt);
    		final ImageView notebutton = (ImageView) findViewById(R.id.note);
    		final ImageView coursbutton = (ImageView) findViewById(R.id.cours);
    		final ImageView tdbutton = (ImageView) findViewById(R.id.td);
    		final ImageView tpbutton = (ImageView) findViewById(R.id.tp);
     
    		edtbutton.setOnClickListener(this);
    		notebutton.setOnClickListener(this);
    		coursbutton.setOnClickListener(this);
    		tdbutton.setOnClickListener(this);
    		tpbutton.setOnClickListener(this);
    	}
     
    	@Override
        public void onClick(View v)
        {
    		Intent intent;
     
    	    switch (v.getId())
            {
    			case R.id.edt:	
    				intent = new Intent(MainActivity.this, EdtActivity.class);				  
    				break;
     
    			case R.id.note:		
    				intent = new Intent(MainActivity.this, NoteActivity.class);	
    				break;
     
    			case R.id.cours:	
    				intent = new Intent(MainActivity.this, CoursActivity.class);	
    				break;
     
    			case R.id.td:	
    				intent = new Intent(MainActivity.this, TdActivity.class);	
    				break;
     
    			case R.id.tp:	
    				intent = new Intent(MainActivity.this, TpActivity.class);	
    				break;
    		}
     
    	    startActivity(intent);
     
        }
     
    }

  4. #4
    Membre régulier
    Homme Profil pro
    Software Engineer
    Inscrit en
    Février 2013
    Messages
    139
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Software Engineer
    Secteur : High Tech - Électronique et micro-électronique

    Informations forums :
    Inscription : Février 2013
    Messages : 139
    Points : 94
    Points
    94
    Par défaut
    Merci de vos réponses je test ce soir.

    Sinon pour le bug, dès que j'appuis sur un bouton de menu autre que edt, l'appli plante.

    Merci

  5. #5
    Expert éminent

    Avatar de Feanorin
    Profil pro
    Inscrit en
    Avril 2004
    Messages
    4 589
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Avril 2004
    Messages : 4 589
    Points : 9 149
    Points
    9 149
    Par défaut
    Pourrais tu nous montrer ton logcat ?

    Responsable Android de Developpez.com (Twitter et Facebook)
    Besoin d"un article/tutoriel/cours sur Android, consulter la page cours
    N'hésitez pas à consulter la FAQ Android et à poser vos questions sur les forums d'entraide mobile d'Android.

  6. #6
    Membre régulier
    Homme Profil pro
    Software Engineer
    Inscrit en
    Février 2013
    Messages
    139
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Software Engineer
    Secteur : High Tech - Électronique et micro-électronique

    Informations forums :
    Inscription : Février 2013
    Messages : 139
    Points : 94
    Points
    94
    Par défaut
    Je fais ça dès que rentre merci

  7. #7
    Membre régulier
    Homme Profil pro
    Software Engineer
    Inscrit en
    Février 2013
    Messages
    139
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Software Engineer
    Secteur : High Tech - Électronique et micro-électronique

    Informations forums :
    Inscription : Février 2013
    Messages : 139
    Points : 94
    Points
    94
    Par défaut
    Bonjour,

    Voici pour le logcat, la methode que l'on m'a donné ne change rien au bug :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    [2013-02-26 13:27:43 - hfzd] New emulator found: emulator-5554
    [2013-02-26 13:27:43 - hfzd] Waiting for HOME ('android.process.acore') to be launched...
    [2013-02-26 13:28:11 - hfzd] HOME is up on device 'emulator-5554'
    [2013-02-26 13:28:11 - hfzd] Uploading hfzd.apk onto device 'emulator-5554'
    [2013-02-26 13:28:12 - hfzd] Installing hfzd.apk...
    [2013-02-26 13:28:37 - hfzd] Success!
    [2013-02-26 13:28:37 - hfzd] Starting activity com.example.hfzd.MainActivity on device emulator-5554
    [2013-02-26 13:28:39 - hfzd] ActivityManager: Starting: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] cmp=com.example.hfzd/.MainActivity }
    Edit : Par ailleur je commence a me demander si le problème ne vient pas du code des autres classes ?

  8. #8
    Expert éminent

    Homme Profil pro
    Ingénieur systèmes et réseaux
    Inscrit en
    Février 2007
    Messages
    4 253
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Rhône (Rhône Alpes)

    Informations professionnelles :
    Activité : Ingénieur systèmes et réseaux
    Secteur : High Tech - Multimédia et Internet

    Informations forums :
    Inscription : Février 2007
    Messages : 4 253
    Points : 7 618
    Points
    7 618
    Billets dans le blog
    3
    Par défaut
    Ca ce n'est pas le logcat... c'est la console... il y a une fenetre spécifique logcat... dans laquelle doit apparaitre l'exception (il y en a une si l'application ferme), avec surtout toute la "stack" de celle-ci (" at xxxxx.yyy.zzzz(zzzzz.java:348)"), et ses causes ("caused by xxxxxxxxx")

    Il nous faudrait toutes ces lignes d'erreur...
    N'oubliez pas de cliquer sur mais aussi sur si un commentaire vous a été utile !
    Et surtout

  9. #9
    Membre régulier
    Homme Profil pro
    Software Engineer
    Inscrit en
    Février 2013
    Messages
    139
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Software Engineer
    Secteur : High Tech - Électronique et micro-électronique

    Informations forums :
    Inscription : Février 2013
    Messages : 139
    Points : 94
    Points
    94
    Par défaut
    Ha oui en effet, désolé je n'avait jamais utilisé cette fonction donc j'obtient un log bien long :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    02-26 13:45:55.089: W/Zygote(37): Class not found for preloading: android.animation.ValueAnimator$4
    02-26 13:45:55.089: W/Zygote(37): Class not found for preloading: android.animation.ValueAnimator$5
    02-26 13:45:55.248: W/Zygote(37): Class not found for preloading: android.content.res.Resources$1
    02-26 13:45:55.298: W/Zygote(37): Class not found for preloading: android.database.sqlite.SQLiteCompiledSql
    02-26 13:45:55.318: W/Zygote(37): Class not found for preloading: android.database.sqlite.SQLiteDatabase$DatabaseReentrantLock
    02-26 13:45:55.578: W/Zygote(37): Class not found for preloading: android.media.AudioManager$2
    02-26 13:45:55.688: I/dalvikvm(37): threadid=1: recursive native library load attempt (/system/lib/libmedia_jni.so)
    02-26 13:45:55.698: I/dalvikvm(37): threadid=1: recursive native library load attempt (/system/lib/libmedia_jni.so)
    02-26 13:45:55.698: I/dalvikvm(37): threadid=1: recursive native library load attempt (/system/lib/libmedia_jni.so)
    02-26 13:45:55.738: W/Zygote(37): Class not found for preloading: android.media.IRemoteControlClientDispatcher
    02-26 13:45:55.738: W/Zygote(37): Class not found for preloading: android.media.IRemoteControlClientDispatcher$Stub
    02-26 13:45:56.268: W/Zygote(37): Class not found for preloading: android.os.Power
    02-26 13:45:56.679: W/Zygote(37): Class not found for preloading: android.text.TextDirectionHeuristics$CharCount
    02-26 13:45:56.698: W/Zygote(37): Class not found for preloading: android.text.method.WordIterator$1
    02-26 13:45:56.789: W/Zygote(37): Class not found for preloading: android.view.InputHandler
    02-26 13:45:56.789: W/Zygote(37): Class not found for preloading: android.view.InputQueue$FinishedCallback
    02-26 13:45:56.869: W/Zygote(37): Class not found for preloading: android.view.ViewRootImpl$3
    02-26 13:45:57.059: I/dalvikvm(37): threadid=1: recursive native library load attempt (/system/lib/libwebcore.so)
    02-26 13:45:57.248: W/Zygote(37): Class not found for preloading: android.widget.EdgeGlow
    02-26 13:45:57.469: W/Zygote(37): Class not found for preloading: android.widget.TextView$Blink
    02-26 13:45:57.469: W/Zygote(37): Class not found for preloading: android.widget.TextView$EasyEditSpanController
    02-26 13:45:57.478: W/Zygote(37): Class not found for preloading: android.widget.TextView$InputContentType
    02-26 13:45:57.478: W/Zygote(37): Class not found for preloading: android.widget.TextView$InputMethodState
    02-26 13:45:57.478: W/Zygote(37): Class not found for preloading: android.widget.TextView$TextAlign
    02-26 13:45:57.638: E/PhonePolicy(37): Could not preload class for phone policy: com.android.internal.policy.impl.PhoneWindow$ContextMenuCallback
    02-26 13:45:59.208: I/System(37): Loaded time zone names for  in 882ms (874ms in ICU)
    02-26 13:45:59.859: I/System(37): Loaded time zone names for en_US in 648ms (625ms in ICU)
    02-26 13:46:00.358: I/Zygote(37): ...preloaded 2281 classes in 5359ms.
    02-26 13:46:00.398: I/Zygote(37): Preloading resources...
    02-26 13:46:00.418: W/Zygote(37): Preloaded drawable resource #0x10805e9 (res/drawable-hdpi/toast_frame_holo.9.png) that varies with configuration!!
    02-26 13:46:00.418: W/Zygote(37): Preloaded drawable resource #0x1080108 (res/drawable-hdpi/btn_check_on_pressed_holo_light.png) that varies with configuration!!
    02-26 13:46:00.478: W/Zygote(37): Preloaded drawable resource #0x1080107 (res/drawable-hdpi/btn_check_on_pressed_holo_dark.png) that varies with configuration!!
    02-26 13:46:00.478: W/Zygote(37): Preloaded drawable resource #0x1080105 (res/drawable-hdpi/btn_check_on_holo_light.png) that varies with configuration!!
    02-26 13:46:00.488: W/Zygote(37): Preloaded drawable resource #0x1080104 (res/drawable-hdpi/btn_check_on_holo_dark.png) that varies with configuration!!
    02-26 13:46:00.488: W/Zygote(37): Preloaded drawable resource #0x1080102 (res/drawable-hdpi/btn_check_on_focused_holo_light.png) that varies with configuration!!
    02-26 13:46:00.498: W/Zygote(37): Preloaded drawable resource #0x1080101 (res/drawable-hdpi/btn_check_on_focused_holo_dark.png) that varies with configuration!!
    02-26 13:46:00.548: W/Zygote(37): Preloaded drawable resource #0x1080100 (res/drawable-hdpi/btn_check_on_disabled_holo_light.png) that varies with configuration!!
    02-26 13:46:00.558: W/Zygote(37): Preloaded drawable resource #0x10800ff (res/drawable-hdpi/btn_check_on_disabled_holo_dark.png) that varies with configuration!!
    02-26 13:46:00.558: W/Zygote(37): Preloaded drawable resource #0x10800fe (res/drawable-hdpi/btn_check_on_disabled_focused_holo_light.png) that varies with configuration!!
    02-26 13:46:00.558: W/Zygote(37): Preloaded drawable resource #0x10800fd (res/drawable-hdpi/btn_check_on_disabled_focused_holo_dark.png) that varies with configuration!!
    02-26 13:46:00.568: W/Zygote(37): Preloaded drawable resource #0x10800f5 (res/drawable-hdpi/btn_check_off_pressed_holo_light.png) that varies with configuration!!
    02-26 13:46:00.618: W/Zygote(37): Preloaded drawable resource #0x10800f4 (res/drawable-hdpi/btn_check_off_pressed_holo_dark.png) that varies with configuration!!
    02-26 13:46:00.628: W/Zygote(37): Preloaded drawable resource #0x10800f0 (res/drawable-hdpi/btn_check_off_holo_light.png) that varies with configuration!!
    02-26 13:46:00.628: W/Zygote(37): Preloaded drawable resource #0x10800ef (res/drawable-hdpi/btn_check_off_holo_dark.png) that varies with configuration!!
    02-26 13:46:00.628: W/Zygote(37): Preloaded drawable resource #0x10800ed (res/drawable-hdpi/btn_check_off_focused_holo_light.png) that varies with configuration!!
    02-26 13:46:00.638: W/Zygote(37): Preloaded drawable resource #0x10800ec (res/drawable-hdpi/btn_check_off_focused_holo_dark.png) that varies with configuration!!
    02-26 13:46:00.678: W/Zygote(37): Preloaded drawable resource #0x10800eb (res/drawable-hdpi/btn_check_off_disabled_holo_light.png) that varies with configuration!!
    02-26 13:46:00.678: W/Zygote(37): Preloaded drawable resource #0x10800ea (res/drawable-hdpi/btn_check_off_disabled_holo_dark.png) that varies with configuration!!
    02-26 13:46:00.699: W/Zygote(37): Preloaded drawable resource #0x10800e9 (res/drawable-hdpi/btn_check_off_disabled_focused_holo_light.png) that varies with configuration!!
    02-26 13:46:00.699: W/Zygote(37): Preloaded drawable resource #0x10800e8 (res/drawable-hdpi/btn_check_off_disabled_focused_holo_dark.png) that varies with configuration!!
    02-26 13:46:00.709: W/Zygote(37): Preloaded drawable resource #0x10800df (res/drawable/btn_check_holo_light.xml) that varies with configuration!!
    02-26 13:46:00.709: W/Zygote(37): Preloaded drawable resource #0x10800de (res/drawable/btn_check_holo_dark.xml) that varies with configuration!!
    02-26 13:46:00.749: W/Zygote(37): Preloaded drawable resource #0x1080198 (res/drawable-hdpi/btn_radio_on_pressed_holo_light.png) that varies with configuration!!
    02-26 13:46:00.759: W/Zygote(37): Preloaded drawable resource #0x1080197 (res/drawable-hdpi/btn_radio_on_pressed_holo_dark.png) that varies with configuration!!
    02-26 13:46:00.779: W/Zygote(37): Preloaded drawable resource #0x1080195 (res/drawable-hdpi/btn_radio_on_holo_light.png) that varies with configuration!!
    02-26 13:46:00.779: W/Zygote(37): Preloaded drawable resource #0x1080194 (res/drawable-hdpi/btn_radio_on_holo_dark.png) that varies with configuration!!
    02-26 13:46:00.789: W/Zygote(37): Preloaded drawable resource #0x1080192 (res/drawable-hdpi/btn_radio_on_focused_holo_light.png) that varies with configuration!!
    02-26 13:46:00.829: W/Zygote(37): Preloaded drawable resource #0x1080191 (res/drawable-hdpi/btn_radio_on_focused_holo_dark.png) that varies with configuration!!
    02-26 13:46:00.829: W/Zygote(37): Preloaded drawable resource #0x1080190 (res/drawable-hdpi/btn_radio_on_disabled_holo_light.png) that varies with configuration!!
    02-26 13:46:00.839: W/Zygote(37): Preloaded drawable resource #0x108018f (res/drawable-hdpi/btn_radio_on_disabled_holo_dark.png) that varies with configuration!!
    02-26 13:46:00.839: W/Zygote(37): Preloaded drawable resource #0x108018e (res/drawable-hdpi/btn_radio_on_disabled_focused_holo_light.png) that varies with configuration!!
    02-26 13:46:00.839: W/Zygote(37): Preloaded drawable resource #0x108018d (res/drawable-hdpi/btn_radio_on_disabled_focused_holo_dark.png) that varies with configuration!!
    02-26 13:46:00.899: W/Zygote(37): Preloaded drawable resource #0x108018a (res/drawable-hdpi/btn_radio_off_pressed_holo_light.png) that varies with configuration!!
    02-26 13:46:00.909: W/Zygote(37): Preloaded drawable resource #0x1080189 (res/drawable-hdpi/btn_radio_off_pressed_holo_dark.png) that varies with configuration!!
    02-26 13:46:00.909: W/Zygote(37): Preloaded drawable resource #0x1080187 (res/drawable-hdpi/btn_radio_off_holo_light.png) that varies with configuration!!
    02-26 13:46:00.909: W/Zygote(37): Preloaded drawable resource #0x1080186 (res/drawable-hdpi/btn_radio_off_holo_dark.png) that varies with configuration!!
    02-26 13:46:00.919: W/Zygote(37): Preloaded drawable resource #0x1080184 (res/drawable-hdpi/btn_radio_off_focused_holo_light.png) that varies with configuration!!
    02-26 13:46:00.968: W/Zygote(37): Preloaded drawable resource #0x1080183 (res/drawable-hdpi/btn_radio_off_focused_holo_dark.png) that varies with configuration!!
    02-26 13:46:00.968: W/Zygote(37): Preloaded drawable resource #0x1080182 (res/drawable-hdpi/btn_radio_off_disabled_holo_light.png) that varies with configuration!!
    02-26 13:46:00.978: W/Zygote(37): Preloaded drawable resource #0x1080181 (res/drawable-hdpi/btn_radio_off_disabled_holo_dark.png) that varies with configuration!!
    02-26 13:46:00.978: W/Zygote(37): Preloaded drawable resource #0x1080180 (res/drawable-hdpi/btn_radio_off_disabled_focused_holo_light.png) that varies with configuration!!
    02-26 13:46:00.978: W/Zygote(37): Preloaded drawable resource #0x108017f (res/drawable-hdpi/btn_radio_off_disabled_focused_holo_dark.png) that varies with configuration!!
    02-26 13:46:01.038: W/Zygote(37): Preloaded drawable resource #0x108012b (res/drawable-hdpi/btn_default_pressed_holo_light.9.png) that varies with configuration!!
    02-26 13:46:01.038: W/Zygote(37): Preloaded drawable resource #0x108012a (res/drawable-hdpi/btn_default_pressed_holo_dark.9.png) that varies with configuration!!
    02-26 13:46:01.048: W/Zygote(37): Preloaded drawable resource #0x1080127 (res/drawable-hdpi/btn_default_normal_holo_light.9.png) that varies with configuration!!
    02-26 13:46:01.048: W/Zygote(37): Preloaded drawable resource #0x1080126 (res/drawable-hdpi/btn_default_normal_holo_dark.9.png) that varies with configuration!!
    02-26 13:46:01.048: W/Zygote(37): Preloaded drawable resource #0x108011f (res/drawable-hdpi/btn_default_focused_holo_light.9.png) that varies with configuration!!
    02-26 13:46:01.058: W/Zygote(37): Preloaded drawable resource #0x108011e (res/drawable-hdpi/btn_default_focused_holo_dark.9.png) that varies with configuration!!
    02-26 13:46:01.098: W/Zygote(37): Preloaded drawable resource #0x108011c (res/drawable-hdpi/btn_default_disabled_holo_light.9.png) that varies with configuration!!
    02-26 13:46:01.118: W/Zygote(37): Preloaded drawable resource #0x108011b (res/drawable-hdpi/btn_default_disabled_holo_dark.9.png) that varies with configuration!!
    02-26 13:46:01.118: W/Zygote(37): Preloaded drawable resource #0x1080119 (res/drawable-hdpi/btn_default_disabled_focused_holo_light.9.png) that varies with configuration!!
    02-26 13:46:01.118: W/Zygote(37): Preloaded drawable resource #0x1080118 (res/drawable-hdpi/btn_default_disabled_focused_holo_dark.9.png) that varies with configuration!!
    02-26 13:46:01.129: W/Zygote(37): Preloaded drawable resource #0x1080120 (res/drawable/btn_default_holo_dark.xml) that varies with configuration!!
    02-26 13:46:01.129: W/Zygote(37): Preloaded drawable resource #0x1080121 (res/drawable/btn_default_holo_light.xml) that varies with configuration!!
    02-26 13:46:01.138: W/Zygote(37): Preloaded drawable resource #0x10801d4 (res/drawable-hdpi/btn_star_off_normal_holo_light.png) that varies with configuration!!
    02-26 13:46:01.178: W/Zygote(37): Preloaded drawable resource #0x10801de (res/drawable-hdpi/btn_star_on_normal_holo_light.png) that varies with configuration!!
    02-26 13:46:01.178: W/Zygote(37): Preloaded drawable resource #0x10801da (res/drawable-hdpi/btn_star_on_disabled_holo_light.png) that varies with configuration!!
    02-26 13:46:01.198: W/Zygote(37): Preloaded drawable resource #0x10801d0 (res/drawable-hdpi/btn_star_off_disabled_holo_light.png) that varies with configuration!!
    02-26 13:46:01.198: W/Zygote(37): Preloaded drawable resource #0x10801e0 (res/drawable-hdpi/btn_star_on_pressed_holo_light.png) that varies with configuration!!
    02-26 13:46:01.208: W/Zygote(37): Preloaded drawable resource #0x10801d6 (res/drawable-hdpi/btn_star_off_pressed_holo_light.png) that varies with configuration!!
    02-26 13:46:01.248: W/Zygote(37): Preloaded drawable resource #0x10801dc (res/drawable-hdpi/btn_star_on_focused_holo_light.png) that varies with configuration!!
    02-26 13:46:01.258: W/Zygote(37): Preloaded drawable resource #0x10801d2 (res/drawable-hdpi/btn_star_off_focused_holo_light.png) that varies with configuration!!
    02-26 13:46:01.258: W/Zygote(37): Preloaded drawable resource #0x10801d8 (res/drawable-hdpi/btn_star_on_disabled_focused_holo_light.png) that varies with configuration!!
    02-26 13:46:01.268: W/Zygote(37): Preloaded drawable resource #0x10801ce (res/drawable-hdpi/btn_star_off_disabled_focused_holo_light.png) that varies with configuration!!
    02-26 13:46:01.288: W/Zygote(37): Preloaded drawable resource #0x10801cb (res/drawable/btn_star_holo_light.xml) that varies with configuration!!
    02-26 13:46:01.288: W/Zygote(37): Preloaded drawable resource #0x10801d3 (res/drawable-hdpi/btn_star_off_normal_holo_dark.png) that varies with configuration!!
    02-26 13:46:01.328: W/Zygote(37): Preloaded drawable resource #0x10801dd (res/drawable-hdpi/btn_star_on_normal_holo_dark.png) that varies with configuration!!
    02-26 13:46:01.338: W/Zygote(37): Preloaded drawable resource #0x10801d9 (res/drawable-hdpi/btn_star_on_disabled_holo_dark.png) that varies with configuration!!
    02-26 13:46:01.338: W/Zygote(37): Preloaded drawable resource #0x10801cf (res/drawable-hdpi/btn_star_off_disabled_holo_dark.png) that varies with configuration!!
    02-26 13:46:01.338: W/Zygote(37): Preloaded drawable resource #0x10801df (res/drawable-hdpi/btn_star_on_pressed_holo_dark.png) that varies with configuration!!
    02-26 13:46:01.348: W/Zygote(37): Preloaded drawable resource #0x10801d5 (res/drawable-hdpi/btn_star_off_pressed_holo_dark.png) that varies with configuration!!
    02-26 13:46:01.398: W/Zygote(37): Preloaded drawable resource #0x10801db (res/drawable-hdpi/btn_star_on_focused_holo_dark.png) that varies with configuration!!
    02-26 13:46:01.408: W/Zygote(37): Preloaded drawable resource #0x10801d1 (res/drawable-hdpi/btn_star_off_focused_holo_dark.png) that varies with configuration!!
    02-26 13:46:01.408: W/Zygote(37): Preloaded drawable resource #0x10801d7 (res/drawable-hdpi/btn_star_on_disabled_focused_holo_dark.png) that varies with configuration!!
    02-26 13:46:01.418: W/Zygote(37): Preloaded drawable resource #0x10801cd (res/drawable-hdpi/btn_star_off_disabled_focused_holo_dark.png) that varies with configuration!!
    02-26 13:46:01.418: W/Zygote(37): Preloaded drawable resource #0x10801ca (res/drawable/btn_star_holo_dark.xml) that varies with configuration!!
    02-26 13:46:01.428: W/Zygote(37): Preloaded drawable resource #0x10801fa (res/drawable-hdpi/btn_toggle_on_pressed_holo_light.9.png) that varies with configuration!!
    02-26 13:46:01.478: W/Zygote(37): Preloaded drawable resource #0x10801f9 (res/drawable-hdpi/btn_toggle_on_pressed_holo_dark.9.png) that varies with configuration!!
    02-26 13:46:01.488: W/Zygote(37): Preloaded drawable resource #0x10801f8 (res/drawable-hdpi/btn_toggle_on_normal_holo_light.9.png) that varies with configuration!!
    02-26 13:46:01.488: W/Zygote(37): Preloaded drawable resource #0x10801f7 (res/drawable-hdpi/btn_toggle_on_normal_holo_dark.9.png) that varies with configuration!!
    02-26 13:46:01.488: W/Zygote(37): Preloaded drawable resource #0x10801f6 (res/drawable-hdpi/btn_toggle_on_focused_holo_light.9.png) that varies with configuration!!
    02-26 13:46:01.498: W/Zygote(37): Preloaded drawable resource #0x10801f5 (res/drawable-hdpi/btn_toggle_on_focused_holo_dark.9.png) that varies with configuration!!
    02-26 13:46:01.498: W/Zygote(37): Preloaded drawable resource #0x10801f4 (res/drawable-hdpi/btn_toggle_on_disabled_holo_light.9.png) that varies with configuration!!
    02-26 13:46:01.558: W/Zygote(37): Preloaded drawable resource #0x10801f3 (res/drawable-hdpi/btn_toggle_on_disabled_holo_dark.9.png) that varies with configuration!!
    02-26 13:46:01.558: W/Zygote(37): Preloaded drawable resource #0x10801f2 (res/drawable-hdpi/btn_toggle_on_disabled_focused_holo_light.9.png) that varies with configuration!!
    02-26 13:46:01.558: W/Zygote(37): Preloaded drawable resource #0x10801f1 (res/drawable-hdpi/btn_toggle_on_disabled_focused_holo_dark.9.png) that varies with configuration!!
    02-26 13:46:01.569: W/Zygote(37): Preloaded drawable resource #0x10801ef (res/drawable-hdpi/btn_toggle_off_pressed_holo_light.9.png) that varies with configuration!!
    02-26 13:46:01.569: W/Zygote(37): Preloaded drawable resource #0x10801ee (res/drawable-hdpi/btn_toggle_off_pressed_holo_dark.9.png) that varies with configuration!!
    02-26 13:46:01.578: W/Zygote(37): Preloaded drawable resource #0x10801ed (res/drawable-hdpi/btn_toggle_off_normal_holo_light.9.png) that varies with configuration!!
    02-26 13:46:01.628: W/Zygote(37): Preloaded drawable resource #0x10801ec (res/drawable-hdpi/btn_toggle_off_normal_holo_dark.9.png) that varies with configuration!!
    02-26 13:46:01.639: W/Zygote(37): Preloaded drawable resource #0x10801eb (res/drawable-hdpi/btn_toggle_off_focused_holo_light.9.png) that varies with configuration!!
    02-26 13:46:01.639: W/Zygote(37): Preloaded drawable resource #0x10801ea (res/drawable-hdpi/btn_toggle_off_focused_holo_dark.9.png) that varies with configuration!!
    02-26 13:46:01.639: W/Zygote(37): Preloaded drawable resource #0x10801e9 (res/drawable-hdpi/btn_toggle_off_disabled_holo_light.9.png) that varies with configuration!!
    02-26 13:46:01.649: W/Zygote(37): Preloaded drawable resource #0x10801e8 (res/drawable-hdpi/btn_toggle_off_disabled_holo_dark.9.png) that varies with configuration!!
    02-26 13:46:01.649: W/Zygote(37): Preloaded drawable resource #0x10801e7 (res/drawable-hdpi/btn_toggle_off_disabled_focused_holo_light.9.png) that varies with configuration!!
    02-26 13:46:01.709: W/Zygote(37): Preloaded drawable resource #0x10801e6 (res/drawable-hdpi/btn_toggle_off_disabled_focused_holo_dark.9.png) that varies with configuration!!
    02-26 13:46:01.709: W/Zygote(37): Preloaded drawable resource #0x10801e4 (res/drawable/btn_toggle_holo_light.xml) that varies with configuration!!
    02-26 13:46:01.709: W/Zygote(37): Preloaded drawable resource #0x10801e3 (res/drawable/btn_toggle_holo_dark.xml) that varies with configuration!!
    02-26 13:46:01.749: W/Zygote(37): Preloaded drawable resource #0x1080256 (res/drawable/edit_text_holo_light.xml) that varies with configuration!!
    02-26 13:46:01.839: W/Zygote(37): Preloaded drawable resource #0x1080255 (res/drawable/edit_text_holo_dark.xml) that varies with configuration!!
    02-26 13:46:01.898: W/Zygote(37): Preloaded drawable resource #0x10805b0 (res/drawable-hdpi/text_select_handle_left.png) that varies with configuration!!
    02-26 13:46:01.909: W/Zygote(37): Preloaded drawable resource #0x10805b2 (res/drawable-hdpi/text_select_handle_right.png) that varies with configuration!!
    02-26 13:46:01.958: W/Zygote(37): Preloaded drawable resource #0x10805ad (res/drawable-hdpi/text_edit_paste_window.9.png) that varies with configuration!!
    02-26 13:46:01.968: W/Zygote(37): Preloaded drawable resource #0x108026b (res/drawable-hdpi/expander_close_holo_dark.9.png) that varies with configuration!!
    02-26 13:46:01.968: W/Zygote(37): Preloaded drawable resource #0x108026c (res/drawable-hdpi/expander_close_holo_light.9.png) that varies with configuration!!
    02-26 13:46:01.978: W/Zygote(37): Preloaded drawable resource #0x108026e (res/drawable/expander_group_holo_dark.xml) that varies with configuration!!
    02-26 13:46:01.978: W/Zygote(37): Preloaded drawable resource #0x108026f (res/drawable/expander_group_holo_light.xml) that varies with configuration!!
    02-26 13:46:02.048: W/Zygote(37): Preloaded drawable resource #0x10803e0 (res/drawable/list_selector_holo_dark.xml) that varies with configuration!!
    02-26 13:46:02.058: W/Zygote(37): Preloaded drawable resource #0x10803e1 (res/drawable/list_selector_holo_light.xml) that varies with configuration!!
    02-26 13:46:02.058: W/Zygote(37): Preloaded drawable resource #0x10803c0 (res/drawable-hdpi/list_section_divider_holo_light.9.png) that varies with configuration!!
    02-26 13:46:02.068: W/Zygote(37): Preloaded drawable resource #0x10803bf (res/drawable-hdpi/list_section_divider_holo_dark.9.png) that varies with configuration!!
    02-26 13:46:02.068: W/Zygote(37): Preloaded drawable resource #0x10803f2 (res/drawable-hdpi/menu_hardkey_panel_holo_dark.9.png) that varies with configuration!!
    02-26 13:46:02.068: W/Zygote(37): Preloaded drawable resource #0x10803f3 (res/drawable-hdpi/menu_hardkey_panel_holo_light.9.png) that varies with configuration!!
    02-26 13:46:02.138: W/Zygote(37): Preloaded drawable resource #0x10803f6 (res/drawable-hdpi/menu_submenu_background.9.png) that varies with configuration!!
    02-26 13:46:02.138: W/Zygote(37): Preloaded drawable resource #0x10803f1 (res/drawable-hdpi/menu_dropdown_panel_holo_light.9.png) that varies with configuration!!
    02-26 13:46:02.148: W/Zygote(37): Preloaded drawable resource #0x10803f0 (res/drawable-hdpi/menu_dropdown_panel_holo_dark.9.png) that varies with configuration!!
    02-26 13:46:02.188: W/Zygote(37): Preloaded drawable resource #0x1080420 (res/drawable-hdpi/overscroll_edge.png) that varies with configuration!!
    02-26 13:46:02.268: W/Zygote(37): Preloaded drawable resource #0x1080421 (res/drawable-hdpi/overscroll_glow.png) that varies with configuration!!
    02-26 13:46:02.328: W/Zygote(37): Preloaded drawable resource #0x108045c (res/drawable-hdpi/popup_inline_error_above_holo_dark.9.png) that varies with configuration!!
    02-26 13:46:02.328: W/Zygote(37): Preloaded drawable resource #0x108045d (res/drawable-hdpi/popup_inline_error_above_holo_light.9.png) that varies with configuration!!
    02-26 13:46:02.388: W/Zygote(37): Preloaded drawable resource #0x108045e (res/drawable-hdpi/popup_inline_error_holo_dark.9.png) that varies with configuration!!
    02-26 13:46:02.398: W/Zygote(37): Preloaded drawable resource #0x108045f (res/drawable-hdpi/popup_inline_error_holo_light.9.png) that varies with configuration!!
    02-26 13:46:02.448: W/Zygote(37): Preloaded drawable resource #0x10804dd (res/drawable-hdpi/spinner_16_outer_holo.png) that varies with configuration!!
    02-26 13:46:02.458: W/Zygote(37): Preloaded drawable resource #0x10804dc (res/drawable-hdpi/spinner_16_inner_holo.png) that varies with configuration!!
    02-26 13:46:02.458: W/Zygote(37): Preloaded drawable resource #0x10804e1 (res/drawable-hdpi/spinner_48_outer_holo.png) that varies with configuration!!
    02-26 13:46:02.468: W/Zygote(37): Preloaded drawable resource #0x10804e0 (res/drawable-hdpi/spinner_48_inner_holo.png) that varies with configuration!!
    02-26 13:46:02.518: W/Zygote(37): Preloaded drawable resource #0x10804e3 (res/drawable-hdpi/spinner_76_outer_holo.png) that varies with configuration!!
    02-26 13:46:02.578: W/Zygote(37): Preloaded drawable resource #0x10804e2 (res/drawable-hdpi/spinner_76_inner_holo.png) that varies with configuration!!
    02-26 13:46:02.639: W/Zygote(37): Preloaded drawable resource #0x1080463 (res/drawable-hdpi/progress_bg_holo_dark.9.png) that varies with configuration!!
    02-26 13:46:02.639: W/Zygote(37): Preloaded drawable resource #0x1080464 (res/drawable-hdpi/progress_bg_holo_light.9.png) that varies with configuration!!
    02-26 13:46:02.649: W/Zygote(37): Preloaded drawable resource #0x1080465 (res/drawable/progress_horizontal_holo_dark.xml) that varies with configuration!!
    02-26 13:46:02.659: W/Zygote(37): Preloaded drawable resource #0x1080466 (res/drawable/progress_horizontal_holo_light.xml) that varies with configuration!!
    02-26 13:46:02.709: W/Zygote(37): Preloaded drawable resource #0x1080467 (res/drawable/progress_indeterminate_horizontal_holo.xml) that varies with configuration!!
    02-26 13:46:02.759: W/Zygote(37): Preloaded drawable resource #0x1080469 (res/drawable/progress_large_holo.xml) that varies with configuration!!
    02-26 13:46:02.759: W/Zygote(37): Preloaded drawable resource #0x108046c (res/drawable/progress_medium_holo.xml) that varies with configuration!!
    02-26 13:46:02.759: W/Zygote(37): Preloaded drawable resource #0x108046e (res/drawable-hdpi/progress_primary_holo_dark.9.png) that varies with configuration!!
    02-26 13:46:02.759: W/Zygote(37): Preloaded drawable resource #0x108046f (res/drawable-hdpi/progress_primary_holo_light.9.png) that varies with configuration!!
    02-26 13:46:02.759: W/Zygote(37): Preloaded drawable resource #0x1080470 (res/drawable-hdpi/progress_secondary_holo_dark.9.png) that varies with configuration!!
    02-26 13:46:02.759: W/Zygote(37): Preloaded drawable resource #0x1080471 (res/drawable-hdpi/progress_secondary_holo_light.9.png) that varies with configuration!!
    02-26 13:46:02.759: W/Zygote(37): Preloaded drawable resource #0x1080473 (res/drawable/progress_small_holo.xml) that varies with configuration!!
    02-26 13:46:02.769: W/Zygote(37): Preloaded drawable resource #0x10804ca (res/drawable/scrubber_progress_horizontal_holo_dark.xml) that varies with configuration!!
    02-26 13:46:02.779: W/Zygote(37): Preloaded drawable resource #0x10804cb (res/drawable/scrubber_progress_horizontal_holo_light.xml) that varies with configuration!!
    02-26 13:46:02.978: W/Zygote(37): Preloaded drawable resource #0x10804c0 (res/drawable-hdpi/scrollbar_handle_holo_dark.9.png) that varies with configuration!!
    02-26 13:46:02.978: W/Zygote(37): Preloaded drawable resource #0x10804c1 (res/drawable-hdpi/scrollbar_handle_holo_light.9.png) that varies with configuration!!
    02-26 13:46:02.998: W/Zygote(37): Preloaded drawable resource #0x10804ee (res/drawable/spinner_background_holo_dark.xml) that varies with configuration!!
    02-26 13:46:03.008: W/Zygote(37): Preloaded drawable resource #0x10804ef (res/drawable/spinner_background_holo_light.xml) that varies with configuration!!
    02-26 13:46:03.068: W/Zygote(37): Preloaded drawable resource #0x10804e4 (res/drawable-hdpi/spinner_ab_default_holo_dark.9.png) that varies with configuration!!
    02-26 13:46:03.078: W/Zygote(37): Preloaded drawable resource #0x10804e5 (res/drawable-hdpi/spinner_ab_default_holo_light.9.png) that varies with configuration!!
    02-26 13:46:03.078: W/Zygote(37): Preloaded drawable resource #0x10804e6 (res/drawable-hdpi/spinner_ab_disabled_holo_dark.9.png) that varies with configuration!!
    02-26 13:46:03.078: W/Zygote(37): Preloaded drawable resource #0x10804e7 (res/drawable-hdpi/spinner_ab_disabled_holo_light.9.png) that varies with configuration!!
    02-26 13:46:03.088: W/Zygote(37): Preloaded drawable resource #0x10804e8 (res/drawable-hdpi/spinner_ab_focused_holo_dark.9.png) that varies with configuration!!
    02-26 13:46:03.088: W/Zygote(37): Preloaded drawable resource #0x10804e9 (res/drawable-hdpi/spinner_ab_focused_holo_light.9.png) that varies with configuration!!
    02-26 13:46:03.098: W/Zygote(37): Preloaded drawable resource #0x10804ec (res/drawable-hdpi/spinner_ab_pressed_holo_dark.9.png) that varies with configuration!!
    02-26 13:46:03.158: W/Zygote(37): Preloaded drawable resource #0x10804ed (res/drawable-hdpi/spinner_ab_pressed_holo_light.9.png) that varies with configuration!!
    02-26 13:46:03.158: W/Zygote(37): Preloaded drawable resource #0x10804ea (res/drawable/spinner_ab_holo_dark.xml) that varies with configuration!!
    02-26 13:46:03.158: W/Zygote(37): Preloaded drawable resource #0x10804eb (res/drawable/spinner_ab_holo_light.xml) that varies with configuration!!
    02-26 13:46:03.158: W/Zygote(37): Preloaded drawable resource #0x10804f4 (res/drawable-hdpi/spinner_default_holo_dark.9.png) that varies with configuration!!
    02-26 13:46:03.158: W/Zygote(37): Preloaded drawable resource #0x10804f5 (res/drawable-hdpi/spinner_default_holo_light.9.png) that varies with configuration!!
    02-26 13:46:03.158: W/Zygote(37): Preloaded drawable resource #0x10804f6 (res/drawable-hdpi/spinner_disabled_holo_dark.9.png) that varies with configuration!!
    02-26 13:46:03.158: W/Zygote(37): Preloaded drawable resource #0x10804f7 (res/drawable-hdpi/spinner_disabled_holo_light.9.png) that varies with configuration!!
    02-26 13:46:03.158: W/Zygote(37): Preloaded drawable resource #0x10804fa (res/drawable-hdpi/spinner_focused_holo_dark.9.png) that varies with configuration!!
    02-26 13:46:03.158: W/Zygote(37): Preloaded drawable resource #0x10804fb (res/drawable-hdpi/spinner_focused_holo_light.9.png) that varies with configuration!!
    02-26 13:46:03.158: W/Zygote(37): Preloaded drawable resource #0x10804fe (res/drawable-hdpi/spinner_pressed_holo_dark.9.png) that varies with configuration!!
    02-26 13:46:03.158: W/Zygote(37): Preloaded drawable resource #0x10804ff (res/drawable-hdpi/spinner_pressed_holo_light.9.png) that varies with configuration!!
    02-26 13:46:03.168: W/Zygote(37): Preloaded drawable resource #0x108020b (res/drawable-hdpi/cab_background_bottom_holo_dark.9.png) that varies with configuration!!
    02-26 13:46:03.168: W/Zygote(37): Preloaded drawable resource #0x108020e (res/drawable-hdpi/cab_background_top_holo_light.9.png) that varies with configuration!!
    02-26 13:46:03.168: W/Zygote(37): Preloaded drawable resource #0x108020c (res/drawable-hdpi/cab_background_bottom_holo_light.9.png) that varies with configuration!!
    02-26 13:46:03.178: W/Zygote(37): Preloaded drawable resource #0x10802b1 (res/drawable-hdpi/ic_cab_done_holo_dark.png) that varies with configuration!!
    02-26 13:46:03.238: W/Zygote(37): Preloaded drawable resource #0x108020d (res/drawable-hdpi/cab_background_top_holo_dark.9.png) that varies with configuration!!
    02-26 13:46:03.238: W/Zygote(37): Preloaded drawable resource #0x10802b2 (res/drawable-hdpi/ic_cab_done_holo_light.png) that varies with configuration!!
    02-26 13:46:03.238: W/Zygote(37): Preloaded drawable resource #0x10800d3 (res/drawable-hdpi/btn_cab_done_default_holo_dark.9.png) that varies with configuration!!
    02-26 13:46:03.248: W/Zygote(37): Preloaded drawable resource #0x10800d6 (res/drawable-hdpi/btn_cab_done_focused_holo_light.9.png) that varies with configuration!!
    02-26 13:46:03.248: W/Zygote(37): Preloaded drawable resource #0x10800d4 (res/drawable-hdpi/btn_cab_done_default_holo_light.9.png) that varies with configuration!!
    02-26 13:46:03.248: W/Zygote(37): Preloaded drawable resource #0x10800d9 (res/drawable-hdpi/btn_cab_done_pressed_holo_dark.9.png) that varies with configuration!!
    02-26 13:46:03.258: W/Zygote(37): Preloaded drawable resource #0x10800d5 (res/drawable-hdpi/btn_cab_done_focused_holo_dark.9.png) that varies with configuration!!
    02-26 13:46:03.258: W/Zygote(37): Preloaded drawable resource #0x10800da (res/drawable-hdpi/btn_cab_done_pressed_holo_light.9.png) that varies with configuration!!
    02-26 13:46:03.258: W/Zygote(37): Preloaded drawable resource #0x10800d8 (res/drawable/btn_cab_done_holo_light.xml) that varies with configuration!!
    02-26 13:46:03.258: W/Zygote(37): Preloaded drawable resource #0x10800d7 (res/drawable/btn_cab_done_holo_dark.xml) that varies with configuration!!
    02-26 13:46:03.268: W/Zygote(37): Preloaded drawable resource #0x1080038 (res/drawable-hdpi/ic_menu_close_clear_cancel.png) that varies with configuration!!
    02-26 13:46:03.268: W/Zygote(37): Preloaded drawable resource #0x1080322 (res/drawable-hdpi/ic_menu_copy_holo_dark.png) that varies with configuration!!
    02-26 13:46:03.328: W/Zygote(37): Preloaded drawable resource #0x1080323 (res/drawable-hdpi/ic_menu_copy_holo_light.png) that varies with configuration!!
    02-26 13:46:03.338: W/Zygote(37): Preloaded drawable resource #0x1080325 (res/drawable-hdpi/ic_menu_cut_holo_dark.png) that varies with configuration!!
    02-26 13:46:03.338: W/Zygote(37): Preloaded drawable resource #0x1080326 (res/drawable-hdpi/ic_menu_cut_holo_light.png) that varies with configuration!!
    02-26 13:46:03.338: W/Zygote(37): Preloaded drawable resource #0x1080045 (res/drawable-hdpi/ic_menu_more.png) that varies with configuration!!
    02-26 13:46:03.348: W/Zygote(37): Preloaded drawable resource #0x1080337 (res/drawable/ic_menu_moreoverflow_holo_dark.xml) that varies with configuration!!
    02-26 13:46:03.408: W/Zygote(37): Preloaded drawable resource #0x1080338 (res/drawable/ic_menu_moreoverflow_holo_light.xml) that varies with configuration!!
    02-26 13:46:03.408: W/Zygote(37): Preloaded drawable resource #0x108033d (res/drawable-hdpi/ic_menu_paste_holo_dark.png) that varies with configuration!!
    02-26 13:46:03.418: W/Zygote(37): Preloaded drawable resource #0x108033e (res/drawable-hdpi/ic_menu_paste_holo_light.png) that varies with configuration!!
    02-26 13:46:03.418: W/Zygote(37): Preloaded drawable resource #0x1080344 (res/drawable-hdpi/ic_menu_selectall_holo_light.png) that varies with configuration!!
    02-26 13:46:03.418: W/Zygote(37): Preloaded drawable resource #0x1080343 (res/drawable-hdpi/ic_menu_selectall_holo_dark.png) that varies with configuration!!
    02-26 13:46:03.488: W/Zygote(37): Preloaded drawable resource #0x10802b4 (res/drawable/ic_clear.xml) that varies with configuration!!
    02-26 13:46:03.488: W/Zygote(37): Preloaded drawable resource #0x10802b5 (res/drawable-hdpi/ic_clear_disabled.png) that varies with configuration!!
    02-26 13:46:03.488: W/Zygote(37): Preloaded drawable resource #0x10802b7 (res/drawable-hdpi/ic_clear_normal.png) that varies with configuration!!
    02-26 13:46:03.488: W/Zygote(37): Preloaded drawable resource #0x1080352 (res/drawable-hdpi/ic_search.png) that varies with configuration!!
    02-26 13:46:03.499: W/Zygote(37): Preloaded drawable resource #0x10802cd (res/drawable-hdpi/ic_go.png) that varies with configuration!!
    02-26 13:46:03.499: W/Zygote(37): Preloaded drawable resource #0x108035b (res/drawable-hdpi/ic_voice_search.png) that varies with configuration!!
    02-26 13:46:03.558: W/Zygote(37): Preloaded drawable resource #0x108021f (res/drawable-hdpi/dialog_bottom_holo_dark.9.png) that varies with configuration!!
    02-26 13:46:03.569: W/Zygote(37): Preloaded drawable resource #0x1080220 (res/drawable-hdpi/dialog_bottom_holo_light.9.png) that varies with configuration!!
    02-26 13:46:03.569: W/Zygote(37): Preloaded drawable resource #0x1080224 (res/drawable-hdpi/dialog_full_holo_dark.9.png) that varies with configuration!!
    02-26 13:46:03.639: W/Zygote(37): Preloaded drawable resource #0x1080225 (res/drawable-hdpi/dialog_full_holo_light.9.png) that varies with configuration!!
    02-26 13:46:03.639: W/Zygote(37): Preloaded drawable resource #0x108022d (res/drawable-hdpi/dialog_middle_holo_dark.9.png) that varies with configuration!!
    02-26 13:46:03.689: W/Zygote(37): Preloaded drawable resource #0x108022e (res/drawable-hdpi/dialog_middle_holo_light.9.png) that varies with configuration!!

Discussions similaires

  1. Lancer plusieurs activity depuis la même page
    Par cp-08jhu dans le forum Android
    Réponses: 2
    Dernier message: 27/10/2011, 18h15
  2. Partager des données entre plusieurs activities
    Par Christophe Charron dans le forum Android
    Réponses: 9
    Dernier message: 31/08/2011, 22h26
  3. Réponses: 7
    Dernier message: 15/03/2011, 19h51
  4. Création plusieurs activity
    Par user2000 dans le forum Android
    Réponses: 3
    Dernier message: 08/12/2010, 21h46
  5. Réponses: 4
    Dernier message: 18/10/2010, 11h10

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo