2012-03-10 7 views
1

다양한 간격으로 여러 이미지를 표시하고 싶습니다. 일정 시간마다 사진을 보여줄 수는 있지만 같은 간격으로 다양한 간격으로 보여줄 수 있습니까? 예를 들어, 첫 번째 이미지는 5 초, 두 번째 이미지는 7 초, 세 번째 이미지는 4 초 등으로 표시됩니다. 아이디어 및/또는 예를 들면?Android : 다양한 간격으로 이미지를 표시하는 방법은 무엇입니까?

public class WCourse extends Activity implements OnClickListener, OnTouchListener, OnCompletionListener, OnBufferingUpdateListener{ 

//mp3 player 
private ImageButton buttonPlayPause; 
private SeekBar seekBarProgress; 
public EditText editTextSongURL; 


public static TextView TextViewTopTitle; 

//Slider 
public int currentimageindex=0; 
Timer timer; 
TimerTask task; 
ImageView slidingimage; 

//images ids 
private int[] IMAGE_IDS = { 
     R.drawable.c5_d1, R.drawable.c5_d2, R.drawable.c5_d3, R.drawable.c5_d4, R.drawable.c5_d5, 
     R.drawable.c5_d6, R.drawable.c5_d7, R.drawable.c5_d8, R.drawable.c5_d9, R.drawable.c5_d10, 
     R.drawable.c5_d11, R.drawable.c5_d12, R.drawable.c5_d13, R.drawable.c5_d14, R.drawable.c5_d15, 
     R.drawable.c5_d16, R.drawable.c5_d17, R.drawable.c5_d18, R.drawable.c5_d19, R.drawable.c5_d20, 
     R.drawable.c5_d21, R.drawable.c5_d22, R.drawable.c5_d23, R.drawable.c5_d24, R.drawable.c5_d25, 
     R.drawable.c5_d26, R.drawable.c5_d27, R.drawable.c5_d28, R.drawable.c5_d29, R.drawable.c5_d30, 
     R.drawable.c5_d31, R.drawable.c5_d32, R.drawable.c5_d33, R.drawable.c5_d34, R.drawable.c5_d35, 
     R.drawable.c5_d36, R.drawable.c5_d37, R.drawable.c5_d38, R.drawable.c5_d39, R.drawable.c5_d40, 
     R.drawable.c5_d41, R.drawable.c5_d42, R.drawable.c5_d43, R.drawable.c5_d44, R.drawable.c5_d45, 
     R.drawable.c5_d46 
    }; 

//player  
private MediaPlayer mediaPlayer; 
private int mediaFileLengthInMilliseconds; // this value contains the song duration in milliseconds. Look at getDuration() method in MediaPlayer class 

//slider handler 
private final Handler handler = new Handler(); 

/** Called when the activity is first created. 
* @param <MyCount>*/ 
@Override 
public void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.watch_course); 

    //intent 
    TextViewTopTitle = (TextView) findViewById(R.id.TextViewTopTitle); 
    Bundle bundle = getIntent().getExtras(); 
    TextViewTopTitle.setText(bundle.getString("RESULT2")+" "); 
    getText(bundle.getString("RESULT2")); 

    final Handler mHandler = new Handler();  
    initView(); 

    final Runnable mUpdateResults = new Runnable() { 
     public void run() { 

      AnimateandSlideShow(); 

     } 
    }; 
    final int delay = 5000; // delay for xx sec.  

    final long period = 11000;//repet every xx seconds  
    Timer timer = new Timer(); 
    timer.scheduleAtFixedRate(new TimerTask() { 

    public void run() { 

     mHandler.post(mUpdateResults); 
    } 

}, delay, period);}  
// Helper method to start the animation on the splash screen 
    private void AnimateandSlideShow() { 
slidingimage = (ImageView)findViewById(R.id.ImageView3_Left); 
slidingimage.setImageResource(IMAGE_IDS[currentimageindex%IMAGE_IDS.length]); 
currentimageindex++; 
slidingimage.getAnimation();} 

정말 도움을 주셔서 감사합니다 :

내가하지만, 동일한 간격으로 사진을 보여주는거야 내 활동이다.

+0

왜 현재 특정 값 대신 무작위로 생성 된 번호를 사용하지 않습니까? –

+0

예 : Brandt? – JLouis

+0

답변을 다시 시작합니다. - 다른 사람의 일을하는 데 정말로 종사하고 있지는 않지만, 생각 프로세스를 통해 일하는 것을 완전히 멈추었습니다. - 그렇다면 기초가 떨어져서 그렇게 말하면 나무에 대한 숲이 없어 졌다고 생각합니다. –

답변

1
 public void run(){ 
     try{          
      Thread.sleep(4000);     
     }        
     catch(Exception ex){ 

      Log.e("Welcome Exception :",ex.toString()); 
     }      
     mHandler.sendEmptyMessage(0);  
    } 
0

왜 현재 특정 값 대신 임의로 생성 된 숫자를 사용하지 않습니까?

말 :

final int delay = 5000; // delay for xx sec.  

final long period = 11000;//repet every xx seconds 

? oversite 또는 어쩌면 내가 이것을 잘못 읽고있는 것 같습니다.

관련 문제