0

私はアンドロイド開発を読み始めたばかりなので、これに対する非常に簡単な解決策があると確信しています..

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 に答える