Android
 Computer >> コンピューター >  >> プログラミング >> Android

AndroidアラートダイアログにlistViewを表示するにはどうすればよいですか?


この例は、androidalerダイアログでlistViewを表示する方法を示しています。

ステップ1 − Android Studioで新しいプロジェクトを作成し、[ファイル]⇒[新しいプロジェクト]に移動して、新しいプロジェクトを作成するために必要なすべての詳細を入力します。

ステップ2 −次のコードをres / layout/activity_main.xmlに追加します。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
   xmlns:android="https://schemas.android.com/apk/res/android"
   xmlns:tools="https://schemas.android.com/tools"
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   tools:context=".MainActivity">
   <Button
      android:id="@+id/btnClick"
      android:textSize="12sp"
      android:textStyle="bold"
      android:onClick="openDialog"
      android:text="Click here to get ListView in Alert Dialog"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_centerInParent="true" />
</RelativeLayout>

ステップ3 −次のコードをsrc / MainActivity.java

に追加します
import android.app.AlertDialog;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.ArrayAdapter;
import android.widget.ListView;
public class MainActivity extends AppCompatActivity {
   String[] names = {"India", "Brazil", "Argentina",
      "Portugal", "France", "England", "Italy"};
   ArrayAdapter<String> adapter;
   ListView listView;
   @Override
   protected void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.activity_main);
   }
   public void openDialog(View v){
      AlertDialog.Builder alertDialog = new
      AlertDialog.Builder(this);
      View rowList = getLayoutInflater().inflate(R.layout.row, null);
      listView = rowList.findViewById(R.id.listView);
      adapter = new ArrayAdapter<>(this, android.R.layout.simple_list_item_1, names);
      listView.setAdapter(adapter);
      adapter.notifyDataSetChanged();
      alertDialog.setView(rowList);
      AlertDialog dialog = alertDialog.create();
      dialog.show();
   }
}

ステップ4 −レイアウトリソースファイル(row.xml)を作成し、次のコードを追加します-

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
   xmlns:android="https://schemas.android.com/apk/res/android"
   android:orientation="vertical"
   android:layout_width="match_parent"
   android:layout_height="match_parent">
   <Button
      android:id="@+id/button"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="ALL COUNTRIES"
      android:layout_alignParentBottom="true"
      android:layout_alignParentStart="true"
      android:layout_alignParentEnd="true" />
   <ListView
      android:id="@+id/listView"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_alignParentTop="true"
      android:layout_alignParentStart="true"
      android:layout_above="@id/button">
   </ListView>
</RelativeLayout>

ステップ5 −次のコードをandroidManifest.xmlに追加します

<?xml version="1.0" encoding="utf-8"?>
<manifest
   xmlns:android="https://schemas.android.com/apk/res/android"
   package="app.com.sample">
   <application
      android:allowBackup="true"
      android:icon="@mipmap/ic_launcher"
      android:label="@string/app_name"
      android:roundIcon="@mipmap/ic_launcher_round"
      android:supportsRtl="true"
      android:theme="@style/AppTheme">
      <activity android:name=".MainActivity">
         <intent-filter>
            <action
               android:name="android.intent.action.MAIN" />
            <category
               android:name="android.intent.category.LAUNCHER" />
         </intent-filter>
      </activity>
   </application>
</manifest>
アプリケーションを実行してみましょう。実際のAndroidモバイルデバイスをコンピューターに接続していると思います。 Android Studioからアプリを実行するには、プロジェクトのアクティビティファイルの1つを開き、ツールバーの[Runicon]をクリックします。オプションとしてモバイルデバイスを選択し、デフォルトの画面を表示するモバイルデバイスを確認します-

AndroidアラートダイアログにlistViewを表示するにはどうすればよいですか?

AndroidアラートダイアログにlistViewを表示するにはどうすればよいですか?


  1. Androidでトーストを表示する方法は?

    この例は、AndroidでToastを表示する方法を示しています。 ステップ1 − Android Studioで新しいプロジェクトを作成し、FilerArrに移動します。新しいプロジェクトを作成し、必要なすべての詳細を入力して新しいプロジェクトを作成します。 ステップ2 −次のコードをres / layout / activity_main.xmlに追加します <?xml version="1.0" encoding="utf-8"?> <android.support.constraint.ConstraintLayout xm

  2. Androidでアクティビティを開始する前に進行状況ダイアログを表示するにはどうすればよいですか?

    この例は、Androidでアクティビティを開始する前に進行状況ダイアログを表示する方法を示しています。 ステップ1 − Android Studioで新しいプロジェクトを作成し、[ファイル]⇒[新しいプロジェクト]に移動して、新しいプロジェクトを作成するために必要なすべての詳細を入力します。 ステップ2 −次のコードをres / layout/activity_main.xmlに追加します。 <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android=&quo