gpt4 book ai didi

java - Android: ExpandAnimation With Fragment

转载 作者:太空狗 更新时间:2023-10-29 13:36:20 24 4
gpt4 key购买 nike

我正在为我的项目使用这个例子
https://github.com/Udinic/SmallExamples/tree/master/ExpandAnimationExample
但是当我点击任何项目时,我崩溃了!
我的代码:

public class AccountContents extends Fragment {
private AccountItem[] rootContents;
private ListView ls1;
private CArrayAdapter adapter;
private Context context;

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {

final View V = inflater.inflate(R.layout.account_contents, container,
false);
context = getActivity().getApplicationContext();
rootContents = fourshared.rootContents;
adapter = new CArrayAdapter(context, rootContents);
ls1 = (ListView) V.findViewById(R.id.AC_listView);
ls1.setAdapter(adapter);
ls1.setOnItemClickListener(new AdapterView.OnItemClickListener() {
public void onItemClick(AdapterView<?> parent, final View view,
int position, long id) {

View toolbar = V.findViewById(R.id.toolbar);
ExpandAnimation expandAni = new ExpandAnimation(toolbar, 500);
toolbar.startAnimation(expandAni);
}
});
return V;
}
}

扩展动画.java :

public class ExpandAnimation extends Animation {
private View mAnimatedView;
private LayoutParams mViewLayoutParams;
private int mMarginStart, mMarginEnd;
private boolean mIsVisibleAfter = false;
private boolean mWasEndedAlready = false;

/**
* Initialize the animation
* @param view The layout we want to animate
* @param duration The duration of the animation, in ms
*/
public ExpandAnimation(View view, int duration) {

setDuration(duration);
mAnimatedView = view;
mViewLayoutParams = (LayoutParams) view.getLayoutParams();

// if the bottom margin is 0,
// then after the animation will end it'll be negative, and invisible.
mIsVisibleAfter = (mViewLayoutParams.bottomMargin == 0);

mMarginStart = mViewLayoutParams.bottomMargin;
mMarginEnd = (mMarginStart == 0 ? (0- view.getHeight()) : 0);

view.setVisibility(View.VISIBLE);
}

@Override
protected void applyTransformation(float interpolatedTime, Transformation t) {
super.applyTransformation(interpolatedTime, t);

if (interpolatedTime < 1.0f) {

// Calculating the new bottom margin, and setting it
mViewLayoutParams.bottomMargin = mMarginStart
+ (int) ((mMarginEnd - mMarginStart) * interpolatedTime);

// Invalidating the layout, making us seeing the changes we made
mAnimatedView.requestLayout();

// Making sure we didn't run the ending before (it happens!)
} else if (!mWasEndedAlready) {
mViewLayoutParams.bottomMargin = mMarginEnd;
mAnimatedView.requestLayout();

if (mIsVisibleAfter) {
mAnimatedView.setVisibility(View.GONE);
}
mWasEndedAlready = true;
}
}
}

对不起我的英语:( .

最佳答案

试试这个代码

获取上下文的第一个错误

context = V.getContext();

列表点击事件中的第二个

View toolbar =view.findViewById(R.id.toolbar);

你更新的代码

public class AccountContents extends Fragment {
private AccountItem[] rootContents;
private ListView ls1;
private CArrayAdapter adapter;
private Context context;

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {

final View V = inflater.inflate(R.layout.account_contents, container,
false);
context = V.getContext();
rootContents = fourshared.rootContents;
adapter = new CArrayAdapter(context, rootContents);
ls1 = (ListView) V.findViewById(R.id.AC_listView);
ls1.setAdapter(adapter);
ls1.setOnItemClickListener(new AdapterView.OnItemClickListener() {
public void onItemClick(AdapterView<?> parent, final View view,
int position, long id) {

View toolbar = view.findViewById(R.id.toolbar);
ExpandAnimation expandAni = new ExpandAnimation(toolbar, 500);
toolbar.startAnimation(expandAni);
}
});
return V;
}
}

关于java - Android: ExpandAnimation With Fragment,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10091667/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com