取个名 2016-03-03 13:49 采纳率: 100%
浏览 2949
已采纳

AndroidApp点击登陆按钮停止运行

图片说明代码找不到哪错了,但还是停止运行了
<?xml version="1.0" encoding="utf-8"?>
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@drawable/znny02">

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="0dip"
    android:orientation="vertical"
    android:layout_weight="1" >
</LinearLayout>

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="0dip"
    android:layout_weight="1"
    android:orientation="vertical" >
<RelativeLayout 
        android:layout_width="match_parent"
        android:layout_height="match_parent" >
    <Button
        android:id="@+id/IP"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"

        android:background="@null"
        android:text="IP设置"
        android:textColor="#000080" />

    </RelativeLayout>
</LinearLayout>

<LinearLayout
     android:layout_width="match_parent"
     android:layout_height="0dp"
     android:layout_weight="1"
     android:orientation="vertical"
     android:background="#ffffff" >
    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent" >
       <TextView 
           android:id="@+id/name"
           android:layout_width="wrap_content"
           android:layout_height="wrap_content"
           android:layout_centerVertical="true"
           android:textSize="25dp"
           android:layout_marginLeft="10dp"
           android:text="账户:"/> 
           <EditText 
               android:id="@+id/username"
               android:layout_toRightOf="@id/name"
               android:layout_width="fill_parent"
               android:layout_height="wrap_content"
               android:layout_marginLeft="5dp"
               android:background="@null"
               android:layout_centerVertical="true"
               android:hint="请输入账户" />
    </RelativeLayout>
</LinearLayout>

<LinearLayout
     android:layout_width="match_parent"
     android:layout_height="0dp"
     android:layout_weight="1"
     android:orientation="vertical"
     android:background="#ffffff" >
    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent" >
       <TextView 
           android:id="@+id/password"
           android:layout_width="wrap_content"
           android:layout_height="wrap_content"
           android:layout_centerVertical="true"
           android:textSize="25dp"
           android:layout_marginLeft="10dp"
           android:text="密码:"/> 
           <EditText 
               android:id="@+id/userpassword"
               android:layout_toRightOf="@id/password"
               android:layout_width="fill_parent"
               android:layout_height="wrap_content"
               android:layout_marginLeft="5dp"
               android:background="@null"
               android:layout_centerVertical="true"
               android:inputType="textPassword"
               android:hint="请输入密码" />
    </RelativeLayout>
</LinearLayout>


<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="0dip"
    android:orientation="vertical"
    android:layout_weight="1" >
    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent" >

    <CheckBox
        android:id="@+id/checkbox"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginLeft="5dp"
    android:layout_centerVertical="true"
    android:text="记住密码"
    android:textColor="#000080" />

    <Button
        android:id="@+id/button2"

    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerInParent="true"
    android:text="注册" 
    android:background="@null"
    android:textColor="#000080" />

    <Button
       android:id="@+id/button1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginRight="5dp"
    android:layout_alignParentRight="true"
    android:background="@null"
    android:text="忘记密码"
    android:textColor="#000080" />
    </RelativeLayout>
</LinearLayout>

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="0dip"
    android:orientation="vertical"
    android:layout_weight="1" >
</LinearLayout>

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="0dip"
    android:orientation="vertical"
    android:layout_weight="1" >

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent" >

        <Button
            android:id="@+id/button3"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_marginLeft="60dp"
            android:text="返回"
            android:textColor="#000080" />
        <Button
            android:id="@+id/button4"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_alignParentRight="true"
            android:layout_marginRight="60dp"
            android:onClick="click"
            android:text="登录"
            android:textColor="#000080" />

    </RelativeLayout>

</LinearLayout>


<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="0dip"
    android:orientation="vertical"
    android:layout_weight="1" >

</LinearLayout>

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="0dip"
    android:orientation="vertical"
    android:layout_weight="1" >
</LinearLayout>

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="0dip"
    android:orientation="vertical"
    android:layout_weight="1" >
</LinearLayout>

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="0dip"
    android:orientation="vertical"
    android:layout_weight="1" >
</LinearLayout>

package com.gfxy.znny;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;

public class MainActivity extends Activity {

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

// Log.i("MainActivity", "onCreate()");
}

public void click(View v) {
    Intent intent=new Intent(this,Activity01.class);
    startActivity(intent);
}

}

package com.gfxy.znny;

import android.app.Activity;
import android.os.Bundle;

public class Activity01 extends Activity {

protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.hjjc);

// Log.i("Activity01", "onCreate()");
}

}

<?xml version="1.0" encoding="utf-8"?>
package="com.gfxy.znny"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="19" />

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launche"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name="com.gfxy.znny.MainActivity"
        android:label="@string/app_name" >
        </activity>
        <activity
            android:name="com.gfxy.znny.GUidt" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity
        android:name="com.gfxy.znny.Activity01"
        android:label="@string/app_name" >

    </activity>


</application>

  • 写回答

4条回答 默认 最新

  • u52983610 2016-03-06 15:12
    关注

    你把MainActivity里的click方法剪切到GUidt里面,因为xml之后从调用它的activity里寻找onclick方法,所以你之前那里会报错

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)

报告相同问题?

悬赏问题

  • ¥15 Android STD快速启动
  • ¥15 如何使用simulink建立一个永磁同步直线电机模型?
  • ¥30 天体光谱图的的绘制并得到星表
  • ¥15 PointNet++的onnx模型只能使用一次
  • ¥20 西南科技大学数字信号处理
  • ¥15 有两个非常“自以为是”烦人的问题急期待大家解决!
  • ¥30 STM32 INMP441无法读取数据
  • ¥15 R语言绘制密度图,一个密度曲线内fill不同颜色如何实现
  • ¥100 求汇川机器人IRCB300控制器和示教器同版本升级固件文件升级包
  • ¥15 用visualstudio2022创建vue项目后无法启动