レイアウトに a を配置することはできないと思いますTextView
。できることは、組み込みの Android スタイルの 1 つからスタイルを選択することです。そうすれば、他のすべてのアイコン/ウィジェット ラベルと一致するはずです。これが他の API バージョンでも機能することを願っていますが、私の ICS 電話では正しく表示されることがわかっています。がここで使用するのに最適かどうかもわかりませFrameLayout
んが、少し実験してみようと思いました。重要な部分はTextView
最後にあります。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/LinearLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<FrameLayout
android:id="@+id/FrameLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1" >
<ImageButton
android:id="@+id/buttonimg"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/appwidget_dark_bg_clickable"
android:clickable="true"
android:contentDescription="@string/app_name" />
<ImageView
android:id="@+id/imageView1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:contentDescription="@string/app_name"
android:src="@drawable/arrow_dark" />
</FrameLayout>
<TextView
android:id="@+id/labelTextView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:textAppearance="@android:style/TextAppearance.DeviceDefault.Widget"
android:text="@string/widgetlabeldefault" />
</LinearLayout>