Android - การนำทาง
ในบทนี้เราจะเห็นว่าคุณสามารถให้การนำทางไปข้างหน้าและข้างหลังระหว่างแอปพลิเคชันได้อย่างไร ก่อนอื่นเราจะดูวิธีจัดเตรียมการนำทางในแอปพลิเคชัน
การจัดเตรียมการนำทาง
การนำทางขึ้นจะทำให้แอปพลิเคชันของเราย้ายไปยังกิจกรรมก่อนหน้าจากกิจกรรมถัดไป ก็ทำได้แบบนี้
ในการใช้ Up navigation ขั้นตอนแรกคือการประกาศว่ากิจกรรมใดเป็นพาเรนต์ที่เหมาะสมสำหรับแต่ละกิจกรรม คุณสามารถทำได้โดยระบุparentActivityNameแอตทริบิวต์ในกิจกรรม ไวยากรณ์ได้รับด้านล่าง -
android:parentActivityName = "com.example.test.MainActivity"
หลังจากนั้นคุณต้องโทร setDisplayHomeAsUpEnabled วิธีการของ getActionBar()ในเมธอด onCreate ของกิจกรรม การดำเนินการนี้จะเปิดใช้งานปุ่มย้อนกลับในแถบการทำงานด้านบน
getActionBar().setDisplayHomeAsUpEnabled(true);
สิ่งสุดท้ายที่คุณต้องทำคือการลบล้าง onOptionsItemSelectedวิธี. เมื่อผู้ใช้กดมันกิจกรรมของคุณจะได้รับสายเรียกเข้า onOptionsItemSelected () รหัสสำหรับการดำเนินการคือandroid.R.id.homeไวยากรณ์ของมันได้รับด้านล่าง -
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case android.R.id.home:
NavUtils.navigateUpFromSameTask(this);
return true;
}
}
ปุ่มย้อนกลับของอุปกรณ์
เนื่องจากคุณได้เปิดใช้งานปุ่มย้อนกลับเพื่อนำทางภายในแอปพลิเคชันของคุณคุณอาจต้องการวางฟังก์ชันปิดแอปพลิเคชันไว้ในปุ่มย้อนกลับของอุปกรณ์
สามารถทำได้โดยการลบล้าง onBackPressed แล้วโทร moveTaskToBack และ finishวิธี. ไวยากรณ์ได้รับด้านล่าง -
@Override
public void onBackPressed() {
moveTaskToBack(true);
MainActivity2.this.finish();
}
นอกเหนือจากเมธอด setDisplayHomeAsUpEnabled นี้ยังมีเมธอดอื่น ๆ ในคลาส ActionBar API ตามรายการด้านล่าง -
ซีเนียร์ No | วิธีการและคำอธิบาย |
---|---|
1 |
addTab(ActionBar.Tab tab, boolean setSelected) วิธีนี้จะเพิ่มแท็บสำหรับใช้ในโหมดการนำทางแบบแท็บ |
2 |
getSelectedTab() วิธีนี้จะส่งคืนแท็บที่เลือกในปัจจุบันหากอยู่ในโหมดการนำทางแบบแท็บและมีอย่างน้อยหนึ่งแท็บอยู่ |
3 |
hide() วิธีนี้จะซ่อน ActionBar หากกำลังแสดงอยู่ |
4 |
removeAllTabs() วิธีนี้จะลบแท็บทั้งหมดออกจากแถบการทำงานและยกเลิกการเลือกแท็บปัจจุบัน |
5 |
selectTab(ActionBar.Tab tab) วิธีนี้เลือกแท็บที่ระบุ |
ตัวอย่าง
ตัวอย่างด้านล่างแสดงให้เห็นถึงการใช้การนำทาง เป็นแอปพลิเคชันพื้นฐานที่ช่วยให้คุณสามารถนำทางภายในแอปพลิเคชันของคุณ
ในการทดลองกับตัวอย่างนี้คุณต้องเรียกใช้สิ่งนี้บนอุปกรณ์จริงหรือในโปรแกรมจำลอง
ขั้นตอน | คำอธิบาย |
---|---|
1 | คุณจะใช้ Android studio เพื่อสร้างแอปพลิเคชัน Android ภายใต้แพ็คเกจ com.example.sairamkrishna.myapplication |
2 | แก้ไขไฟล์ src / MainActivity.java เพื่อเพิ่มรหัสกิจกรรม |
3 | สร้างกิจกรรมใหม่โดยใช้ชื่อ second_main.java และแก้ไขเพื่อเพิ่มรหัสกิจกรรม |
4 | แก้ไขไฟล์ XML เค้าโครง res / layout / activity_main.xml เพิ่มคอมโพเนนต์ GUI หากจำเป็น |
5 | แก้ไขไฟล์ XML เค้าโครง res / layout / second.xml เพิ่มคอมโพเนนต์ GUI หากจำเป็น |
6 | แก้ไข AndroidManifest.xml เพื่อเพิ่มรหัสที่จำเป็น |
7 | เรียกใช้แอปพลิเคชันและเลือกอุปกรณ์ Android ที่ใช้งานอยู่และติดตั้งแอปพลิเคชันบนแอปพลิเคชันและตรวจสอบผลลัพธ์ |
นี่คือเนื้อหาของ src/MainActivity.java.
package com.example.sairamkrishna.myapplication;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
public class MainActivity extends Activity {
Button b1;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
b1 = (Button) findViewById(R.id.button);
b1.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent in=new Intent(MainActivity.this,second_main.class);
startActivity(in);
}
});
}
}
นี่คือเนื้อหาของ src/second_main.java.
package com.example.sairamkrishna.myapplication;
import android.app.Activity;
import android.os.Bundle;
import android.webkit.WebView;
import android.webkit.WebViewClient;
/**
* Created by Sairamkrishna on 4/6/2015.
*/
public class second_main extends Activity {
WebView wv;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main_activity2);
wv = (WebView) findViewById(R.id.webView);
wv.setWebViewClient(new MyBrowser());
wv.getSettings().setLoadsImagesAutomatically(true);
wv.getSettings().setJavaScriptEnabled(true);
wv.loadUrl("http://www.tutorialspoint.com");
}
private class MyBrowser extends WebViewClient {
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
view.loadUrl(url);
return true;
}
}
}
นี่คือเนื้อหาของ activity_main.xml.
ในโค้ดด้านล่าง abcระบุโลโก้ของ tutorialspoint.com
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
android:layout_height="match_parent" android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context=".MainActivity"
android:transitionGroup="true">
<TextView android:text="Navigation example" android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/textview"
android:textSize="35dp"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Tutorials point"
android:id="@+id/textView"
android:layout_below="@+id/textview"
android:layout_centerHorizontal="true"
android:textColor="#ff7aff24"
android:textSize="35dp" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/imageView"
android:src="@drawable/abc"
android:layout_below="@+id/textView"
android:layout_centerHorizontal="true"
android:theme="@style/Base.TextAppearance.AppCompat" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="first page"
android:id="@+id/button"
android:layout_below="@+id/imageView"
android:layout_alignRight="@+id/textView"
android:layout_alignEnd="@+id/textView"
android:layout_marginTop="61dp"
android:layout_alignLeft="@+id/imageView"
android:layout_alignStart="@+id/imageView" />
</RelativeLayout>
นี่คือเนื้อหาของ activity_main_activity2.xml.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent"
android:weightSum="1">
<WebView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/webView"
android:layout_gravity="center_horizontal"
android:layout_weight="1.03" />
</LinearLayout>
นี่คือเนื้อหาของ Strings.xml.
<resources>
<string name="app_name">My Application</string>
</resources>
นี่คือเนื้อหาของ AndroidManifest.xml.
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.sairamkrishna.myapplication" >
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".second_main"></activity>
</application>
</manifest>
มาลองเรียกใช้แอปพลิเคชันของคุณ ฉันถือว่าคุณได้สร้างไฟล์AVDในขณะที่ทำการตั้งค่าสภาพแวดล้อม ในการเรียกใช้แอปจาก Android studio ให้เปิดไฟล์กิจกรรมของโครงการแล้วคลิก
ตอนนี้เพียงกดปุ่มและหน้าจอต่อไปนี้จะแสดงให้คุณเห็น
กิจกรรมที่สองมี webview ซึ่งได้เปลี่ยนเส้นทางไปยัง tutorialspoint.com ดังที่แสดงด้านล่าง