-1

嗨,我是 android 新手,花了 10 多个小时寻找这个答案,但我似乎无法找到并理解它。我在主 xml 页面。我正在尝试创建一个转到另一个页面的按钮。我需要最简单和最简单的方法来做到这一点。有人可以帮帮我吗?这是我的主要 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/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:layout_centerVertical="true"
    android:padding="@dimen/padding_medium"
    android:text="@string/hello_world"
    tools:context=".MainActivity" />

<Button
    android:id="@+id/button1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@+id/textView1"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="66dp"
    android:text="Button" />

</RelativeLayout>
4

5 回答 5

1
<Button 
    android:id="@+id/button1" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_below="@+id/textView1" 
    android:layout_centerHorizontal="true" 
    android:layout_marginTop="66dp" 
    android:text="Button" /> 

转到您的活动 初始化您的按钮

Button btn=(Button)findViewById(R.id.button1);
// Register listener to button btn
btn.setOnClickListener(new OnClickListener() {

    public void onClick(View v) {

            // your action

            Intent newActivityIntent= new Intent(currentActivity.this, NewClass.class);
            startActivity(newActivityIntent);       
        }
});
于 2012-07-11T15:44:29.853 回答
0

此过程记录在有关按钮的网站上。谷歌搜索安卓按钮

<Button
 android:id="@+id/button1"
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:layout_below="@+id/textView1"
 android:layout_centerHorizontal="true"
 android:layout_marginTop="66dp"
 android:text="Button"
 android:clickable="true"
 android:onClick"insertMethodNameHere"
 />  

这将调用您在onClick标签中定义的方法,然后启动新活动或更新视图。无论您需要做什么

于 2012-07-11T15:29:31.857 回答
0

你也可以做不同的...

您可以在 Activity中实例化一个Button :

private Button button;

在该onCreate(Bundle bundle)方法中,您可以找到您的按钮,如此 Activity XML 中定义的那样,这是您使用的setContentView(R.layout.yourxml);

button = (Button) findViewById(R.id.button);

然后你使用OnClickListener

button.setOnClickListener(new View.OnClickListener() {
         public void onClick(View v) {
             // Perform action on click
         }
     });

在 onClick 方法中,您实例化了一个Intent

Intent intent = new Intent(CurrentActivity.this, ActivityToGo.class);

CurrentActivity = 你的那个,而 ActivityToGo 你想要加载的那个。

startActivity();

在此处阅读 Android 基础知识。

于 2012-07-11T15:36:10.250 回答
0
public class MyActivity extends Activity implements OnClickListener {

    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        Button button = (Button) findViewById(R.id.button1);
        button.setOnClickListener(this);
    }

    public void onClick(View v) {
        // Use a switch on v.getId() if you have multiple clickable views.
        // Since there's just one button, ...
        Intent intent = new Intent(this, TargetActivity.class;
        startActivity(intent);
    }
}
于 2012-07-11T15:37:21.780 回答
0

你必须学习如何在 Android 中的活动/屏幕之间切换,你可以在这里找到一个很好的初学者教程

于 2012-07-11T15:38:54.927 回答