1
我需要你的幫助!如何使下拉列表像微調器Android,但在Xamarin表單中?
我想在Xamarin Forms中創建一個下拉列表。我在xaml中有一個按鈕,當發生點擊事件時,我希望這個按鈕出現在列表底部。看圖片!
謝謝你提前!
List not visible/List visible and on foreground when image clicked
我需要你的幫助!如何使下拉列表像微調器Android,但在Xamarin表單中?
我想在Xamarin Forms中創建一個下拉列表。我在xaml中有一個按鈕,當發生點擊事件時,我希望這個按鈕出現在列表底部。看圖片!
謝謝你提前!
List not visible/List visible and on foreground when image clicked
yourlayout.xml
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="click"
android:id="@+id/click"/>
<ListView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:visibility="invisible"
android:layout_below="@+id/click"
android:paddingLeft="30dp"
android:paddingRight="30dp"
android:id="@+id/list"/>
</RelativeLayout>
on your activity
ListView list = (ListView) findViewById(R.id.list);
final Button click = (Button) findViewById(R.id.click)
click.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
list.setVisibility(list.getVisibility() == View.INVISIBLE ? View.VISIBLE : View.INVISIBLE);
});
謝謝,但我認爲,這個解決方案,列表視圖不會出現在前臺。此外,如果可能的話,我想要Xamarin表單的解決方案(在PCL項目中)。 –