2012-03-12 120 views
1

基本上我會包括14更多的按鈕在這個和所有這些將去同樣的活動,只是在第二個活動的微調更改。所以我不想爲每個按鈕創建一個Intent對象來導致相同的活動(因爲它會減慢應用程序的速度)。因此,我將標籤分配給按鈕以獲取標識,並嘗試將該標識傳遞給新活動。但它不工作。 AVD只顯示第一個活動,點擊按鈕後沒有任何反應。無法切換到另一個活動後,點擊按鈕

我的主屏幕(測試1)活性:

public class Test1Activity extends Activity { 


public static final String pass="com.sanjay.test1._clicked"; 
@Override 
public void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.main); 
Button button1=(Button) findViewById(R.id.button1); 
Button button2=(Button) findViewById(R.id.button2); 

button1.setId(1); 
button2.setId(2); 

button1.setOnClickListener(new MyOnClickListener()); 
button2.setOnClickListener(new MyOnClickListener()); 

} 
private class MyOnClickListener implements OnClickListener{ 
@Override 
public void onClick(View v) 
{ 
int id=v.getId(); 
Intent i=new Intent(Test1Activity.this,Sanjay.class); 
i.putExtra(pass, id); 

} 

} 
} 

main.xml中

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:layout_width="fill_parent" 
android:layout_height="fill_parent" 
android:orientation="vertical" > 

<Button 
    android:id="@+id/button1" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:text="Length" /> 

<Button 
    android:id="@+id/button2" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:text="Weight" /> 

</LinearLayout> 

所述第二類(桑傑)活性:

public class Sanjay extends Activity { 

/** Called when the activity is first created. */ 
int a; 
TextView text; 
@Override 
public void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.second); 

    text=(TextView) findViewById(R.id.text); 
    a=getIntent().getExtras().getInt(Test1Activity.pass); 

    text.setText(" "+a); 
    // TODO Auto-generated method stub 
} 

} 

Second.xml:

<?xml version="1.0" encoding="UTF-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:id="@+id/linearLayout1" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" > 

    <TextView 
     android:id="@+id/text" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content"/> 

</LinearLayout> 

AndroidManifest.xml中

<?xml version="1.0" encoding="utf-8"?> 
<manifest xmlns:android="http://schemas.android.com/apk/res/android" 
package="com.sanjay.rotation" 
android:versionCode="1" 
android:versionName="1.0" > 

<uses-sdk android:minSdkVersion="15" /> 

<application 
    android:icon="@drawable/ic_launcher" 
    android:label="@string/app_name" > 
    <activity 
     android:name=".RotationActivity" 
     android:label="@string/app_name" > 
     <intent-filter> 
      <action android:name="android.intent.action.MAIN" /> 

      <category android:name="android.intent.category.LAUNCHER" /> 
     </intent-filter> 
    </activity> 
</application> 

</manifest> 
+0

您創建了意圖但未啓動該活動。所以用意向消息開始活動。意圖我=新的意圖(...); startActivity(ⅰ); – Jayabal 2012-03-12 13:54:04

回答

1

您需要在onclick函數添加startActivity(我)如果沒有活動將不會開始。而且您應該將其添加到您的Android Manifest中。

像這樣:

private class MyOnClickListener implements OnClickListener{ 
@Override 
public void onClick(View v) 
{ 
int id=v.getId(); 
Intent i=new Intent(Test1Activity.this,Sanjay.class); 
i.putExtra(pass, id); 
startActivity(i); 

} 

} 

而且您的清單:

<?xml version="1.0" encoding="utf-8"?> 
<manifest xmlns:android="http://schemas.android.com/apk/res/android" 
package="com.sanjay.rotation" 
android:versionCode="1" 
android:versionName="1.0" > 

<uses-sdk android:minSdkVersion="15" /> 

<application 
android:icon="@drawable/ic_launcher" 
android:label="@string/app_name" > 
<activity 
    android:name=".RotationActivity" 
    android:label="@string/app_name" > 
    <intent-filter> 
     <action android:name="android.intent.action.MAIN" /> 

     <category android:name="android.intent.category.LAUNCHER" /> 
    </intent-filter> 
</activity> 
<activity 
    android:name=".Sanjay" 
    android:label="Sanjay Label"> 
</activity> 
</application> 

</manifest> 
+0

謝謝露西亞!我完全忘記了初始活動,但不知道我需要將它包含在Manifest中。現在工作奇妙:D @Lucia – Exorcist 2012-03-12 14:02:18

1

你的活動Sanjay需要一個進入清單。

<activity 
     android:name=".Sanjay" 
     android:label="@string/app_name" > 
</activity> 
0

您不應該使用setId()來存儲您的任意數據。這是系統用來獲取對視圖的引用的ID。

查看有一個setTag()方法,用於存儲任意數據。您應該使用Tag而不是Id。像這樣:

button1.setTag(1); 
button2.setTag(2); 

,然後將它們拉回來了這種方式:

int id= (Integer)v.getTag(); 
+0

你的意思是'int id =(Integer)v.setTag(1);'這也會給第一個按鈕賦值'1'嗎? – Exorcist 2012-03-12 14:05:08

+0

不,這是getTag()沒有設置。你不需要傳遞任何參數。但你需要做到這一點{g} etTag() – FoamyGuy 2012-03-12 14:08:53

+0

感謝您的建議。我會試試看。非常感激。 – Exorcist 2012-03-12 14:31:36

0

您沒有在Android清單申報你的第二個活動。收藏此您<application>標籤中:

<activity android:name=".Sanjay"> 
</activity> 

作爲建議保持始終注視logcat的,在這種情況下,你會發現一個警告信息,告訴你這個問題。

+0

你可以請建議如何使用Logcat?@YuviDroid – Exorcist 2012-03-12 13:57:45

+0

當然。在Eclipse中,選擇「窗口」,「打開透視圖」,「DDMS」(如果您沒有找到它,請選擇「其他..」)。然後在底部您應該看到您的LogCat視圖。然後,當您從設備視圖中選擇連接的設備時,LogCat將開始更新,您將看到所有日誌消息。 – YuviDroid 2012-03-12 14:01:56

+0

我並不是說要啓動LogCat。我的意思是從中提取信息。你看我剛開始與Android.Thanking你預期。 – Exorcist 2012-03-12 14:10:57

相關問題