我正在学习构建android应用程序,我需要一些具体帮助。我似乎无法确定需要更改哪些模板代码位,以及哪些位是静态的。在LAYOUT文件夹中,我的ACTIVITY_MAIN.XML内容如下: <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="horizontal"> <Button android:id="@+id/button1" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="@string/main_buttons_photos" /> </LinearLayout>接下来,我有我的第二个活动ACTIVITY_SEND_PHOTOS.XML这是 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" > <TextView android:id="@+id/textView2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerHorizontal="true" android:layout_centerVertical="true" android:text="@string/hello_world" tools:context=".SendPhotos" /> <TextView android:id="@+id/textView1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentLeft="true" android:layout_alignParentTop="true" android:text="@string/title_activity_send_photos" android:textAppearance="?android:attr/textAppearanceLarge" /> </RelativeLayout>然后,我有了MainActivity.java(这是.class吗?),它读取了com.example.assent.bc包; import android.os.Bundle; import android.app.Activity; import android.view.Menu; import android.view.View; public class MainActivity extends Activity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); }我希望主活动中的按钮可以链接到我的sendphotos活动,只需打开该活动,不要花哨,不发送任何数据或任何东西。我知道我需要我的地方 Intent i = new Intent(FromActivity.this, ToActivity.class); startActivity(i);但我不知道用什么替换ToActivity.class或在其他地方需要什么。
3 回答
不负相思意
TA贡献1777条经验 获得超10个赞
来自活动:您目前在哪里?
活动:您想去哪里?
Intent i = new Intent( MainActivity.this, SendPhotos.class);
startActivity(i);
两个活动都必须包含在清单文件中,否则将找不到类文件并强制关闭。
编辑您的Mainactivity.java
crate button's object;
现在为click事件编写代码。
Button btn = (button)findViewById(R.id.button1);
btn.LoginButton.setOnClickListener(new View.OnClickListener()
{
@Override
public void onClick(View v)
{
//put your intent code here
}
});
希望它对您有用。
- 3 回答
- 0 关注
- 423 浏览
添加回答
举报
0/150
提交
取消