0

私のアプリでは、多くのダイアログ (ポップアップ) を使用しており、角を丸くしたいと考えています。

これらのポップアップを作成する方法は次のとおりです。

Javaコードでは、次のような関数を作成します:

private void showpopup(){

   dialog = new Dialog(this);
   dialog.getWindow().requestFeature(Window.FEATURE_NO_TITLE);
   dialog.setContentView(getLayoutInflater().inflate(R.layout.popup, null));
   dialog.setCancelable(false);



    TextView fin = (TextView) dialog.findViewById(R.id.solu);
    fin.setText("¡¡safsfasfsafs!!");  


   fin.setOnClickListener(new OnClickListener() {
           public void onClick(View v) {
               dialog.dismiss();
               }

   });   
  dialog.show();
}

私がそこで呼び出すレイアウトは、次のように作成されます。

<?xml version="1.0" encoding="utf-8" ?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:gravity="center"
  >

    <LinearLayout
        android:id="@+id/linearLayout1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
          android:background="@drawable/shape"
        android:orientation="vertical"
        android:padding="10dp" 
        >


<TextView
    android:id="@+id/solu"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textSize="25sp"
    android:padding="10dp"
    android:textAppearance="?android:attr/textAppearanceLarge" />
  </LinearLayout>

</LinearLayout>

最後に、バックグラウンドで呼び出す xml の「形状」は次のとおりです。

<?xml version="1.0" encoding="utf-8"?>

<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >

<corners android:radius="20dp"/>

<stroke
android:width="1dp"
android:color="@color/black"/>

</shape>

その結果、次のようになります。

ここに画像の説明を入力

ご覧のとおり、私は私が望むものを達成していません...

4

1 に答える 1

7

ここからの私の答えを使用してみてください:アクティビティの丸みを帯びたダイアログテーマを取得する方法(あなたがやろうとしていることと同じです)。カスタム テーマを作成します (独自のシェイプ ドローアブルへの参照を作成します)。

<?xml version="1.0" encoding="utf-8"?>
<resources>

    <style name="ThemeWithCorners" parent="android:Theme.Dialog">
        <item name="android:windowBackground">@drawable/another_test_drawable</item>
    </style>


</resources>

(これは になりますres/themes.xml)。次に、テーマをコンストラクターに追加しDialogます。

dialog = new Dialog(this, R.style.ThemeWithCorners);
于 2012-05-22T19:05:32.343 に答える