以前も質問したのですが許可がおりません...
アプリを Android 4.0 の標準にアップグレードし、互換性パッケージ v4 を追加して、古いデバイスでも動作するようにしました。その結果、どういうわけか、カスタム ダイアログ ボックスは 2.3 ではインスタント 1 行ですが、2.2 や 4.0 ではそうではありません。いくつかの画像を表示しています。
そして、ダイアログのXMLファイルは...かなり基本的なものです
<?xml version="1.0" encoding="UTF-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#ffffff"
android:orientation="horizontal"
android:padding="10dp" >
<TextView
android:id="@+id/text"
style="@style/DialogText"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:autoLink="phone|web|email"
android:linksClickable="true"
android:scrollbars="vertical"
android:scrollHorizontally="false"
android:text="@string/about_text_big"
android:textColor="#ff000000"
android:textSize="14.0sp" />
</LinearLayout>
ここで私を助けてください、明らかにコードに問題はありませんか? それとも「基本」ですか?:S