问题列表 - 第31936页

通知服务中的android内存泄漏

我有一个服务,它会创建一个通知,然后定期用某些信息更新它.电话崩溃并重新启动大约12分钟后,我认为这是由于以下代码中的内存泄漏导致我如何更新通知,有人请检查/建议我是否是这种情况和我我做错了.

的onCreate:

mNotificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
Run Code Online (Sandbox Code Playgroud)

createNotification:

private void createNotification() {
  Intent contentIntent = new Intent(this,MainScreen.class);
  contentIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP);
  PendingIntent appIntent =PendingIntent.getActivity(this,0, contentIntent, 0);

  contentView = new RemoteViews(getPackageName(), R.layout.notification);
  contentView.setImageViewResource(R.id.image, R.drawable.icon);
  contentView.setTextViewText(R.id.text, "");

  notification = new Notification();
  notification.when=System.currentTimeMillis();
  notification.contentView = contentView;
  notification.contentIntent = appIntent;
}
Run Code Online (Sandbox Code Playgroud)

updateNotification:

private void updateNotification(String text){
  contentView.setTextViewText(R.id.text, text);
  mNotificationManager.notify(0, notification);
}
Run Code Online (Sandbox Code Playgroud)

提前致谢.

notifications android memory-leaks notificationmanager

14
推荐指数
1
解决办法
4751
查看次数

使控制台应用程序的行为类似于Windows应用程序

我有一个控制台应用程序,我希望它等到某个事件被提出.但它执行代码并退出:

static void Main(string[] args)
{
    var someObjectInstance = new SomeObject();
    someObjectInstance.SomeEvent += SomeEventHandler;
}

static void SomeEventHandler()
{
    //Some logic
}
Run Code Online (Sandbox Code Playgroud)

我想让我的应用程序像Windows应用程序一样

Application.Run(new Form1());
Run Code Online (Sandbox Code Playgroud)

被调用并运行消息循环.

但我既不需要消息循环也不需要任何形式.所以它看起来像开销.是否有更轻量级的方式来实现我的目标?

.net c#

12
推荐指数
1
解决办法
8297
查看次数

摆脱文件名中的*连续*句点

我想知道如果我有一个文件名,我将如何摆脱文件名中的句点:

测试.... 1.txt看起来像Test 1.txt?我不希望触及像1.0.1 Test.txt这样的文件.只有具有连续句点的文件才应替换为空格.有任何想法吗?

这是我当前的代码,但正如您所看到的,它取代了扩展名称中的句点之外的每个句点:

 public void DoublepCleanUp(List<string> doublepFiles)
    {
        Regex regExPattern2 = new Regex(@"\s{2,}");
        Regex regExPattern4 = new Regex(@"\.+");
        Regex regExPattern3 = new Regex(@"\.(?=.*\.)");
        string replace = " ";
        List<string> doublep = new List<string>();
        var filesCount = new Dictionary<string, int>();

        try
        {
            foreach (string invalidFiles in doublepFiles)
            {
                string fileOnly = System.IO.Path.GetFileName(invalidFiles);
                string pathOnly = System.IO.Path.GetDirectoryName(fileOnly);

                if (!System.IO.File.Exists(fileOnly))
                {
                    string filewithDoublePName = System.IO.Path.GetFileName(invalidFiles);
                    string doublepPath = System.IO.Path.GetDirectoryName(invalidFiles);
                    string name = System.IO.Path.GetFileNameWithoutExtension(invalidFiles);
                    //string newName = name.Replace(".", " ");
                    string …
Run Code Online (Sandbox Code Playgroud)

c#

2
推荐指数
3
解决办法
1092
查看次数

为什么这样做呢?

我今天在博客中发现了这个有趣的项目:

def abc():
    try:
        return True
    finally:
        return False

print "abc() is", abc()
Run Code Online (Sandbox Code Playgroud)

任何人都可以告诉它为什么会这样做吗?

谢谢,KR

python syntax

10
推荐指数
1
解决办法
227
查看次数

Thread.sleep()的InterruptedException

在Java中,Thread.sleep()抛出InterruptedException.对这个例外做什么是正确的?

我是不是该

  1. 在调用链中传播异常?
  2. 吞下这个例外?
  3. 做其他事(请建议)?

java multithreading

10
推荐指数
1
解决办法
1844
查看次数

具有键"IDMateria"的ViewData项的类型为"System.Int32",但必须是"IEnumerable <SelectListItem>"类型

我的Simulacion控制器中有以下代码:

[Authorize]
public ActionResult Create()
{
    Simulacion simulacion = new Simulacion();
    MateriaRepository materia = new MateriaRepository();
    EvaluadorRepository evaluador = new EvaluadorRepository();

    ViewData["Materias"] = new SelectList(materia.FindAllMaterias().ToList(), "ID", "Nombre");            
    ViewData["Evaluadors"] = new SelectList(evaluador.FindAllEvaluadors().ToList(), "ID", "Nombre");
    return View(simulacion);
}

[AcceptVerbs(HttpVerbs.Post), Authorize]
public ActionResult Create(Simulacion simulacion)
{
    if (ModelState.IsValid)
    {
        repo.Add(simulacion);
        repo.Save();

        return RedirectToAction("Details", new { id = simulacion.ID });
    }

    return View(simulacion);
}
Run Code Online (Sandbox Code Playgroud)

当我运行Create Action时,我可以看到下拉列表工作得很好.我可以从现有的Materias或Evaluators列表中进行选择.当我尝试POST创建操作时,我收到了顶部发布的异常.

以下是Idisplay下拉列表的方式:

<div class="editor-field">
                <%: Html.DropDownList("IDMateria", (SelectList)ViewData["Materias"])%>
                <%: Html.ValidationMessageFor(model => model.IDMateria) %>
            </div>
Run Code Online (Sandbox Code Playgroud)

我很难过,因为我在同一个应用程序的另一个区域使用了相同的代码而且它有效,我只是更改了变量名称以适应这个用例.

c# asp.net-mvc-2

4
推荐指数
1
解决办法
3465
查看次数

从文件中读取

我是初学者,刚开始学习Python几天前(耶!)

所以我遇到了一个问题.当我运行时,此代码输出除文本之外的所有内容(文件中的txt在单独的行上为0-10)

def output():
    xf=open("data.txt", "r")
    print xf
    print("opened, printing now")
    for line in xf:
        print(xf.read())
        print("and\n")
    xf.close()
    print("closed, done printing")  
Run Code Online (Sandbox Code Playgroud)

python file-io

6
推荐指数
2
解决办法
236
查看次数

你如何使用Maven分享两个项目的源代码?

我有一个使用Maven的大型Java Web应用程序项目,我需要启动一个新项目,它将共享大部分相同的代码(所以我不必重复工作),但不是全部.我要将共享代码复制到一个新项目中(让我们称之为"root").如何让我的原始项目依赖root来获取源代码?我不能只是jar它因为我想在编译前更改源代码.

maven-2

14
推荐指数
1
解决办法
1万
查看次数

使用反射,我如何检测具有setter的属性.

我有这个代码循环一个对象,并通过反射获取其所有属性:

foreach (var propertyInfo in typeof(TBase).GetProperties(BindingFlags.Public | BindingFlags.Instance))
{
    var oldValue = propertyInfo.GetValue(oldVersion, null);
}
Run Code Online (Sandbox Code Playgroud)

如何检查只查看其上有"设置"的属性?(我想忽略只读值 - 只是"获取".)

c# reflection

43
推荐指数
2
解决办法
2万
查看次数

jQuery不透明动画

我正在建立一个网站,它允许用户更改视图选项.我使用jQuery来平滑动画以更改字体.它将整个页面淡出并重新使用新字体.

淡出动画很好,但当它淡入时,就没有褪色.它只是弹出,没有动画.

有问题的jQuery位于http://xsznix.my3gb.com/options.php中.

我到目前为止的代码是这样的:

$('#font-classic').click(function(){
    $(document.body).animate({opacity: '0%'},{duration: 1000, complete: function(){
        // font changing code here
        $(document.body).animate({opacity: '100%'}, 1000);
    }});
});
Run Code Online (Sandbox Code Playgroud)

javascript jquery opacity jquery-animate

23
推荐指数
3
解决办法
7万
查看次数