Androidダイアログ:タイトルバーの削除


108

ソースを特定できない奇妙な動作があります。

私はクラシックで私のアプリを持っています

requestWindowFeature(Window.FEATURE_NO_TITLE);

タイトル/ステータスバーを削除します。

次に、ユーザーが情報(名前など)を入力できるようにするダイアログボックスを作成します

物理キーボードでは問題ありませんが、仮想キーボードを使用すると、奇妙な動作が発生します。

仮想キーボードのキーを押すたびに、タイトル/ステータスバーが再び表示され、すべてのキーボードレイアウトを押して再び消えます(アプリケーションを起動したときのアニメーションのように)

ここにいくつかのコードがあります:

        dialog = new Dialog(context);
        dialog.setContentView(R.layout.logindialog);
        dialog.setTitle("Login:");

        WindowManager.LayoutParams a = dialog.getWindow().getAttributes();

//      dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);

        a.dimAmount = 0;
        dialog.getWindow().setAttributes(a);

        dialog.setCancelable(true);
        dialog.getWindow().setLayout(LayoutParams.FILL_PARENT,LayoutParams.FILL_PARENT);

その後

dialog.show();

私は試した

dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);

しかし、それは私のアプリをクラッシュさせます。

ここにXMLがあります

    <TextView android:id="@+id/LoginText"
        android:gravity="fill"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Login:">
    </TextView>         
    <EditText android:id="@+id/LoginEdit"
        android:layout_height="wrap_content"
        android:singleLine="true"
        android:text="jason"
        android:layout_width="200sp"/>
    <TextView android:id="@+id/PasswordText"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Password:">
    </TextView>         
    <EditText android:id="@+id/PasswordEdit"
        android:layout_height="wrap_content"
        android:singleLine="true"
        android:text="welcome"
        android:layout_width="200sp"
        android:password="true"/>
<LinearLayout 
    android:id="@+id/test2"
    android:gravity="center_horizontal"
    android:orientation="horizontal"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content">
<Button android:id="@+id/LoginButton"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:text="Login" />
<Button android:id="@+id/CreateButton"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:text="Create" />
<Button android:id="@+id/CancelLogin"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:text="Cancel" />
</LinearLayout>/>


dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);を使用する場合は、logcatをポストします。また、上記のコード行を使用している間は、dialog.setTitle( "Login:");を使用しないでください。
ingsaurabh

提案をありがとうございますが、問題ではありません。キーボードで何かを入力すると、キーを押すたびにステータスバーが表示されたり消えたりします。
Jason Rogers

回答:


434

使用する、

dialog.requestWindowFeature(Window.FEATURE_NO_TITLE); //before     
dialog.setContentView(R.layout.logindialog);

提案をありがとうございますが、問題ではありません。キーボードで何かを入力すると、キーを押すたびにステータスバーが表示されたり消えたりします。
Jason Rogers

9
一部のデバイスでは、これによりダイアログレイアウトの幅が失われますが、高さは維持されます。.show()の前にこれを追加すると、すでにxmlレイアウトで設定されているにもかかわらず、修正されていることがわかりました。dialog.getWindow()。setLayout(WindowManager.LayoutParams.MATCH_PARENT、WindowManager.LayoutParams.WRAP_CONTENT);
a54studio 2015

1
DialogFragmentの継承の場合は、getDialog().requestWindowFeature(Window.FEATURE_NO_TITLE);内部に配置する必要がありonCreateViewます。
アントンホロビン

1
あなたがAppCompatDialogを使用している場合は、使用: dialog.supportRequestWindowFeature(Window.FEATURE_NO_TITLE);
Firzen

24

styles.xmlに新しいスタイルを作成する

<style name="myDialog" parent="android:style/Theme.Dialog">
   <item name="android:windowNoTitle">true</item>
</style>

次に、これをマニフェストに追加します。

 <activity android:name=".youractivity" android:theme="@style/myDialog"></activity>

14

上記のすべての回答がAppCompatDialogで機能しない

AppCompatDialogを使用している場合は、これを試してください

重要な注意: setContentViewを呼び出す前にこれを設定してください

dialog.supportRequestWindowFeature(Window.FEATURE_NO_TITLE);


ありがとう、それが私の問題でした。
gregko 2018

5

ダイアログに表示されるXMLを作成します。これはactivity_no_title_dialogです。

final Dialog dialog1 = new Dialog(context);
dialog1.requestWindowFeature(Window.FEATURE_NO_TITLE);
dialog1.setContentView(R.layout.activity_no_title_dialog);
dialog1.show();

2

タイトルバーを表示しないようにAndroidマニフェストファイルでテーマを定義することもできます。

android:theme="@android:style/Theme.Light.NoTitleBar"タイトルバーを表示したくないアクティビティでテーマを定義するだけです

例:-

    <uses-sdk android:minSdkVersion="4"android:targetSdkVersion="4" />
<application android:icon="@drawable/icon" android:label="@string/app_name">
    <activity android:name=".splash"
              android:label="@string/app_name" android:screenOrientation="portrait"
              android:theme="@android:style/Theme.Light.NoTitleBar">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

<activity android:name="main" android:screenOrientation="portrait" android:theme="@android:style/Theme.Light.NoTitleBar"></activity>


ステータスバーのないアクティビティは既にありますが、仮想キーボードで入力すると、アクティビティを開始したときと同じように、ステータスバーが表示されたり消えたり(すべてのレイアウトを押したり)したりします。今回のみ、キーボードに触れるたび
Jason Rogers

2

カスタムビューを使用している場合は、このようなコンテンツビューを追加する前にウィンドウ機能をリクエストすることを覚えておいてください

dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
dialog.setContentView(view);
dialog.show();

1

setcontentviewの前に以下のコードを使用します:-

dialog.requestWindowFeature(Window.FEATURE_NO_TITLE); 
dialog.setContentView(R.layout.custom_dialog);

注:-上記のコードは上記を使用する必要がありますdialog.setContentView(R.layout.custom_dialog);

XMLでテーマを使用する

android:theme="@android:style/Theme.NoTitleBar"

また、styles.xml:

<style name="hidetitle" parent="android:style/Theme.Dialog">
   <item name="android:windowNoTitle">true</item>
</style>

その後:

Dialog dialog_hidetitle_example = new Dialog(context, R.style.hidetitle);

1

私はAndroidの初心者で、タイトルバーを取り除こうとしているこの質問に出くわしました。

アクティビティを使用して、ダイアログとして表示しています。私はテーマを探し回っていて、デフォルトのテーマの便利なビットに出くわしました。

AndroidManifest.xmlタイトルバーが表示されているときに使用していた私のコードは次のとおりです。

<activity
    android:name=".AlertDialog"
    android:theme="@android:style/Theme.Holo.Dialog"

    >

</activity>

これが私の望ましい結果をもたらした変更です:

<activity
    android:name=".AlertDialog"
    android:theme="@android:style/Theme.Holo.Dialog.NoActionBar"

    >

</activity>

先ほど述べたように、私はまだAndroidを使い始めたばかりなので、望ましくない副作用が発生する可能性がありますが、タイトルバーをダイアログから削除するだけで、望んだ結果が得られたようです。


1

私は次のバリアントを使用しています:

私のカスタムダイアログのアクティビティ:

public class AlertDialogue extends AppCompatActivity {

    Button btnOk;
    TextView textDialog;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        supportRequestWindowFeature(Window.FEATURE_NO_TITLE);
        setContentView(R.layout.activity_alert_dialogue);

        textDialog = (TextView)findViewById(R.id.text_dialog) ;
        textDialog.setText("Hello, I'm the dialog text!");

        btnOk = (Button) findViewById(R.id.button_dialog);
        btnOk.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                finish();
            }
        });
    }
}

activity_alert_dialogue.xml:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="300dp"
    android:layout_height="wrap_content"
    tools:context=".AlertDialogue">

    <TextView
        android:id="@+id/text_dialog"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:padding="24dp"
        android:text="Hello, I'm the dialog text!"
        android:textColor="@android:color/darker_gray"
        android:textSize="16dp"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <Button
        android:id="@+id/button_dialog"
        android:layout_width="wrap_content"
        android:layout_height="36dp"
        android:layout_margin="8dp"
        android:background="@android:color/transparent"
        android:text="Ok"
        android:textColor="@android:color/black"
        android:textSize="14dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/text_dialog" />


</android.support.constraint.ConstraintLayout>

マニフェスト:

<activity android:name=".AlertDialogue"
            android:theme="@style/AlertDialogNoTitle">
</activity>

スタイル:

<style name="AlertDialogNoTitle" parent="Theme.AppCompat.Light.Dialog">
        <item name="android:windowNoTitle">true</item>
</style>

1

次のバリアントでは反応がありません:

dialog.requestWindowFeature(Window.FEATURE_NO_TITLE); //before     
dialog.setContentView(R.layout.logindialog);

だから、私は次に使用しようとします:

dialog.supportRequestWindowFeature(Window.FEATURE_NO_TITLE); //before     
dialog.setContentView(R.layout.logindialog);

このバリアントは優れています。


0

これでうまくいきました。

Dailog dialog = new Dialog(MyActivity.this, R.style.dialogstyle);

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <style name="dialogstyle" parent="android:style/Theme.Dialog">
        <item name="android:windowBackground">@null</item>
        <item name="android:windowNoTitle">false</item>
    </style>
</resources>

0

このシンプルなAndroidダイアログポップアップライブラリを試すことができます。あなたの活動で使用することは非常に簡単です。

送信ボタンがクリックされたときに、上記のlibをコードに含めた後、次のコードを試してください

Pop.on(this)
   .with()
   .title(R.string.title) //ignore if not needed
   .icon(R.drawable.icon) //ignore if not needed
   .cancelable(false) //ignore if not needed
   .layout(R.layout.custom_pop)
   .when(new Pop.Yah() {
       @Override
       public void clicked(DialogInterface dialog, View view) {
           Toast.makeText(getBaseContext(), "Yah button clicked", Toast.LENGTH_LONG).show();
       }
   }).show();

グラドルに1行追加すると、準備完了です

dependencies {
    compile 'com.vistrav:pop:2.0'
}

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.