Android - 单击按钮时在mysql数据库中插入INSERT

时间:2013-10-30 14:54:14

标签: android mysql database

这是问题所在: 视图中有一个按钮。当用户单击该按钮时,将列插入到表中。 我已经阅读了将mysql连接到android的教程,但我仍然无法解决这个问题。我在谷歌搜索但仍然无法找到。我希望有解决方案来完成我的问题...

查看主要内容     

<ImageView
    android:id="@+id/MAIN_tittle"
    android:layout_width="300dp"
    android:layout_height="115dp"
    android:scaleX="1.2"
    android:scaleY="1.2"
    android:layout_alignParentTop="true"
    android:layout_centerHorizontal="true"
    android:src="@drawable/main_tittle" />

<ImageButton
    android:id="@+id/MAIN_play"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:scaleX="0.7"
    android:scaleY="0.7"
    android:layout_below="@+id/MAIN_tittle"
    android:layout_centerHorizontal="true"
    android:background="@android:color/transparent"
    android:src="@drawable/main_play" />

CLASS MAIN

public class MainMenu extends Activity {
ImageButton playButton = (ImageButton) findViewById(R.id.MAIN_play);
ImageButton optionsButton = (ImageButton) findViewById(R.id.MAIN_options);
ImageButton quitButton = (ImageButton) findViewById(R.id.MAIN_quit);
ImageButton facebookButton = (ImageButton) findViewById(R.id.MAIN_facebook);
ImageButton twitterButton = (ImageButton) findViewById(R.id.MAIN_twitter);

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main_menu);
    //PROBLEM IN MANIFEST
    play(); 
    options(); 
    quit(); 
    goToFacebook(); 
    rating();   
}

private void play() {
    playButton.setOnClickListener( new View.OnClickListener() { 
        public void onClick(View v) 
        {  startActivity(new Intent("com.example.creativesnakeladder.CharactersChoice"));
            //this is area of codes which to insert a column in mysql database
        } 
    });
}

1 个答案:

答案 0 :(得分:1)

Android使用SQLite来管理传统意义上的“磁盘上”持久性。这是package summary以及recent tutorial。一旦你理解了基础知识,你就可以继续使用类似ORMLite的东西来为你抽象出一些样板。