Android App mit Python

C

coole-news

Neues Mitglied
0
Hi

Ich bin nun daran mein 1. Android App zu entwickeln.
Wie im Titel erwähnt sollte das ganze mit Python programmiert werden.
So sieht die ScriptActivity aus.
Code:
/*
 * Copyright (C) 2010 Google Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
 * use this file except in compliance with the License. You may obtain a copy of
 * the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations under
 * the License.
 */

package com.dummy.fooforandroid;
import android.app.Activity;
import android.os.Bundle;
import android.view.View.OnClickListener;
import android.widget.Button;

public class ScriptActivity extends Activity {
	private Button onButton;
	
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        onButton = (Button)findViewById(R.id.toggleButton1);
        onButton.setOnClickListener((OnClickListener) this);
        
        
    }
}

Ich möchte, dass wenn man auf den toggleButton klickt das Python Script im Ordner R.raw.script.py.
Wenn ihr mehr infos braucht fragt.

Ps: Bin erst 13. Verständnis für blöde Frage;)
 
a) Ja, ich habe erst begonnen zu Programmieren und hab keine Ahnung von Java;(
b) Das Script sollte danach alle SMS in eine CSV Datei exportieren.
 

Ähnliche Themen

B
Antworten
4
Aufrufe
470
bb321
B
FabianDev
Antworten
5
Aufrufe
548
swa00
swa00
D
Antworten
23
Aufrufe
2.510
Data2006
D
Zurück
Oben Unten