私は実際にAndroid用のアプリをコーディングしていますが、何かをするために助けが必要です. この画像で一種のポップアップ メッセージを表示する必要があります: http://img716.imageshack.us/img716/9331/postitz.png。この画像には 2 つの TextView が必要です。そのうちの 1 つはタイトルで、もう 1 つはメッセージです。
独自のレイアウト、独自のスタイルで Dialog のようないくつかのオプションを試しましたが、画像は TextViews のコンテンツをラップするのではなく、すべての画面を埋めます。私も新しいアクティビティでそれをやろうとしましたが、同じように発生し、画像がすべての画面を埋めます。
私の実際のレイアウトはこれです:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:gravity="center_vertical"
android:background="@android:color/white">
<LinearLayout
android:id="@+id/img_postit"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:background="@drawable/postit"
android:orientation="vertical">
<TextView
android:id="@+id/note_titulo"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:padding="30dp"/>
<TextView
android:id="@+id/note_descr"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:padding="30dp"/>
</LinearLayout>
</LinearLayout>
しかし、私はさまざまな組み合わせ、RelativeLayout、FrameLayout を試しましたが、これを行うための解決策が見つかりません。
それを解決する方法の任意のアイデア?.
全てに感謝。