2012-07-11 210 views
-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> 
+1

http://developer.android.com/training/basics/firstapp/starting-activity.html – 2012-07-11 15:26:55

+0

您可以節省時間鏈接@OvidiuLatcu張貼。總是去developer.android.com,如果你沒有找到你的答案來這裏,並搜索一些問題,如果仍然沒有,發佈一個問題。 – 2012-07-11 15:38:08

回答

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);  
     } 
}); 
0

該過程在網站上記錄有關按鈕。谷歌搜索的Android按鈕

<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標籤定義的方法,然後開始一個新的活動或更新視圖。無論你需要做的

0

你也可以做到這一點不同......

您可以在活動實例化一個Button

private Button button; 

裏面的onCreate(Bundle bundle)方法你找到你的按鈕,在定義此活動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上閱讀here基礎。

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); 
    } 
} 
0

你必須學會​​如何在Android的活動/屏幕之間進行切換,你可以找到here一個很好的解釋教程初學者

+0

謝謝你們的幫助 – 2012-07-11 15:45:33