本文整理汇总了Java中com.github.aakira.expandablelayout.ExpandableLinearLayout类的典型用法代码示例。如果您正苦于以下问题:Java ExpandableLinearLayout类的具体用法?Java ExpandableLinearLayout怎么用?Java ExpandableLinearLayout使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
ExpandableLinearLayout类属于com.github.aakira.expandablelayout包,在下文中一共展示了ExpandableLinearLayout类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: onCreateView
import com.github.aakira.expandablelayout.ExpandableLinearLayout; //导入依赖的package包/类
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.fragment_feed_list, container, false);
mSwipeRefreshLayout = (SwipeRefreshLayout) view.findViewById(R.id.fragment_feed_ist_refresh);
mFeedListView = (ListView) view.findViewById(R.id.feed_list);
mExpandableLayout = (ExpandableLinearLayout) view.findViewById(R.id.expandableLayout);
mButtonLayout = (RelativeLayout) view.findViewById(R.id.button);
mLocationLabel = (TextView) view.findViewById(R.id.current_location);
mExpandLocationLabel = (TextView) view.findViewById(R.id.expand_current_location);
mChangeLocationLabel = (TextView) view.findViewById(R.id.expand_change_location);
mColonLabel = (TextView) view.findViewById(R.id.colon_id);
initSwipeRefresh();
initExpandableList();
initChangeLocation();
FeedAdapter mFeedAdapter = new FeedAdapter(getActivity(), mItems);
mFeedListView.setAdapter(mFeedAdapter);
mFeedListView.setDividerHeight(20);
mLocationLabel.setText(Global.INSTANCE.getRegistry("mLocation").getValue());
return view;
}
示例2: addExpandables
import com.github.aakira.expandablelayout.ExpandableLinearLayout; //导入依赖的package包/类
private void addExpandables() {
mMyTasks = (ExpandableLinearLayout) findViewById(R.id.expandable_my_tasks);
RelativeLayout expand = (RelativeLayout) findViewById(R.id.expand_my_task);
expand.setOnClickListener(v -> mMyTasks.toggle());
ImageView myTasksButton = (ImageView) findViewById(R.id.expand_my_task_icon);
Animation rotateMyTasks = AnimationUtils.loadAnimation(this, R.anim.rerotate);
mMyTasks.setListener(new ExpandableLayoutListenerAdapter() {
@Override
public void onPreOpen() {
myTasksButton.startAnimation(rotateMyTasks);
myTasksButton.setImageDrawable(getResources().getDrawable(R.drawable.colapse));
}
@Override
public void onPreClose() {
myTasksButton.startAnimation(rotateMyTasks);
myTasksButton.setImageDrawable(getResources().getDrawable(R.drawable.expand));
}
});
mAllTasks = (ExpandableLinearLayout) findViewById(R.id.expandable_all_tasks);
expand = (RelativeLayout) findViewById(R.id.expand_all_tasks);
expand.setOnClickListener(v -> mAllTasks.toggle());
ImageView allTasksButton = (ImageView) findViewById(R.id.expand_all_task_icon);
Animation rotateAllTasks = AnimationUtils.loadAnimation(this, R.anim.rerotate);
mAllTasks.setListener(new ExpandableLayoutListenerAdapter() {
@Override
public void onPreOpen() {
allTasksButton.startAnimation(rotateAllTasks);
allTasksButton.setImageDrawable(getResources().getDrawable(R.drawable.colapse));
}
@Override
public void onPreClose() {
allTasksButton.startAnimation(rotateAllTasks);
allTasksButton.setImageDrawable(getResources().getDrawable(R.drawable.expand));
}
});
mSettle = (ExpandableLinearLayout) findViewById(R.id.expandable_settle);
expand = (RelativeLayout) findViewById(R.id.expand_settle);
expand.setOnClickListener(v -> mSettle.toggle());
ImageView settleButton = (ImageView) findViewById(R.id.expand_settle_icon);
Animation rotateSettle = AnimationUtils.loadAnimation(this, R.anim.rerotate);
mSettle.setListener(new ExpandableLayoutListenerAdapter() {
@Override
public void onPreOpen() {
settleButton.startAnimation(rotateSettle);
settleButton.setImageDrawable(getResources().getDrawable(R.drawable.colapse));
}
@Override
public void onPreClose() {
settleButton.startAnimation(rotateSettle);
settleButton.setImageDrawable(getResources().getDrawable(R.drawable.expand));
}
});
}