我有两个布局(xml文件),我想从一个页面翻到另一个页面,两个xml文件是main.xml和register.xml,如果我点击main.xml中的signin按钮,页面应该转动并显示register.xml和register.xml如果我点击提交按钮它应该转向main.xml我尝试了很多活动,我冷静地做它,因为我是新手android
请有人为我分享代码,
这是我的两个xml代码
main.xml中
<LinearLayout
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp" android:background="@drawable/loginapp">
<RelativeLayout android:id="@+id/relativeLayout1" android:gravity="center" android:layout_marginTop="25dip" android:layout_height="177dip" android:background="@drawable/login_form_bg_green" android:layout_width="296dip">
<EditText android:layout_marginRight="0dip" android:id="@+id/userNameBox" android:layout_width="200px" android:background="@android:drawable/editbox_background" android:maxLines="1" android:layout_marginLeft="85dip" android:inputType="text" android:layout_height="wrap_content"></EditText>
<EditText android:layout_marginRight="0dip" android:id="@+id/passwordBox" android:layout_width="200px" android:background="@android:drawable/editbox_background" android:maxLines="1" android:layout_marginTop="45dip" android:layout_marginLeft="85dip" android:inputType="text|textVisiblePassword" android:layout_height="wrap_content"></EditText>
</RelativeLayout>
<LinearLayout android:id="@+id/ll_three" android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="horizontal" android:layout_below="@+id/ll_two" android:gravity="center">
<Button
android:text="Sign In"
android:id="@+id/Button01"
android:layout_width="wrap_content"
android:layout_marginTop="5dip"
android:layout_marginRight="15dip"
android:layout_height="wrap_content"/>
<Button
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_marginTop="5dip"
android:id="@+id/Button02"
android:text="New user"/>
register.xml是
<TableRow>
<TextView android:id="@+id/TextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=" REGISTER:"/>
</TableRow>
<TableRow>
<TextView android:id="@+id/TextView01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="First Name:"/>
<EditText android:layout_marginRight="0dip"
android:id="@+id/userNameBox" android:background="@android:drawable/editbox_background"
android:maxLines="1" android:layout_marginLeft="15dip" android:layout_weight="1"
android:inputType="text" android:layout_height="35px" android:layout_width="0dip"></EditText>
</TableRow>
<TableRow>
<TextView android:id="@+id/TextView02"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Last Name:"/>
<EditText android:layout_marginRight="0dip"
android:id="@+id/userNameBox" android:layout_width="200px" android:layout_weight="1"
android:background="@android:drawable/editbox_background" android:maxLines="1"
android:layout_marginLeft="15dip" android:inputType="text"
android:layout_height="35px"></EditText>
</TableRow>
<TableRow>
<TextView android:id="@+id/TextView03"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Email:"/>
<EditText
android:id="@+id/userNameBox" android:layout_width="200px"
android:background="@android:drawable/editbox_background" android:layout_weight="1"
android:maxLines="1" android:layout_marginLeft="15dip" android:layout_marginRight="0dip"
android:inputType="text" android:layout_height="35px">
</EditText>
</TableRow>
<TableRow>
<TextView android:id="@+id/TextView03"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Mobile No:"/>
<EditText android:layout_marginRight="0dip"
android:id="@+id/userNameBox" android:layout_width="200px" android:layout_weight="1"
android:background="@android:drawable/editbox_background"
android:maxLines="1" android:layout_marginLeft="15dip"
android:inputType="text" android:layout_height="35px">
</EditText>
</TableRow>
这是我的JAVA文件
login.java
package com.android;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
public class Login extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
Button newuser = (Button) findViewById(R.id.Button02);
newuser.setOnClickListener(new View.OnClickListener() {
public void onClick(View view) {
Intent myIntent = new Intent(view.getContext(), Register.class);
startActivityForResult(myIntent, 0);
}
});
}
}
Register.java
package com.android;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
public class Register extends Activity {
/** Called when the activity is first created. */
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.register);
Button register = (Button) findViewById(R.id.Button03);
register.setOnClickListener(new View.OnClickListener() {
public void onClick(View view) {
Intent intent = new Intent();
setResult(RESULT_OK, intent);
finish();
}
});
}}
在调试项目时,这些是我发现的DDMS错误
Android [Android应用]
DalvikVM [本地主机:8759]
线程[&lt; 1&gt; main](Suspended(例外RuntimeException))
ActivityThread.performLaunchActivity(ActivityThread $ ActivityRecord,Intent)行:2585
ActivityThread.handleLaunchActivity(ActivityThread $ ActivityRecord,Intent)行:2679
ActivityThread.access $ 2300(ActivityThread,ActivityThread $ ActivityRecord,Intent)行:125
ActivityThread $ H.handleMessage(消息)行:2033
ActivityThread $ H(Handler).dispatchMessage(Message)行:99
Looper.loop()行:123
ActivityThread.main(String [])行:4627
Method.invokeNative(Object,Object [],Class,Class [],Class,int,boolean)line:not available [native method]
Method.invoke(Object,Object ...)行:521
ZygoteInit $ MethodAndArgsCaller.run()行:868
ZygoteInit.main(String [])行:626
NativeStart.main(String [])行:不可用[native method]
线程[&lt; 6&gt; Binder Thread#2](正在运行)
线程[&lt; 5&gt; Binder Thread#1](正在运行
LOGCAT显示此
04-24 16:24:18.965:ERROR / HierarchicalStateMachine(58):TetherMaster - unhandledMessage:msg.what = 3 04-24 16:24:20.415:WARN / ActivityManager(58):HistoryRecord的活动空闲超时{44f2b188 com.android.launcher / com.android.launcher2.Launcher} 04-24 16:24:22.965:WARN / WindowManager(58):应用程序冻结超时已到期。 04-24 16:24:22.965:WARN / WindowManager(58):强制清除冻结:AppWindowToken {450698d0 token = HistoryRecord {44f2b188 com.android.launcher / com.android.launcher2.Launcher}} 04-24 16:24:23.645:WARN / GoogleLoginService(180):设备没有帐户:发送Intent {act = com.google.android.gsf.LOGIN_ACCOUNTS_MISSING} 04-24 16:24:31.296:WARN / PackageManager(58):pkg:com.android.cardioworld的代码路径从/data/app/com.android.cardioworld-1.apk更改为/ data / app / com。 android.cardioworld-2.apk 04-24 16:24:31.296:WARN / PackageManager(58):pkg:com.android.cardioworld的资源路径从/data/app/com.android.cardioworld-1.apk更改为/ data / app / com。 android.cardioworld-2.apk 04-24 16:24:34.216:WARN / RecognitionManagerService(58):找不到可用的语音识别服务 04-24 16:24:36.214:WARN / SystemClock(123):无法将rtc设置为1303642476:参数无效 04-24 16:24:41.174:WARN / ActivityThread(318):应用程序com.android.cardioworld正在等待端口8100上的调试器... 04-24 16:24:50.686:WARN / ActivityManager(58):启动超时已过期,放弃唤醒锁定! 04-24 16:24:51.170:WARN / ActivityManager(58):HistoryRecord的活动空闲超时{450caa98 com.android.cardioworld / .login}
答案 0 :(得分:1)
如果你想更改布局,你必须在源文件夹中创建新的Activity类,并在创建时将内容视图设置为你想要的布局。同时不要忘记在应用程序内的Manifest文件中添加活动, 例如: 有很多方法可以做到这一点,但我喜欢这样做:
定义一个按钮:Button btnSignIn; 然后在创建设置布局并初始化按钮: btnSignIn =(Button)findViewByid(R.id.btnSingIn); btnSignIn.setOnClickListener(本);
你会得到一个错误,但是把你的鼠标指针放在onClick的集合上...并选择让你的主要ActivityClass'impelment onClickListener.And然后在主类上相同并选择添加未实现的方法:这将是一个广告设置onClick(View v)方法,在这里你可以这样做:
switch(v.getID()){
案例R.id.btnSingIn: startActivity(new Intent(getBaseContext(),SignIn.class)); 打破; 案例R. ... //你可以继续。
但是我不知道你是否可以在没有开始新活动的情况下改变布局。如果你发现了 回复:))。
希望它有所帮助!
}
答案 1 :(得分:0)
在Register.java上,我可以看到:
Button next = (Button) findViewById(R.id.Button01);
但在此之前,有:
setContentView(R.layout.register);
然而,Button01不在“注册”,而在主要。注册表上根本没有按钮,是吗?