加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > Java > 正文

java – 由于URI无效导致安装失败

发布时间:2020-12-15 05:17:26 所属栏目:Java 来源:网络整理
导读:[2013-07-21 11:14:01 - AndroidTrial] Installation failed due to invalid URI![2013-07-21 11:14:01 - AndroidTrial] Please check logcat output for more details.[2013-07-21 11:14:02 - AndroidTrial] Launch canceled! 这是我尝试运行试验项目时得到
[2013-07-21 11:14:01 - AndroidTrial] Installation failed due to invalid URI!
[2013-07-21 11:14:01 - AndroidTrial] Please check logcat output for more details.
[2013-07-21 11:14:02 - AndroidTrial] Launch canceled!

这是我尝试运行试验项目时得到的结果. logcat中没有输出.
我在SO上查看了其他类似问题的答案,他们说这可能是因为重音字符.我没有这些.

这是我的简单代码:

public class HaikuDisplay extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
    }

    public void onTrialButtonClicked(View view){
        TextView v = (TextView) findViewById(R.id.text);
        v.setVisibility(View.VISIBLE);
    }

}

这是XML:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".HaikuDisplay" >
    <Button 
        android:id="@+id/topBtn"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="@string/love_button_text"
        android:onClick="onTrialButtonClicked"
        />
    <TextView
        android:layout_below="@id/topBtn"
        android:id="@+id/text"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="@string/hello_world" 
        android:visibility="invisible"/>

</RelativeLayout>

我该如何解决?

解决方法

这个错误可以指向许多不同的东西,并且有许多不同的修复.总结我收集的那些:

> Eclipse问题:清理项目,重建项目,重新启动日食.>无效字符:删除Eclipse项目名称中的任何特殊字符.仅使用[a-z]和[0-9]甚至不使用[](空格)>包含jar中的错误:尝试不使用jar并查看它是否运行,如果确实以某种方式修复.>清单包设置中的错误:右键单击项目中的eclipse – > Android工具 – >重命名应用程序包(重命名为类似的东西,您始终可以重命名).>设备问题:从设备中删除应用程序并尝试重新安装.> Rom问题:如果您使用自定义ROM尝试重新刷新到新ROM.>未启用调试:在手机上转到设置 – >应用程序 – >允许未知来源/启用调试(此路径因不同设备而异)

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读