summaryrefslogtreecommitdiffstats
path: root/lib/libUPnP/Platinum/Source/Platform/Android/samples/sample-upnp/src/com/plutinosoft/platinum/sample/PlatinumUPnPActivity.java
blob: baa3c5c119f0e24a4e80614f3dace513404c276c (plain)
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
package com.plutinosoft.platinum.sample;

import android.app.Activity;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.Button;

import com.plutinosoft.platinum.UPnP;

public class PlatinumUPnPActivity extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        
        startStopButton = (Button)findViewById(R.id.startStopButton);
        startStopButton.setEnabled(true);
        
        upnp = new UPnP();
    }
    
    public void onStartStopButtonClicked(View button) {
        if (isRunning) {
            upnp.stop();
            isRunning = false;
            startStopButton.setText("Start`");
        } else {
            int result = upnp.start();
            Log.d(TAG, "upnp.Start returned: " + result);
            if (result == 0) {
                isRunning = true;
                startStopButton.setText("Stop");
            }
        }
    }

    private final String TAG = PlatinumUPnPActivity.this.getClass().getName();
    private UPnP  upnp;
    private boolean isRunning;
    
    private Button   startStopButton;
}