Android App mit Python

  • 3 Antworten
  • Letztes Antwortdatum
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

K
Antworten
3
Aufrufe
976
mezzothunder
mezzothunder
M
Antworten
21
Aufrufe
1.368
swa00
swa00
Mr-Fisch
Antworten
5
Aufrufe
972
migi01
migi01
Mr-Fisch
Antworten
8
Aufrufe
1.009
Mr-Fisch
Mr-Fisch
M
Antworten
9
Aufrufe
794
mkuz24
M
Zurück
Oben Unten