Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个列表视图,在列表视图中我使用一个进度条,我希望当我点击进度条时,进度条下方必须显示三个按钮,当我再次点击进度条时,这三个按钮必须躲起来。?? 请帮我.....
你试过这个吗?
容器是你的 3 个按钮的地方
progressbar.setOnClickListener(new OnClickListener() {
@Override public void onClick(View v) { container.setVisible(View.GONE); } });