Câu hỏi được gắn thẻ «android-fragmentactivity»



10
startActivityForResult () từ một Fragment và kết thúc Hoạt động con, không gọi onActivityResult () trong Fragment
FirstActivity.Javacó một FragmentA.Javacuộc gọi mà startActivityForResult(). SecondActivity.Javagọi finish()nhưng onActivityResultkhông bao giờ được gọi mà được viết trong FragmentA.Java. FragmentA.Java mã: @Override public void onActivityCreated(Bundle savedInstanceState) { super.onActivityCreated(savedInstanceState); // some code Intent i = new Intent(getActivity(), SecondActivity.class); i.putExtra("helloString", helloString); getActivity().startActivityForResult(i, 1); } @Override public void onActivityResult(int requestCode, int resultCode, Intent data) …


18
Làm cách nào tôi có thể truy cập getSupportFragmentManager () trong một đoạn?
Tôi có một FragmentActivity và tôi muốn sử dụng một mảnh bản đồ bên trong nó. Tôi gặp sự cố khi yêu cầu trình quản lý phân đoạn hỗ trợ truy cập. if (googleMap == null) { googleMap = ((SupportMapFragment) getSupportFragmentManager() .findFragmentById(R.id.map1)).getMap(); // check if map is created successfully or …

7
FragmentPagerAdapter getItem không được gọi
Tôi không thể sử dụng lại phân đoạn trong FragmentPagerAdapter .. Sử dụng phương thức killItem (), Nó đang xóa phân đoạn nhưng vẫn không được gọi lại là getItem ()..Chỉ có 2-3 hình ảnh nên tôi đang sử dụng FragmentPagerAdapter Thay vì FragmentStatePagerAdapter .. public class ExamplePagerAdapter extends FragmentPagerAdapter …



21
Đặt tiêu đề thanh hành động tùy chỉnh từ phân mảnh
Trong Chính của tôi FragmentActivity, tôi thiết lập ActionBartiêu đề tùy chỉnh của mình như sau: LayoutInflater inflator = (LayoutInflater) this .getSystemService(Context.LAYOUT_INFLATER_SERVICE); View v = inflator.inflate(R.layout.custom_titlebar, null); TextView tv = (TextView) v.findViewById(R.id.title); Typeface tf = Typeface.createFromAsset(this.getAssets(), "fonts/capsuula.ttf"); tv.setTypeface(tf); tv.setText(this.getTitle()); actionBar.setCustomView(v); Điều này hoạt động hoàn hảo. Tuy nhiên, một khi …
Khi sử dụng trang web của chúng tôi, bạn xác nhận rằng bạn đã đọc và hiểu Chính sách cookieChính sách bảo mật của chúng tôi.
Licensed under cc by-sa 3.0 with attribution required.