我有2個項目,我想在其他項目中嵌入項目。我已經創建了2個項目,並將項目作爲庫文件並插入到其他項目中,但我仍然無法使其工作。我採取了一項簡單的活動,並希望顯示Toast消息,使用Intent我已經給出了下一個項目庫的地址。這是主(第一個)項目的代碼。在當前項目中嵌入另一個項目
public class MainActivity extends Activity {
public final static String EXTRA_MESSAGE = "com.example.sec_pro";
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Button b = (Button)findViewById(R.id.button1);
b.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
Toast.makeText(getApplicationContext(), "First Activity", Toast.LENGTH_SHORT).show();
Intent intent = new Intent(MainActivity.this, com.example.sec_pro.MainActivity.class);
EditText editText = (EditText) findViewById(R.id.editText1);
String message = editText.getText().toString();
intent.putExtra(EXTRA_MESSAGE, message);
startActivity(intent);
}
});
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
清單文件
<?xml version="1.0" encoding="utf-8"?>
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="18" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.integrate.MainActivity"
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="com.example.sec_pro.MainActivity" >
</activity>
</application>
現在這個 「sec_pro」 是我的,我都插在第一個項目下一個項目的庫文件。 請幫忙。 在此先感謝。
你能粘貼您的清單文件。 – Yuvi
在你的庫項目中是com.example.sec_pro.MainActivity?您是否已將com.example.sec_pro.MainActivity活動標籤添加到您的主項目清單中? – Devrim
我做了修改並編輯了問題。但是現在我在sec_pro lib文件中有一張圖片,它沒有顯示出來。 – Sherry