Mục đích của bài này là khi bạn nhấp vào Button About trong màn hình của bài trước. bạn sẽ show ra thông tin về cần thiết về game của bạn.
2 vấn đề chính :
1. Định nghĩa 1 Activity mới và khởi động nó.
2. Sử dụng lớp AlertDialog và hiển thị nó lên.
Thực hiện :
Bạn vào res/layout tạo 1 file xml About.xml như sau :
- <?xml version="1.0" encoding="utf-8"?>
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:background="@color/backgound"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="10dip" >
<TextView
android:id="@+id/about_content"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/about_text" />
</ScrollView>
Sau đó bạn vào file strings.xml thêm vào nội dung sau :
- <string name="about_title">About Android Sudoku</string>
<string name="about_text">Sudoku dc phat trien boi Sungha-CN08A-GTVT</string>
Vậy là bạn đã tạo xong nội dung và layout cho About.
Bây giờ bạn vào tạo 1 class About.java bạn viết code như sau :
- package org.example.Sudoku;
import android.app.Activity;
import android.os.Bundle;
public class About extends Activity{
@Override
protected void onCreate(Bundle savedInstanceState){
super.onCreate(savedInstanceState);
setContentView(R.layout.about);
}
}
Trong class Sudoku.java bạn viết code như sau :
- package org.example.Sudoku;
import android.app.Activity;
import android.app.AlertDialog;
import android.os.Bundle;
import android.content.DialogInterface;
import android.content.Intent;
import android.util.Log;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.Menu;
import android.view.MenuInflater;
import android.view.MenuItem;
public class Sudoku extends Activity implements OnClickListener {
/** Called when the activity is first created. */
private static final String TAG = "Sudoku" ;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
//Set up clicks listener all button
View continueButton = findViewById(R.id.continue_button);
continueButton.setOnClickListener(this);
View newButton = findViewById(R.id.new_button);
newButton.setOnClickListener(this);
View aboutButton = findViewById(R.id.about_button);
aboutButton.setOnClickListener(this);
View exitButton = findViewById(R.id.exit_button);
exitButton.setOnClickListener(this);
}
///////////////////////////////////////
- public void onClick(View v) {
switch (v.getId()) {
case R.id.about_button:
Intent i = new Intent(this, About.class);
startActivity(i);
break;
// More buttons go here (if any) ...
}
}
Trong AndroidManifest.xml bạn đăng kí bằng dòng lệnh sau :
- <activity android:name=".About"
android:label="@string/about_title" >
</activity>
Tạo Theme cho layout :
Vào trang AndroidManifest.xml them đoạn code sau :
- <activity android:name=".About"
android:label="@string/about_title"
android:theme="@android:style/Theme.Dialog" >
</activity>
Làm đúng các bước trên các bạn có kết quả sau :