當前位置: 首頁>>代碼示例>>Java>>正文


Java Fragment.getView方法代碼示例

本文整理匯總了Java中android.app.Fragment.getView方法的典型用法代碼示例。如果您正苦於以下問題:Java Fragment.getView方法的具體用法?Java Fragment.getView怎麽用?Java Fragment.getView使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在android.app.Fragment的用法示例。


在下文中一共展示了Fragment.getView方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: onAttachedToWindow

import android.app.Fragment; //導入方法依賴的package包/類
@Override
public void onAttachedToWindow() {
    super.onAttachedToWindow();
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
        Fragment fragment = getFragmentManager().findFragmentById(android.R.id.content);
        if (fragment instanceof PreferenceFragment && fragment.getView() != null) {
            // Set list view padding to 0 so dividers are the full width of the screen.
            fragment.getView().findViewById(android.R.id.list).setPadding(0, 0, 0, 0);
        }
    }
}
 
開發者ID:rkshuai,項目名稱:chromium-for-android-56-debug-video,代碼行數:12,代碼來源:Preferences.java

示例2: Overlay

import android.app.Fragment; //導入方法依賴的package包/類
/**
 * Must be created from the Fragment onViewCreated() method
 * @param fragment
 */
public Overlay(Fragment fragment) {

    if (!fragment.isAdded()) {
        throw new IllegalStateException("Overlay must be created once the fragment is added!");
    }

    mContext = fragment.getActivity();
    ViewGroup fragmentView = (ViewGroup)fragment.getView();
    if (fragmentView==null) {
        throw new IllegalStateException("Overlay must be created once the fragment has its view created!");
    }

    int parentViewId = -1;
    if (fragment instanceof BrowseFragment) {
        parentViewId = R.id.browse_frame;
    } else if (fragment instanceof MyVerticalGridFragment) {
        parentViewId = R.id.browse_dummy;
    } else if (fragment instanceof DetailsFragment) {
        parentViewId = R.id.details_fragment_root;
    } else if (fragment instanceof GuidedStepFragment) {
        parentViewId = R.id.guidedstep_background_view_root;
    } else {
        throw new IllegalStateException("Overlay is not compatible with this fragment: "+fragment);
    }

    ViewGroup parentView = (ViewGroup)fragmentView.findViewById(parentViewId);
    if (parentView==null) {
        throw new IllegalStateException("parentView not found! Maybe IDs in the leanback library have been changed?");
    }

    LayoutInflater.from(mContext).inflate(R.layout.leanback_overlay, parentView);
    mOverlayRoot = parentView.findViewById(R.id.overlay_root);
    mScanProgress = new ScannerAndScraperProgress(mContext, mOverlayRoot);
    mClock = new Clock(mContext, mOverlayRoot);
}
 
開發者ID:archos-sa,項目名稱:aos-Video,代碼行數:40,代碼來源:Overlay.java

示例3: switchFragment

import android.app.Fragment; //導入方法依賴的package包/類
public static void switchFragment(FragmentManager fragmentManager, Fragment fragment, int containViewId, boolean addToBackStack)
	{
//		fragments.add(new WeakReference<Fragment>(fragment));
//		
//		FragmentTransaction transaction = fragmentManager.beginTransaction();
//		transaction.replace(containViewId, fragment);
////		transaction.replace(containViewId, fragment, fragment.getClass().toString());
//		if (addToBackStack)
//		{
//			backStackIndex++;
//			String key = "" + backStackIndex;
//			transaction.addToBackStack(key);
//			backStackKeys.add(key);
//		}
//		else
//		{
////			transaction.addToBackStack(null);
//		}
//		
//		transaction.commit();
		
		boolean isContain = false;
		for (int i = 0; i < fragments.size(); i++){
			if (fragments.get(i).get() != null && fragments.get(i).get().getClass() == fragment.getClass()){
				isContain = true;
				break;
			}
		}
		if (!isContain){
			fragments.add(new WeakReference<Fragment>(fragment));
		}
		
		if (fragment.getView() != null){
			fragment.getView().setClickable(true);
		}
		
		FragmentTransaction transaction = fragmentManager.beginTransaction();
		if (addToBackStack)
		{
			backStackIndex++;
			String key = "" + backStackIndex;
			transaction.addToBackStack(key);
			backStackKeys.add(key);
			
		}
		else
		{
//			transaction.addToBackStack(null);
		}
		transaction.replace(containViewId, fragment, ""+backStackIndex);
		transaction.commitAllowingStateLoss();
	}
 
開發者ID:WowWeeLabs,項目名稱:CHIP-Android-SDK,代碼行數:53,代碼來源:FragmentHelper.java


注:本文中的android.app.Fragment.getView方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。