【Android】解决新建的xml文件无法正常加载的问题

新建一个xml布局文件,如下:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
     android:background="#DDDDDD" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="40dp"
        android:layout_marginLeft="20dp"
        android:layout_marginRight="20dp"
        android:layout_marginTop="20dp"
        android:background="#FFFFFF" >

        <TextView
            android:id="@+id/textView1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:layout_marginLeft="10dp"
            android:text="手机号码"
            android:textSize="11sp" />

         <EditText
             android:id="@+id/EditText01"
             android:layout_width="fill_parent"
             android:layout_height="wrap_content"
             android:layout_gravity="center"
             android:layout_weight="1"
             android:paddingLeft="3dp"
             android:textColor="#999"
             android:textColorHint="#9f9f9f"
             android:textCursorDrawable="@null"
             android:textSize="11sp" />

         <ImageView
             android:id="@+id/imageView1"
             android:layout_width="wrap_content"
             android:layout_height="wrap_content"
             android:layout_gravity="center"
             android:layout_marginRight="10dp"
             android:src="@drawable/reg" />

    </LinearLayout>

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="40dp"
            android:layout_marginLeft="20dp"
            android:layout_marginRight="20dp"
            android:layout_marginTop="1dp"
            android:background="#FFFFFF" >

        <TextView
            android:id="@+id/txttitlepwd"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
             android:layout_gravity="center"
            android:text="密码"
            android:textSize="11sp"
            android:layout_marginLeft="10dp"/>

         <EditText
             android:id="@+id/txtpassword"
             android:layout_width="fill_parent"
             android:layout_height="wrap_content"
             android:layout_weight="1"
             android:paddingLeft="3dp"
             android:textColor="#999"
              android:layout_gravity="center"
             android:textColorHint="#9f9f9f"
             android:textCursorDrawable="@null"
             android:textSize="12sp"
             android:layout_marginRight="10dp"/> 

    </LinearLayout>

            <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="40dp"
            android:layout_marginLeft="20dp"
            android:layout_marginRight="20dp"
            android:layout_marginTop="1dp"
            android:background="#FFFFFF" >

        <TextView
            android:id="@+id/txttitlepwd2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
             android:layout_gravity="center"
            android:text="确认密码"
            android:textSize="11sp"
            android:layout_marginLeft="10dp"/>

         <EditText
             android:id="@+id/txtpassword2"
             android:layout_width="fill_parent"
             android:layout_height="wrap_content"
             android:layout_weight="1"
             android:paddingLeft="3dp"
              android:layout_gravity="center"
             android:textColor="#999"
             android:textColorHint="#9f9f9f"
             android:textCursorDrawable="@null"
             android:textSize="11sp"
             android:layout_marginRight="10dp" /> 

    </LinearLayout>

       <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="40dp"
            android:layout_marginLeft="20dp"
            android:layout_marginRight="20dp"
            android:layout_marginTop="20dp"
            android:background="#FFFFFF" >

        <TextView
            android:id="@+id/txtemailtitle"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="邮箱"
             android:layout_gravity="center"
            android:textSize="11sp"
            android:layout_marginLeft="10dp"/>

         <EditText
             android:id="@+id/txtemail"
             android:layout_width="fill_parent"
             android:layout_height="wrap_content"
             android:layout_marginRight="10dp"
             android:layout_weight="1"
             android:paddingLeft="3dp"
              android:layout_gravity="center"
             android:textColor="#999"
             android:textColorHint="#9f9f9f"
             android:textCursorDrawable="@null"
             android:textSize="11sp" />

    </LinearLayout>

 <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="40dp"
            android:layout_marginLeft="20dp"
            android:layout_marginRight="20dp"
            android:layout_marginTop="1dp"
            android:background="#FFFFFF" >

        <TextView
            android:id="@+id/txtsextitle"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:layout_marginLeft="10dp"
            android:layout_weight="2"
            android:text="性别"
            android:textSize="11sp" />

        <RadioButton
            android:id="@+id/rdbMen"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:layout_weight="3"
            android:text="男"
            android:textSize="11sp" />

         <RadioButton
             android:id="@+id/rdbWoMen"
             android:layout_width="wrap_content"
             android:layout_height="wrap_content"
             android:layout_gravity="center"
             android:layout_weight="3"
             android:text="女"
             android:textSize="11sp"
             android:layout_marginRight="10dp" />

    </LinearLayout>

  <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="40dp"
            android:layout_marginLeft="20dp"
            android:layout_marginRight="20dp"
            android:layout_marginTop="1dp"
            android:background="#FFFFFF" >

        <TextView
            android:id="@+id/txtaddresstitle"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:layout_marginLeft="10dp"

            android:text="所在地"
            android:textSize="11sp" />
            <EditText
             android:id="@+id/txteaddress"
             android:layout_width="fill_parent"
             android:layout_height="wrap_content"
             android:layout_marginRight="10dp"
             android:layout_weight="1"
             android:paddingLeft="3dp"
              android:layout_gravity="center"
             android:textColor="#999"
             android:textColorHint="#9f9f9f"
             android:textCursorDrawable="@null"
             android:textSize="11sp" />

    </LinearLayout>

    <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="40dp"
            android:layout_marginLeft="20dp"
            android:layout_marginRight="20dp"
            android:layout_marginTop="50dp"
            android:background="#DDDDDD" >

        <Button
            android:id="@+id/button1"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:background="#FF0000"
            android:text="下一步"
            android:textColor="#FFFFFF"
            android:textSize="11sp" />

    </LinearLayout>

</LinearLayout>

执行一个函数调用此xml文件的时候,整个app直接死掉,调用代码如下:

void register() {
        this.Close();
        Intent intent = new Intent();
        intent.setClass(this, RegisterUsers.class);
        startActivity(intent);
    }

 

注:RegisterUsers 就是新建的xml文件。解决办法如下:新建的xml文件必须提前声明,最简单的方法就是直接在配置文件中定义,如下:在application节点中增加如下代码:
 <activity android:name="com.pk.view.RegisterUsers"></activity>

问题解决!!!

 

时间: 2024-10-10 21:41:54

【Android】解决新建的xml文件无法正常加载的问题的相关文章

android studio中的xml文件报错,eclipse正常不报错

问题描述 android studio中的xml文件报错,eclipse正常不报错 android:background="@drawable/one_home_page_text" 这张图片确实有,错误提示 Error:(138, 41) No resource found that matches the given name (at 'background' with value '@drawable/one_home_page_text'). eclipse中不报错,倒进stu

Android使用SharedPreferences存储XML文件的实现方法_Android

本文实例讲述了Android使用SharedPreferences存储XML文件的实现方法.分享给大家供大家参考,具体如下: SharedPreferences是Android平台上一个轻量级的存储类,主要是保存一些常用的配置比如窗口状态,一般在Activity中 重载窗口状态onSaveInstanceState保存一般使用SharedPreferences完成,它提供了Android平台常规的Long长 整形.Int整形.String字符串型的保存. 在Fragment中的使用方法: @Ov

Android使用SharedPreferences存储XML文件的实现方法

本文实例讲述了Android使用SharedPreferences存储XML文件的实现方法.分享给大家供大家参考,具体如下: SharedPreferences是Android平台上一个轻量级的存储类,主要是保存一些常用的配置比如窗口状态,一般在Activity中 重载窗口状态onSaveInstanceState保存一般使用SharedPreferences完成,它提供了Android平台常规的Long长 整形.Int整形.String字符串型的保存. 在Fragment中的使用方法: @Ov

xml-eclipse 开发安卓 XML视图布局老是加载不出来 怎么解决啊!

问题描述 eclipse 开发安卓 XML视图布局老是加载不出来 怎么解决啊! 谁有好的办法 以前关掉重新打开就会好 今天怎么也不行 耽误时间啊! 解决方案 换用AS咯,内存不够问题就换台机器咯 解决方案二: 你运行程序的时候能显示么?不出来可能布局有理有问题,特别是自定义控件 解决方案三: 以前都没有问题,现在出问题 只要你sdk配置没有修改过 只能是机器的问题了 解决方案四: 布局问题吧,是不是用了scrollview之类的 解决方案五: 可能是电脑内存不够,扩充内存:如果不是内存问题,那就

Android ListView下拉刷新上拉自动加载更多DEMO示例_Android

代码下载地址已经更新.因为代码很久没更新,已经很落伍了,建议大家使用RecyclerView实现. 参考项目: https://github.com/bingoogolapple/BGARefreshLayout-Android https://github.com/baoyongzhang/android-PullRefreshLayout 下拉刷新,Android中非常普遍的功能.为了方便便重写的ListView来实现下拉刷新,同时添加了上拉自动加载更多的功能.设计最初是参考开源中国的And

Android ListView下拉刷新上拉自动加载更多DEMO示例

代码下载地址已经更新.因为代码很久没更新,已经很落伍了,建议大家使用RecyclerView实现. 参考项目: https://github.com/bingoogolapple/BGARefreshLayout-Android https://github.com/baoyongzhang/android-PullRefreshLayout 下拉刷新,Android中非常普遍的功能.为了方便便重写的ListView来实现下拉刷新,同时添加了上拉自动加载更多的功能.设计最初是参考开源中国的And

图片加载-如何在android中的ListView实现图片的异步加载?

问题描述 如何在android中的ListView实现图片的异步加载? 想要实现对ListView Item 中图片的加载?各位帮忙怎么实现? 解决方案 我封装了一个异步加载类 开放源码并且提供示例代码 这是地址ImageAsyncLoader 解决方案二: Java代码 package cn.wangmeng.test; import java.io.IOException; import java.io.InputStream; import java.lang.ref.SoftRefere

Android的七巧板Activity之二 Activity的加载模式

Android的七巧板Activity之二 Activity的加载模式   标签:android activity singleTask singleInstance launchMode 版权声明:原创作品,谢绝转载!否则将追究法律责任.     在上一文中,我们说过,Activity就相当于一块块的七巧板,每个应用用这一个个七巧板组合成了美丽的图画,并用代码验证了每个Activity的生命周期.     那么,每个应用又是如何将各个Activity组合起来的呢?这就是本文要讲的内容.    

【技术贴】第二篇 :解决使用maven jetty启动后无法加载修改过后的静态资源

  之前写过第一篇:[技术贴]解决使用maven jetty启动后无法加载修改过后的静态资源 一直用着挺舒服的,直到今天,出现了又不能修改静态js,jsp等资源的现象.很是苦闷. 经过调错处理之后,发现是jetty报错,可以如下修改解决,jetty defaultsDescriptor 不起作用 在web.xml中新的正确配置如下(使用版本:jetty -> install/jetty-distribution-7.2.0) <servlet> <servlet-name>d