Android:如何使用调试器查看数组内容

时间:2017-04-21 13:22:34

标签: android android-studio debugging

我希望看到使用调试器的数组内容让我说我有一个数组,并且在for循环中我向数组添加更多项目如何才能看到数组中当前值和更新后的值

     imageArray[i] = url+logo;
     nameArray[i] = name;

当面对变量或数组时,它意味着什么:'这个'不可用image is here

1 个答案:

答案 0 :(得分:0)

好的以下是一步一步:

步骤1:在数组下面添加调试器,如图所示

Add debugger below the array as shown

步骤2:选择阵列并右键单击它,然后选择评估表达式,如图所示

Select the array and right click on it and select Evaluate Expression as shown

步骤3:然后按回车键,您将看到数组的内容

Then press enter you will see the content of the array