- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
从上周开始,我尝试在可扩展 ListView 中实现多个倒数计时器。我想将时间减少到 00:00:00,据此我需要更新可扩展 ListView 的父元素中的文本。
我的问题是:
1) 滚动可扩展 ListView 计时器重新启动
2) 展开和折叠计时器重新启动
3)在子按钮上的事件上,我需要更新父 View 上特定位置的文本
我试图实现的另一件事是从 subview 中单击一个按钮,我需要更新父 View 中的文本,但我被困在那里。
这是我的适配器,包含父项和子项。
public class Sent_ListAdapter extends BaseExpandableListAdapter {
private Context _context;
**private List<SentModel> _listDataHeader;**
// child data in format of header title, child title
**private HashMap<SentModel, List<SentModel>> _listDataChild;**
private TextView txt_summary;
private TextView datetime_element;
private LinearLayout ll_arrowtorecord;
**private String[] ti;**
**private CountDownTimer cdt_sent;**
**private HashMap<TextView, CountDownTimer> counters;**
**private TextView deadline;**
public Sent_ListAdapter(Context context, List<SentModel> listDataHeader, HashMap<SentModel, List<SentModel>> listChildData) {
this._context = context;
this._listDataHeader = listDataHeader;
this._listDataChild = listChildData;
ll_end = new FrameLayout[_listDataHeader.size()];
ll_closeaceess = new FrameLayout[_listDataHeader.size()];
ll_whoaccpted = new LinearLayout[_listDataHeader.size()];
**this.counters = new HashMap<TextView, CountDownTimer>();**
}
@Override
public int getGroupCount() {
return this._listDataHeader.size();
}
@Override
public int getChildrenCount(int groupPosition) {
return this._listDataChild.get(this._listDataHeader.get(groupPosition)).size();
}
@Override
public Object getGroup(int groupPosition) {
return this._listDataHeader.get(groupPosition);
}
@Override
public Object getChild(int groupPosition, int childPosition) {
return this._listDataChild.get(this._listDataHeader.get(groupPosition)).get(childPosition);
}
@Override
public long getGroupId(int groupPosition) {
return groupPosition;
}
@Override
public long getChildId(int groupPosition, int childPosition) {
return childPosition;
}
@Override
public boolean hasStableIds() {
return false;
}
@Override
public View getGroupView(final int groupPosition, boolean isExpanded, View convertView, ViewGroup parent) {
final SentModel headerTitle = (SentModel) getGroup(groupPosition);
if (convertView == null) {
LayoutInflater infalInflater = (LayoutInflater) this._context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
convertView = infalInflater.inflate(R.layout.element_sentlist, null);
}
ll_arrowtorecord = (LinearLayout) convertView.findViewById(R.id.ll_arrowtorecord);
ll_arrowtorecord.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
if (headerTitle.getFile().trim().contains(".mp4")) {
Log.v("", TAG + "==video==" + headerTitle.getFile());
Intent intent = new Intent(android.content.Intent.ACTION_VIEW);
Uri data = Uri.parse(headerTitle.getFile());
intent.setDataAndType(data, "video/mp4");
startActivity(intent);
} else if (headerTitle.getFile().trim().contains(".jpg")) {
Log.v("", TAG + "==image==" + headerTitle.getFile());
Intent gotorecoedactivity = new Intent(context, RecordedAsset.class);
gotorecoedactivity.putExtra("image", headerTitle.getFile());
startActivity(gotorecoedactivity);
overridePendingTransition(R.anim.right_slide_in, R.anim.left_side_out);
finish();
} else {
Toast.makeText(context, "No recorded asset is there.", Toast.LENGTH_SHORT).show();
}
}
});
txt_summary = (TextView) convertView.findViewById(R.id.txt_summary);
if (headerTitle.get_desc().equalsIgnoreCase("") || headerTitle.get_desc() == null) {
txt_summary.setText(" Description");
} else {
txt_summary.setText(headerTitle.get_desc());
}
datetime_element = (TextView) convertView.findViewById(R.id.datetime_element);
final TextView tv = datetime_element;
deadline = (TextView) convertView.findViewById(R.id.deadline);
**if (headerTitle.getRemaining_completion_time().equalsIgnoreCase("") || headerTitle.getRemaining_completion_time() == null) {
datetime_element.setText("");
}
else if (headerTitle.getRemaining_completion_time().equalsIgnoreCase("00:00:00"))
{
tv.setText("Completion time over");
deadline.setVisibility(View.GONE);
}
else
{
ti = headerTitle.getRemaining_completion_time().split(":");
int hrs = Integer.parseInt(ti[0]);
cdt_sent = counters.get(datetime_element);
int days = Integer.parseInt(headerTitle.getRemaining_days());
// int hours1 = datetime_plus(days, Integer.parseInt(ti[0]));
int min = Integer.parseInt(ti[1]);
int sec = Integer.parseInt(ti[2]);
long d1 = TimeUnit.DAYS.toMillis(days);
long m1 = TimeUnit.MINUTES.toMillis(min);
long h1 = TimeUnit.HOURS.toMillis(hrs);
long s1 = TimeUnit.SECONDS.toMillis(sec);
final long milliseco = d1 + m1 + h1 + s1;
if (cdt_sent != null) {
cdt_sent.cancel();
cdt_sent = null;
}
cdt_sent = new CountDownTimer(milliseco, 1000)
{
int days = 0;
int hours1 = 0;
private String sDate;
int min = 0;
int sec = 0;
@Override
public void onTick(long millisUntilFinished)
{
millisUntilFinished -= (days * DateUtils.DAY_IN_MILLIS);
if (millisUntilFinished > DateUtils.HOUR_IN_MILLIS)
{
hours1 = (int) (millisUntilFinished / DateUtils.HOUR_IN_MILLIS);
}
millisUntilFinished -= (hours1 * DateUtils.HOUR_IN_MILLIS);
if (millisUntilFinished > DateUtils.MINUTE_IN_MILLIS)
{
min = (int) (millisUntilFinished / DateUtils.MINUTE_IN_MILLIS);
}
millisUntilFinished -= (min * DateUtils.MINUTE_IN_MILLIS);
if (millisUntilFinished > DateUtils.SECOND_IN_MILLIS)
{
sec = (int) (millisUntilFinished / DateUtils.SECOND_IN_MILLIS);
}
sDate = " " + String.format("%02d", hours1) + "h " + String.format("%02d", min) + "m " + String.format("%02d", sec) + "s ";
_listDataHeader.get(groupPosition).setTime(sDate);
String hms = String.format("%02d,%02d:%02d:%02d", TimeUnit.MILLISECONDS.toDays(milliseco),TimeUnit.MILLISECONDS.toHours(milliseco),
TimeUnit.MILLISECONDS.toMinutes(milliseco) % TimeUnit.HOURS.toMinutes(1),
TimeUnit.MILLISECONDS.toSeconds(milliseco) % TimeUnit.MINUTES.toSeconds(1));
// Log.v("", "Bansi"+"==hms=="+hms);
tv.setText(_listDataHeader.get(groupPosition).getTime());
}
@Override
public void onFinish() {
tv.setText("Completion time over");
deadline.setVisibility(View.GONE);
}
};
counters.put(tv, cdt_sent);
cdt_sent.start();
}**
return convertView;
}
@SuppressLint("InflateParams")
@Override
public View getChildView(final int groupPosition, final int childPosition, boolean isLastChild, View convertView, ViewGroup parent) {
final SentModel childText = (SentModel) getChild(groupPosition, childPosition);
if (convertView == null) {
LayoutInflater infalInflater = (LayoutInflater) this._context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
convertView = infalInflater.inflate(R.layout.element_childsent, null);
}
ll_whoaccpted[groupPosition] = (LinearLayout) convertView.findViewById(R.id.ll_whoaccpted);
ll_end[groupPosition] = (FrameLayout) convertView.findViewById(R.id.ll_end);
ll_closeaceess[groupPosition] = (FrameLayout) convertView.findViewById(R.id.ll_closeaceess);
txt_whoaccepted = (TextView) convertView.findViewById(R.id.txt_whoaccepted);
img_block = (ImageView) convertView.findViewById(R.id.img_block);
img_end = (ImageView) convertView.findViewById(R.id.img_end);
txt_end = (TextView) convertView.findViewById(R.id.txt_end);
txt_closeacess = (TextView) convertView.findViewById(R.id.txt_closeacess);
ll_whoaccpted[groupPosition].setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
showWhoAcceptedpopup(childText.getB_id(), groupPosition + "");
if (Utils.detectInternetConnection(context)) {
new post_WhoAccepted().execute(childText.getB_id(), groupPosition + "");
} else {
progressDialog.showWarningDialog_Click(getString(R.string.no_internet), new OnClickListener() {
@Override
public void onClick(View v) {
progressDialog.dialogDismiss();
try {
Intent callGPSSettingIntent = new Intent(android.provider.Settings.ACTION_WIFI_SETTINGS);
startActivity(callGPSSettingIntent);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
}
});
if (childText.getIs_cancel().equalsIgnoreCase("0")) {
ll_end[groupPosition].setBackgroundColor(Color.parseColor("#CBCBCB"));
txt_end.setTextColor(Color.parseColor("#7E7E7E"));
txt_end.setText("You ended the .");
txt_end.setGravity(Gravity.CENTER);
img_end.setImageResource(R.drawable.cross_circleclick);
ll_end[groupPosition].setClickable(false);
} else {
ll_end[groupPosition].setBackgroundColor(Color.parseColor("#650030"));
txt_end.setTextColor(Color.parseColor("#FF0101"));
txt_end.setText("End ");
txt_end.setGravity(Gravity.RIGHT);
img_end.setImageResource(R.drawable.cross_circle);
ll_end[groupPosition].setClickable(true);
if (endornot.get(groupPosition) == 0) {
} else {
ll_end[groupPosition].setBackgroundColor(Color.parseColor("#CBCBCB"));
txt_end.setTextColor(Color.parseColor("#7E7E7E"));
txt_end.setText("You ended the .");
img_end.setImageResource(R.drawable.cross_circleclick);
txt_end.setGravity(Gravity.CENTER);
ll_end[groupPosition].setClickable(false);
}
ll_end[groupPosition].setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
Log.v("", TAG + "==childposition==" + groupPosition);
if (endornot.get(groupPosition) == 0) {
if (Utils.detectInternetConnection(context)) {
new post_EndorClose().execute(childText.getB_id(), "1", groupPosition + "");
} else {
progressDialog.showWarningDialog_Click(getString(R.string.no_internet), new OnClickListener() {
@Override
public void onClick(View v) {
progressDialog.dialogDismiss();
try {
Intent callGPSSettingIntent = new Intent(android.provider.Settings.ACTION_WIFI_SETTINGS);
startActivity(callGPSSettingIntent);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
} else {
}
}
});
}
if (childText.getIs_close().equalsIgnoreCase("0")) {
ll_closeaceess[groupPosition].setBackgroundColor(Color.parseColor("#E7E7E7"));
txt_closeacess.setTextColor(Color.parseColor("#7E7E7E"));
txt_closeacess.setText("Access to the closed");
txt_closeacess.setGravity(Gravity.CENTER);
ll_closeaceess[groupPosition].setClickable(false);
} else {
ll_closeaceess[groupPosition].setBackgroundColor(Color.parseColor("#006500"));
txt_closeacess.setTextColor(Color.parseColor("#043303"));
txt_closeacess.setText("Close access to ");
ll_closeaceess[groupPosition].setClickable(true);
txt_closeacess.setGravity(Gravity.RIGHT);
if (aceessdeniedornot.get(groupPosition) == 0) {
} else {
ll_closeaceess[groupPosition].setBackgroundColor(Color.parseColor("#E7E7E7"));
txt_closeacess.setTextColor(Color.parseColor("#7E7E7E"));
txt_closeacess.setText("Access to the closed");
txt_closeacess.setGravity(Gravity.CENTER);
ll_closeaceess[groupPosition].setClickable(false);
}
ll_closeaceess[groupPosition].setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
Log.v("", TAG + "==childposition==" + groupPosition);
if (aceessdeniedornot.get(groupPosition) == 0) {
if (Utils.detectInternetConnection(context)) {
new post_EndorClose().execute(childText.getB_id(), "2", groupPosition + "");
} else {
progressDialog.showWarningDialog_Click(getString(R.string.no_internet), new OnClickListener() {
@Override
public void onClick(View v) {
progressDialog.dialogDismiss();
try {
Intent callGPSSettingIntent = new Intent(android.provider.Settings.ACTION_WIFI_SETTINGS);
startActivity(callGPSSettingIntent);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
} else {
}
}
});
}
return convertView;
}
@Override
public boolean isChildSelectable(int groupPosition, int childPosition) {
return true;
}
}
请帮助我,我仍然被困在这里我正在努力解决它,但我有时间限制。谢谢!
最佳答案
我得先说,你的代码真的很难阅读。
getGroupView
和 getChildView
上的繁忙代码分开。你也可以使用 ViewHolder getChildView
上的模式来保存您的 View 而不是那些数组(ll_whoaccpted
等...)TextUtils.isEmpty()
可以帮助您更好地检查您的字符串是空的还是 null
if (TextUtils.isEmpty(headerTitle.getRemaining_completion_time()))
//instead of
if (headerTitle.getRemaining_completion_time().equalsIgnoreCase("") || headerTitle.getRemaining_completion_time() == null)
让 Sent_ListAdapter
实现 OnClickListener,而不是每次 Android 为您的列表获取 View 时都重新创建监听器(新)。在 View 参数上添加条件以检查点击了哪种 View 类型。
使用日期和 SimpleDataFormat在 CountDownTimer 上,那些手动的字符串格式非常糟糕且不可读
现在进入正题:
on scrolling expandable list view timer restarts
发生这种情况是因为 ListView 重新创建了未显示的 View /组(调用 getView/getGroup 方法)以重用其他数据的行。
如果你想避免这种情况,你应该在 getView 和 getGroup 之外创建和启动你的计数器(构造函数是个好地方)。
on expand and collapse timer restarts
与第一个问题完全相同。
on event on child button i need to update particular position's text on parentview
我没有真正理解这一点,所以我猜测您想更改主布局(包含 ListView 的布局)上 TextView 的文本。那么您需要将该 TextView 的引用提供给 Sent_ListAdapter
。
或者,不是将通用 Context 传递给 Sent_ListAdapter
,而是传递它自己的 Activity/Fragment :
public Sent_ListAdapter(MyActivity activty, List<SentModel> listDataHeader, HashMap<SentModel, List<SentModel>> listChildData) {
this._myactivity = myactivity;
this._listDataHeader = listDataHeader;
...
}
// The listener that handles all the events of your Sent_ListAdapter
@Override
public void onClick(View v) {
if(v.getTag() == "theBoutonThatShouldResetTheCounter") { //or other condition
myactivite.myTextView.setText("------");
}
}
But how will I get position in constructor for every row?
您需要反过来思考: ListView 使用您的数据源来显示行。因此,您需要遍历数据源上的元素(在您的情况下为 listDataHeader)。像这样的东西:
private List<CountDownTimer> counters;
public Sent_ListAdapter(Context context, List<SentModel> listDataHeader, HashMap<SentModel, List<SentModel>> listChildData) {
...
counters = new ArrayList()<>;
for(SentModel model : listDataHeader) {
long milliseco = model.getRemainingTimeInMs(); //TODO: create something like this or figure out how to get your couters starting times on ms
CountDownTimer cdt = new MyCountDownTimer(milliseco, 1000);
cdt.start(); // I don't know when you want to start your counters, if they start at the same time it could be here
}
}
public View getGroupView(final int groupPosition, boolean isExpanded, View convertView, ViewGroup parent) {
...
datetime_element = (TextView) convertView.findViewById(R.id.datetime_element);
deadline = (TextView) convertView.findViewById(R.id.deadline);
...
CountDownTimer cdt = counters.get(groupPosition);
cdt.setTv1 = datetime_element;
cdt.setTv2 = deadline;
...
}
public class MyCountDownTimer extends CountDownTimer {
public TextView tv1; //TODO: make setters instead of public
public TextView tv2; //TODO: make setters instead of public
public MyCountDownTimer(long millisInFuture, long countDownInterval) {
super(millisInFuture, countDownInterval);
}
@Override
public void onTick(long millisUntilFinished) {
//Only use this if u have something to do each tick
SimpleDateFormat df = new SimpleDateFormat(" dd,hh:mm:ss");
Date timeRemaining = //TODO: figure out how you calculate your remaining time
if(tv1 != null) {
tv1.setText(df.format(timeRemaining));
}
}
@Override
public void onFinish() {
if(tv1 != null && tv2!= null) {
tv1.setText("Completion time over");
tv2.setVisibility(View.GONE);
}
}
}
关于android - 可扩展 ListView Android 中的多个倒数计时器不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33014999/
我最近在/ drawable中添加了一些.gifs,以便可以将它们与按钮一起使用。这个工作正常(没有错误)。现在,当我重建/运行我的应用程序时,出现以下错误: Error: Gradle: Execu
Android 中有返回内部存储数据路径的方法吗? 我有 2 部 Android 智能手机(Samsung s2 和 s7 edge),我在其中安装了一个应用程序。我想使用位于这条路径中的 sqlit
这个问题在这里已经有了答案: What's the difference between "?android:" and "@android:" in an android layout xml f
我只想知道 android 开发手机、android 普通手机和 android root 手机之间的实际区别。 我们不能从实体店或除 android marketplace 以外的其他地方购买开发手
自Gradle更新以来,我正在努力使这个项目达到标准。这是一个团队项目,它使用的是android-apt插件。我已经进行了必要的语法更改(编译->实现和apt->注释处理器),但是编译器仍在告诉我存在
我是android和kotlin的新手,所以请原谅要解决的一个非常简单的问题! 我已经使用导航体系结构组件创建了一个基本应用程序,使用了底部的导航栏和三个导航选项。每个导航选项都指向一个专用片段,该片
我目前正在使用 Facebook official SDK for Android . 我现在正在使用高级示例应用程序,但我不知道如何让它获取应用程序墙/流/状态而不是登录的用户。 这可能吗?在那种情
我在下载文件时遇到问题, 我可以在模拟器中下载文件,但无法在手机上使用。我已经定义了上网和写入 SD 卡的权限。 我在服务器上有一个 doc 文件,如果用户单击下载。它下载文件。这在模拟器中工作正常但
这个问题在这里已经有了答案: What is the difference between gravity and layout_gravity in Android? (22 个答案) 关闭 9
任何人都可以告诉我什么是 android 缓存和应用程序缓存,因为当我们谈论缓存清理应用程序时,它的作用是,缓存清理概念是清理应用程序缓存还是像内存管理一样主存储、RAM、缓存是不同的并且据我所知,缓
假设应用程序 Foo 和 Eggs 在同一台 Android 设备上。任一应用程序都可以获取设备上所有应用程序的列表。一个应用程序是否有可能知道另一个应用程序是否已经运行以及运行了多长时间? 最佳答案
我有点困惑,我只看到了从 android 到 pc 或者从 android 到 pc 的例子。我需要制作一个从两部手机 (android) 连接的 android 应用程序进行视频聊天。我在想,我知道
用于使用 Android 以编程方式锁定屏幕。我从 Stackoverflow 之前关于此的问题中得到了一些好主意,并且我做得很好,但是当我运行该代码时,没有异常和错误。而且,屏幕没有锁定。请在这段代
文档说: android:layout_alignParentStart If true, makes the start edge of this view match the start edge
我不知道这两个属性和高度之间的区别。 以一个TextView为例,如果我将它的layout_width设置为wrap_content,并将它的width设置为50 dip,会发生什么情况? 最佳答案
这两个属性有什么关系?如果我有 android:noHistory="true",那么有 android:finishOnTaskLaunch="true" 有什么意义吗? 最佳答案 假设您的应用中有
我是新手,正在尝试理解以下 XML 代码: 查看 developer.android.com 上的文档,它说“starStyle”是 R.attr 中的常量, public static final
在下面的代码中,为什么当我设置时单选按钮的外观会发生变化 android:layout_width="fill_parent" 和 android:width="fill_parent" 我说的是
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 9
假设我有一个函数 fun myFunction(name:String, email:String){},当我调用这个函数时 myFunction('Ali', 'ali@test.com ') 如何
我是一名优秀的程序员,十分优秀!