gpt4 book ai didi

android - 新 Android 项目中缺少 main.xml - Eclipse OS X

转载 作者:行者123 更新时间:2023-11-29 00:37:59 24 4
gpt4 key购买 nike

我正在关注这个 Android tutorial .我试图找到 main.xml 但它不在 res/layout 中。我确实有 res/layout/activity_my_first.xml 但是此文件的根节点是 RelativeLayout 而不是教程中的 LinearLayout如何获取 main.xml?

也许我可以自己创造。或者也许我拥有的 XML 文件是更新版本的 ADT 插件中 main.xml 的替代品。我是 Android 和 Eclipse 的新手,所以有点卡住了。

干杯!

最佳答案

您只需将 activity_my_first.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="horizontal">
<EditText android:id="@+id/edit_message"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:hint="@string/edit_message" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/button_send" />
</LinearLayout>

或者创建另一个名为 main.xml 的 xml。本教程假设您已经创建了 im guessing。

只需确保在您的 Activity 中的 onCreate 方法中

setContentView(R.layout.activity_my_first);

关于android - 新 Android 项目中缺少 main.xml - Eclipse OS X,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11369048/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com