我花很長時間才能找到這個問題,因爲我仍然在機器人>>>該滑塊稱爲彈出窗口
這裏的代碼
LayoutInflater in=(LayoutInflater) Map.this.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View layout=in.inflate(R.layout.mapslider, (ViewGroup) findViewById(R.id.popupwindow));
pw=new PopupWindow(layout,500,300,true);
and in xml file which called mapslider **you should put any id to main layout for example "popupwindow"**
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
android:id="@+id/popupwindow"
android:paddingTop="30dp"
>
我初學的解決方案我不確定我是否明白你在問什麼。這聽起來像你的Android應用程序中有一個MapView,並且你想要在它上面覆蓋一個「狀態欄」。狀態欄將包含有關所選位置的信息。我對麼? – bschultz
@bschultz是什麼我問它看起來像狀態欄,但它是一個狀態欄,因爲狀態欄下降到最後的活動,但這是一種滑塊,我沒有看到之前 – Weloo