|
|
@@ -38,6 +38,7 @@ import com.xzjmyk.pm.activity.ui.erp.util.LogUtil;
|
|
|
import com.xzjmyk.pm.activity.ui.erp.util.StringUtils;
|
|
|
import com.xzjmyk.pm.activity.ui.erp.view.CustomerScrollView;
|
|
|
import com.xzjmyk.pm.activity.ui.erp.view.EmptyLayout;
|
|
|
+import com.xzjmyk.pm.activity.util.SystemUtil;
|
|
|
import com.xzjmyk.pm.activity.view.MyListView;
|
|
|
|
|
|
import org.json.JSONException;
|
|
|
@@ -209,6 +210,30 @@ public class DailydetailsActivity extends BaseActivity {
|
|
|
|
|
|
}
|
|
|
});
|
|
|
+
|
|
|
+ wdd_summary.setOnLongClickListener(new View.OnLongClickListener() {
|
|
|
+ @Override
|
|
|
+ public boolean onLongClick(View v) {
|
|
|
+ SystemUtil.copyText(getApplicationContext(), wdd_summary.getText().toString());
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+ });
|
|
|
+
|
|
|
+ wdd_plan.setOnLongClickListener(new View.OnLongClickListener() {
|
|
|
+ @Override
|
|
|
+ public boolean onLongClick(View v) {
|
|
|
+ SystemUtil.copyText(getApplicationContext(),wdd_plan.getText().toString());
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+ });
|
|
|
+
|
|
|
+ wdd_experience.setOnLongClickListener(new View.OnLongClickListener() {
|
|
|
+ @Override
|
|
|
+ public boolean onLongClick(View v) {
|
|
|
+ SystemUtil.copyText(getApplicationContext(),wdd_experience.getText().toString());
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+ });
|
|
|
}
|
|
|
|
|
|
|