Computer >> Máy Tính >  >> Lập trình >> Android

Làm thế nào để truyền dữ liệu từ một phân mảnh này sang một phân mảnh khác trong Android?

Ví dụ này minh họa về Cách truyền dữ liệu từ một phân đoạn này sang một phân mảnh khác trong android

Bước 1 - Tạo một dự án mới trong Android Studio, đi tới Tệp ⇒ Dự án Mới và điền tất cả các chi tiết cần thiết để tạo một dự án mới.

Bước 2 - Thêm mã sau vào res / layout / activity_main.xml.

<?xml version = "1.0" encoding = "utf-8"?>
<LinearLayout xmlns:android = "https://schemas.android.com/apk/res/android"
   android:orientation = "vertical"
   android:layout_width = "match_parent"
   android:layout_height = "match_parent">
   <LinearLayout
      android:id = "@+id/linearlayout01"
      android:layout_width = "fill_parent"
      android:layout_height = "fill_parent"
      android:background = "#ccc"
      android:layout_weight = "1"
      android:orientation = "vertical">
      <fragment android:name = "com.example.myapplication.FirstFragment"
         android:id = "@+id/frag_1"
         android:layout_width = "fill_parent"
         android:layout_height = "fill_parent" />
   </LinearLayout>
   <LinearLayout
      android:id = "@+id/linearlayout02"
      android:layout_width = "fill_parent"
      android:layout_height = "fill_parent"
      android:layout_weight = "1"
      android:background = "#eee"
      android:orientation = "vertical">
      <fragment android:name = "com.example.myapplication.SecondFragment"
         android:id = "@+id/frag_2"
         android:layout_width = "fill_parent"
         android:layout_height = "fill_parent" />
   </LinearLayout>
</LinearLayout>

Trong đoạn mã trên, chúng tôi đã lấy các đoạn để chuyển dữ liệu giữa hai đoạn.

Bước 3 - Thêm mã sau vào src /MainActivity.java

<?xml version = "1.0" encoding = "utf-8"?>
import android.os.Bundle;
import android.support.v4.app.FragmentActivity;
public class MainActivity extends FragmentActivity implements OnButtonPressListener {
   @Override
   public void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.activity_main);
   }
   @Override
   public void onButtonPressed(String msg) {
      // TODO Auto-generated method stub
      SecondFragment Obj = (SecondFragment) getSupportFragmentManager().findFragmentById(R.id.frag_2);
      Obj.onFragmentInteraction(msg);
   }
}

Bước 4 - Thêm mã sau vào src / FirstFragment.java

<?xml version = "1.0" encoding = "utf-8"?>
import android.annotation.SuppressLint;
import android.app.Activity;
import android.content.Context;
import android.os.Bundle;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;

public class FirstFragment extends Fragment{
   @Override
   public View onCreateView(LayoutInflater inflater, ViewGroup container,Bundle savedInstanceState) {
      ViewGroup root = (ViewGroup) inflater.inflate(R.layout.fragment, null);
      init(root);
      return root;
   }
   OnButtonPressListener buttonListener;
   @Override
   public void onAttach(Activity activity) {
      super.onAttach(activity);
      try {
         buttonListener = (OnButtonPressListener) getActivity();
      } catch (ClassCastException e) {
         throw new ClassCastException(activity.toString() + " must implement onButtonPressed");
      }
   }
   void init(ViewGroup root) {
      TextView but = (TextView)root.findViewById(R.id.text);
      but.setOnClickListener(new View.OnClickListener() {
         @Override
         public void onClick(View v) {
            // TODO Auto-generated method stub
            buttonListener.onButtonPressed("Message From First Fragment");
         }
      });
   }
}

Bước 5 - Thêm mã sau vào src / SecondFragment.java

<?xml version = "1.0" encoding = "utf-8"?>
import android.annotation.SuppressLint;
import android.os.Bundle;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.support.v4.app.Fragment;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;

public class SecondFragment extends Fragment {
   TextView textView;
   View view;
   @Nullable
   @Override
   public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
      view = inflater.inflate(R.layout.fragment, container, false);
      return view;
   }
   public void onFragmentInteraction(String uri) {
      Log.d("sai",uri);
      textView = view.findViewById(R.id.text);
      textView.setText(uri);
   }
}

Bước 6 - Thêm mã sau vào res / layout /gment.xml.

<?xml version = "1.0" encoding = "utf-8"?>
<LinearLayout
   xmlns:android = "https://schemas.android.com/apk/res/android"
   android:layout_width = "match_parent"
   android:gravity = "center"
   android:layout_height = "match_parent">
   <TextView
      android:id = "@+id/text"
      android:textSize = "30sp"
      android:text = "Click"
      android:layout_width = "wrap_content"
      android:layout_height = "wrap_content" />
</LinearLayout>

Bước 7 - Thêm mã sau vào src / OnButtonPressListener.java.

<?xml version = "1.0" encoding = "utf-8"?>
public interface OnButtonPressListener {
   public void onButtonPressed(String msg);
}

Hãy thử chạy ứng dụng của bạn. Tôi giả sử bạn đã kết nối thiết bị Di động Android thực tế với máy tính của mình. Để chạy ứng dụng từ android studio, hãy mở một trong các tệp hoạt động của dự án của bạn và nhấp vào biểu tượng Chạy từ thanh công cụ. Chọn thiết bị di động của bạn làm tùy chọn, sau đó kiểm tra thiết bị di động sẽ hiển thị màn hình mặc định của bạn -

Làm thế nào để truyền dữ liệu từ một phân mảnh này sang một phân mảnh khác trong Android?

Bây giờ hãy nhấp vào chế độ xem đoạn văn bản đầu tiên, nó sẽ hiển thị kết quả như hình dưới đây -

Làm thế nào để truyền dữ liệu từ một phân mảnh này sang một phân mảnh khác trong Android?