/** Parse attributes during inflation from a view hierarchy into the arguments we handle. */
    @Override
    public void onInflate(SupportActivity activity, AttributeSet attrs, Bundle savedInstanceState) {
      super.onInflate(activity, attrs, savedInstanceState);

      TypedArray a = activity.obtainStyledAttributes(attrs, R.styleable.FragmentArguments);
      mLabel = a.getText(R.styleable.FragmentArguments_android_label);
      a.recycle();
    }