0

我刚刚开始阅读 android 开发,所以我敢打赌有一个非常简单的解决方案。

我按照 Android 开发者网站上的指南构建了示例 UI。图形布局显示按钮和文本输入框没有问题,因此代码似乎没有问题。由于某种原因,它不会显示在 AVT 上,或者当我在手机上安装 APK 时……我正在使用 Galaxy Nexus,并将 AVT 也设置为 Galaxy Nexus。

我已经更新了 ADT 并尝试了几件事,但我假设我可能忘记配置一些东西?有人可以帮忙吗?

我是新手,所以很好;)

这是xml代码:

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout 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"
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" 
    android:onClick="sendMessage" />

</LinearLayout>

提前致谢

4

1 回答 1

0
<LinearLayout 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"
android:orientation="horizontal">

<EditText android:id="@+id/edit_message"    
    android:layout_width="wrap_content"
    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" 
    android:onClick="sendMessage" />

</LinearLayout>

还请检查您是否在传递此 xml 布局的活动中调用了 setcontentview 函数

于 2013-03-02T13:08:29.687 回答