-1

朋友们,我真的被一个非常奇怪的问题所震惊。

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

这是日志猫。

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;

导入android.app.Activity;导入android.content.Intent;导入android.os.Bundle;导入android.view.View;导入 android.view.View.OnClickListener;导入android.widget.Button;导入 android.widget.EditText;//导入android.widget.ScrollView; 导入 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天以来,我一直在尝试解决它。

4

2 回答 2

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>

这应该首先调用。告诉我怎么回事儿。

于 2013-02-23T11:02:49.830 回答
0

您可能需要添加这两行AndroidManifest.xml

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

因此,它将在移动屏幕上创建图标,您将能够启动您的应用程序。

于 2013-02-23T11:02:25.143 回答