您好新來的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>
http://developer.android.com/training/basics/firstapp/starting-activity.html – 2012-07-11 15:26:55
您可以節省時間鏈接@OvidiuLatcu張貼。總是去developer.android.com,如果你沒有找到你的答案來這裏,並搜索一些問題,如果仍然沒有,發佈一個問題。 – 2012-07-11 15:38:08