0

我是新来的 > 我需要一些帮助来构建一些代码,但我找不到任何代码 ..> 我有一些项目我必须完成 > 所以我听说这个网站正在为我们提供专业开发人员和程序员的帮助.我的问题:当我打开任何 android 应用程序时如何显示我的布局(xml 文件)?>> 我的意思是当我打开任何 android 应用程序或替换我的应用程序和 android 设备中的任何应用程序之间的活动时我如何调用我的活动....所以当我在我的设备中打开任何 android 应用程序时,结果将显示我的布局( xml 文件)...那我该怎么做呢?

我希望有人回答我....我会很感激我被称为:(amjad)

4

3 回答 3

2

实际上假设您在 Eclipse 的 src 文件夹中有 1 个活动名称作为 MainActivity,并且在 res->layout 中有 xml 文件名作为 main

那么你必须在你的活动中添加以下代码

setContentView(R.layout.main);

通过这个你可以使用包含在 xml 文件中

于 2012-11-01T10:42:57.277 回答
2

dude check this guy :) he has a beginners tutorial series with index, so you can check any certain topic ,or follow one after another to save you time in learning best of luck ;) http://www.vogella.com/articles/Android/article.html

于 2012-11-01T12:56:59.237 回答
0

Please refer to below link (basic tutorial for Android from Android/Google team): http://developer.android.com/training/basics/firstapp/building-ui.html

Update: I see that you have edited the question with more details. But, I am not sure if there is a way to call your app automatically when some one starts another App in the device unless it's a system level app. What you can do is provide one public intent to be called by any other apps and then at load time, the app calls your intent and hence can display your layout/xml.

于 2012-11-01T14:18:52.013 回答