gpt4 book ai didi

android - 在点击监听器上设置滑动菜单

转载 作者:行者123 更新时间:2023-11-29 18:00:54 25 4
gpt4 key购买 nike

在这个程序中,我实现了 sliding menu library .我现在遇到的问题是为这些菜单设置点击监听器。

库要求菜单采用不同的布局,或者至少这是我实现它的方式。我现在想要实现的是为这些菜单选项实现各种 onClick 监听器。

程序看起来像这样(一小部分):

菜单.xml

 <RelativeLayout android:id="@+id/ask_a_question"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
android:layout_marginBottom="5dp"
android:onClick="getQuestion">

<TextView android:layout_alignParentLeft="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/ask_a_question"
android:textColor="#ffffff"
android:layout_marginLeft="15dp"
android:layout_centerVertical="true"/>

<ImageView android:layout_alignParentRight="true"
android:contentDescription="@string/ask_a_question"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/question"
android:layout_marginRight="15dp"/>

</RelativeLayout>

在其 MainActivity.java 上,程序如下所示:

public void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
setBehindContentView(R.layout.menu);

getSlidingMenu().setBehindOffset(100);

ask_a_question = (RelativeLayout)findViewById(R.id.ask_a_question);
ask_a_question.setOnClickListener(new View.OnClickListener() {

@Override
public void onClick(View v) {
// TODO Auto-generated method stub
getQuestion();
}
});
login = (Button)findViewById(R.id.log_in_button);
login.setOnClickListener(new View.OnClickListener() {

@Override
public void onClick(View v) {
// TODO Auto-generated method stub
startActivity(new Intent("com.example.btshome.LOGINACTIVITY"));
}
});
}

public Intent getQuestion()
{
Intent i = new Intent("com.example.btshome.ASKPAGE");
startActivity(i);
return null;
}

返回以下错误:

04-23 19:43:30.030: E/AndroidRuntime(845): FATAL EXCEPTION: main
04-23 19:43:30.030: E/AndroidRuntime(845): android.content.ActivityNotFoundException: No Activity found to handle Intent { act=com.example.btshome.ASKPAGE }
04-23 19:43:30.030: E/AndroidRuntime(845): at android.app.Instrumentation.checkStartActivityResult(Instrumentation.java:1545)
04-23 19:43:30.030: E/AndroidRuntime(845): at android.app.Instrumentation.execStartActivity(Instrumentation.java:1416)
04-23 19:43:30.030: E/AndroidRuntime(845): at android.app.Activity.startActivityForResult(Activity.java:3351)
04-23 19:43:30.030: E/AndroidRuntime(845): at android.app.Activity.startActivityForResult(Activity.java:3312)
04-23 19:43:30.030: E/AndroidRuntime(845): at android.app.Activity.startActivity(Activity.java:3522)
04-23 19:43:30.030: E/AndroidRuntime(845): at android.app.Activity.startActivity(Activity.java:3490)
04-23 19:43:30.030: E/AndroidRuntime(845): at com.example.btshome.MainActivity.getQuestion(MainActivity.java:47)
04-23 19:43:30.030: E/AndroidRuntime(845): at com.example.btshome.MainActivity$1.onClick(MainActivity.java:30)
04-23 19:43:30.030: E/AndroidRuntime(845): at android.view.View.performClick(View.java:4084)
04-23 19:43:30.030: E/AndroidRuntime(845): at android.view.View$PerformClick.run(View.java:16966)
04-23 19:43:30.030: E/AndroidRuntime(845): at android.os.Handler.handleCallback(Handler.java:615)
04-23 19:43:30.030: E/AndroidRuntime(845): at android.os.Handler.dispatchMessage(Handler.java:92)
04-23 19:43:30.030: E/AndroidRuntime(845): at android.os.Looper.loop(Looper.java:137)
04-23 19:43:30.030: E/AndroidRuntime(845): at android.app.ActivityThread.main(ActivityThread.java:4745)
04-23 19:43:30.030: E/AndroidRuntime(845): at java.lang.reflect.Method.invokeNative(Native Method)
04-23 19:43:30.030: E/AndroidRuntime(845): at java.lang.reflect.Method.invoke(Method.java:511)
04-23 19:43:30.030: E/AndroidRuntime(845): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:786)
04-23 19:43:30.030: E/AndroidRuntime(845): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:553)
04-23 19:43:30.030: E/AndroidRuntime(845): at dalvik.system.NativeStart.main(Native Method)

list 页面:

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

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

<activity android:name=".LoginActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="com.example.btshome.LOGINACTIVITY"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</activity>

<activity android:name=".SignUp"
android:label="@string/app_name">
<intent-filter>
<action android:name="com.example.btshome.SIGNUP"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</activity>

<activity android:name=".LoginPage"
android:label="@string/app_name">
<intent-filter>
<action android:name="com.example.btshome.LOGINPAGE"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</activity>

<activity
android:name=".QuestionAsking"
android:label="@string/app_name" >
<intent-filter>
<action android:name="com.example.btshome.ASKPAGE" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

</application>

我在单击时实现此菜单项的方法是否合适?或者这是一个糟糕的方法,因为我必须在我的所有页面上都提供滑动菜单。请帮助。

最佳答案

您的 list 文件中可能没有ASKPAGE Activity 。

在 AndroidManifest.xml 中,在 application 标签内,添加:

<activity android:name=".ASKPAGE">

编辑:

您的 getQuestion() 方法应该如下所示:

public Intent getQuestion()
{
Intent i = new Intent("com.example.btshome.ASKPAGE"); // Set an action in constructor
i.setClass(MainActivity.this, QuestionAsking.class); // Set an Activity class
startActivity(i);
return null;
}

还有一个注意事项 - 我希望您看到您始终在此方法中返回 null

关于android - 在点击监听器上设置滑动菜单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16171562/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com