Spinner drop down list cannot selected in Frame layout. Here is the code. Thank you in advance for your help.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TabHost
android:id="@+id/tab_host"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TabWidget
android:id="@android:id/tabs"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="match_parent"
android:layout_height="match_parent">
<Spinner
android:id="@+id/ddlSsid"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginStart="50dp" />
<include layout="@layout/information" />
<include layout="@layout/network" />
<include layout="@layout/ping_ip_setting" />
<include layout="@layout/scan_information" />
</FrameLayout>
</LinearLayout>
</TabHost>
</LinearLayout>
It is OK if spinner set outside FrameLayout. Thanks you very much for all help :)