logcat显示启动但活动未在模拟器中启动

时间:2013-02-23 10:52:21

标签: java android xml android-activity

朋友们,我真的非常奇怪。

我的logcat显示活动已启动,但模拟器只显示空白页面而不是所需的活动(在logcat中,Clfbpg是不会加载的java文件。)

这是logcat。

02-23 16:00:43.237: I/ActivityManager(65): Displayed activity com.tmrepo/.Client: 4387 ms (total 4387 ms)  
02-23 16:00:45.287: D/dalvikvm(293): GC_EXPLICIT freed 46 objects / 2168 bytes in 9619ms  
02-23 16:00:55.946: D/dalvikvm(263): GC_EXTERNAL_ALLOC freed 2219 objects / 86480 bytes in 320ms  
02-23 16:00:56.236: W/KeyCharacterMap(263): No keyboard for id 0  
02-23 16:00:56.236: W/KeyCharacterMap(263): Using default keymap: /system/usr/keychars/qwerty.kcm.bin  
02-23 16:00:58.656: D/dalvikvm(129): GC_EXPLICIT freed 766 objects / 42248 bytes in 7048ms  
02-23 16:01:04.418: I/ActivityManager(65): Starting activity: Intent { cmp=com.tmrepo/.Clwelcome2 }  
02-23 16:01:06.887: I/ActivityManager(65): Displayed activity com.tmrepo/.Clwelcome2: 2112 ms (total 2112 ms)  
02-23 16:01:10.520: D/dalvikvm(702): GC_FOR_MALLOC freed 6993 objects / 306016 bytes in 236ms  
02-23 16:01:15.327: I/ActivityManager(65): Starting activity: Intent { cmp=com.tmrepo/.Clfbpg }  
02-23 16:01:17.237: I/ActivityManager(65): Displayed activity com.tmrepo/.Clfbpg: 1777 ms (total 1777 ms)`

我的应用有很多页面,其中只有一个特定页面未加载。其他页面工作正常。 我做了所有可能的事情来让这个页面运行但却无法得到错误。

我尝试将另一个布局连接到java文件而不是我想要的布局。但一切都是一样的。

我的XML代码是 `

<TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_alignParentTop="true"
    android:layout_marginTop="18dp"
    android:text="@string/feedback"
    android:textColor="#ffffff"
    android:textAppearance="?android:attr/textAppearanceLarge" />

<TextView
    android:id="@+id/texthome"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_alignParentLeft="true"
    android:layout_marginBottom="28dp"
    android:layout_marginLeft="18dp"
    android:text="@string/home"
    android:textAppearance="?android:attr/textAppearanceLarge"
    android:textColor="#ff0057" />

<EditText
    android:id="@+id/tbproname"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@+id/textView1"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="32dp"
    android:ems="10"
    android:hint="@string/proname"
    android:textColor="#ffffff" />



<Button
    android:id="@+id/submit"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@+id/tbproname"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="24dp"
    android:text="@string/feedback" />

`

我认为问题出在java文件中。

我的java文件是 `package com.tmrepo;

import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; import android.widget.EditText; // import android.widget.ScrollView; import android.widget.TextView;

公共类Clfbpg扩展了Activity {

EditText tbproname;
TextView texthome;
Button submit;


public void OnCreate(Bundle savedInstanceState)
{
    super.onCreate(savedInstanceState);
    setContentView(R.layout.feedform);


    tbproname = (EditText)findViewById(R.id.tbproname);
    texthome = (TextView)findViewById(R.id.texthome);
    submit = (Button)findViewById(R.id.submit);
    //scroll = (ScrollView)findViewById(R.id.scroll);

    texthome.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View arg0) {
            // TODO Auto-generated method stub
            Intent1();
            finish();
        }

        public void Intent1() {
            // TODO Auto-generated method stub
            Intent i1 = new Intent();
            i1.setClass(Clfbpg.this,Clwelcome2.class);
            startActivity(i1);          }
    });

    submit.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View v) {
            // TODO Auto-generated method stub
            Intent2();
            finish();
        }

        public void Intent2() {
            // TODO Auto-generated method stub
            Intent i2 = new Intent();
            i2.setClass(Clfbpg.this,Clwelcome2.class);
            startActivity(i2);
        }
    }); 
}}

这里的任何人都可以对这个恼人的问题有所了解吗? 非常感谢。我一直试图解决它2天。

2 个答案:

答案 0 :(得分:1)

永远记住androidmainfest.xml,想一想。确保你首先首先添加到Clfbpg类活动。检查AndroidManifest.xml文件。

<activity android:name="Clfbpg"> 
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</activity>

这应该先打电话。告诉我它。

答案 1 :(得分:0)

您可能需要在AndroidManifest.xml

中添加这两行
<activity android:name="Clfbpg">
    <action android:name="android.intent.action.MAIN" />          <-----
    <category android:name="android.intent.category.LAUNCHER" />  <----
...
</activity>

因此,它会在手机屏幕上创建图标,您就可以启动应用。