Android学习->基础入门篇

一、Android开发学习基础
学习Android开发首先要学过java这门面向对象的语言,(有些包括类、对象、接口、监听器、包、内部类、匿名内部类、泛型类等基本概念会在其中经常体现和使用)。若学过但忘记了没关系,只要有这个基础就行。

二、第一个Android应用的创建
本人是以Android studio这个集成开发环境来开发Android应用的。(没有的可以自己到官网下载,建议下最新版本。)
以下是一个简单Android应用的创建步骤:
1、新建一个项目,这个按提示来就行
2、设计用户界面,布局XML
3、应用组件,其中包括引用组件和设置监听器
4、run,就可以在模拟器上跑起来自己的应用了。

三、源码分享

package com.example.admin.geoquiz;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.Toast;

public class QuizActivity extends AppCompatActivity {
    private Button mTrueButton;
    private Button mFalseButton;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_quiz);
        mTrueButton=(Button)findViewById(R.id.true_button);
        mTrueButton.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Toast.makeText(QuizActivity.this,R.string.incorrect_toast,Toast.LENGTH_SHORT).show();
            }
        });
        mFalseButton=(Button)findViewById(R.id.false_button);
        mFalseButton.setOnClickListener(new View.OnClickListener() {
           @Override
           public void onClick(View v) {
                Toast.makeText(QuizActivity.this,R.string.correct_toast,Toast.LENGTH_SHORT).show();
           }
       });
    }
}

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:orientation="vertical" >
<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:padding="24dp"
    android:text="@string/question_text" />
<LinearLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="horizontal" >
    <Button
        android:id="@+id/true_button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/true_button" />
    <Button
        android:id="@+id/false_button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/false_button" />
LinearLayout>
LinearLayout>

    <string name="app_name">GeoQuizstring>
    <string name="question_text">Constantinople is the largest city in Turkey.string>
    <string name="true_button">TRUEstring>
    <string name="false_button">FALSEstring>
    <string name="correct_toast">Correct!string>
    <string name="incorrect_toast">Incorrect!string>

全部代码之后给出zip包

效果展示:
Android学习->基础入门篇_第1张图片

你可能感兴趣的:(Android学习)