Announcement

Collapse
No announcement yet.

Giải thích đoạn code Adroid

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Giải thích đoạn code Adroid

    giúp em với anh chị ơi!!


    if ((firstPicture == ArrayImagesInGame[position])&& (firstPosition != position)) {
    showImages[firstPosition] = R.drawable.same;
    showImages[position] = R.drawable.same;
    isSame = true;

    }

    if (!isSame) {
    showImages[firstPosition] = R.drawable.up;
    showImages[position] = R.drawable.up;
    }
    giải thích giúp em đoạn code android với !!!
    em cảm ơn nhé!!

  • #2
    Xin tài liệu Visual c++!!!

    Hiện tại em đang làm bài tập lập trình game Visual c++ 2010 Express. Mà em chưa có tài liệu về game nên em xin anh chị cho em tài liệu để em học tập và tham
    khảo để em có thêm kiến thức.
    Trong lúc chờ đợi, em xin cảm ơn anh chị rất nhiều!!!!:funny::funny:

    Comment


    • #3
      nếu firstPicture == ArrayImagesInGame[position] (không biết phải bitmap hay j) và firstPosition != position (vị trí đầu # vị trí hiện tại xét ) thì

      gắn hình trong drawable tên same gì đó vô mảng showImages[] tại 2 vị trí đầu và hiên tại
      showImages[firstPosition] = R.drawable.same;
      showImages[position] = R.drawable.same;

      và biến
      isSame = true;

      nếu isSame = false
      thì gắn hình up
      showImages[firstPosition] = R.drawable.up;
      showImages[position] = R.drawable.up
      hiện tại chỉ hiểu có thế :kiss:
      Mobile Developer

      Comment


      • #4
        Originally posted by nguyenvanvuibk View Post
        giúp em với anh chị ơi!!


        if ((firstPicture == ArrayImagesInGame[position])&& (firstPosition != position)) {
        showImages[firstPosition] = R.drawable.same;
        showImages[position] = R.drawable.same;
        isSame = true;

        }

        if (!isSame) {
        showImages[firstPosition] = R.drawable.up;
        showImages[position] = R.drawable.up;
        }
        giải thích giúp em đoạn code android với !!!
        em cảm ơn nhé!!
        đoạn code này rõ ràng lắm rồi mà
        Hãy là chính mình!

        Comment


        • #5
          Originally posted by nguyenvanvuibk View Post
          giúp em với anh chị ơi!!


          if ((firstPicture == ArrayImagesInGame[position])&& (firstPosition != position)) {
          showImages[firstPosition] = R.drawable.same;
          showImages[position] = R.drawable.same;
          isSame = true;

          }

          if (!isSame) {
          showImages[firstPosition] = R.drawable.up;
          showImages[position] = R.drawable.up;
          }
          giải thích giúp em đoạn code android với !!!
          em cảm ơn nhé!!

          Có : firsPicture là cái ảnh, firstPosition là vị trí trong mảng ArrayImagesInGame
          Nếu firsPicture là cái ảnh tại vị trí position trong mảng ArrayImagesInGame và firstPosition khác position ( nghĩa là 2 ảnh giống nhau mà khác vị trí á - ví dụ ArrayImagesInGame[1]==ArrayImagesInGame[3] không tính trường hợp ArrayImagesInGame[1]==ArrayImagesInGame[1] hay ArrayImagesInGame[2]==ArrayImagesInGame[2]..... )
          -->thì hiển thị tấm ảnh R.drawable.same thay vô vị trí của firstPosition và position , ngược lại thì gắn R.drawable.up vô 2 thằng đó.

          Im a british accent lover

          Comment


          • #6
            Cảm ơn anh nhé!!!

            Em cảm ơn anh lê Tuấn Anh nhé!!!:haha:

            Comment

            LHQC

            Collapse
            Working...
            X