私はアンドロイド開発を読み始めたばかりなので、これに対する非常に簡単な解決策があると確信しています..
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>
前もって感謝します