本文整理汇总了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);
}
}
}
示例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);
}
示例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();
}