Существует ли DisplayActionSheet в Xamarin.Android?
Я новичок в мобильной разработке. Я пытаюсь написать приложение для Xamarin iOS и Xamarin Android. После поиска в течение нескольких дней я продолжаю обнаруживать, что DisplayActionSheet является частью форм Xamarin, но я не могу найти аналог в Xamarin Android. DisplayActionSheet не существует? Могу ли я использовать что-нибудь еще, чтобы получить такой же внешний вид и эффект?
Спасибо!
Обновление: вот мой прогресс... Я пытаюсь создать диалоговое окно, похожее на это изображение здесь: https://www.google.com/search?q=displayactionsheet+image&rlz=1C1GGRV_enUS752US754&tbm=isch&source=iu&ictx=1&fir=EWVc1vOm1JJrhM%253A%252CYaPWhxv5zFphhM%252C_&usg=__v_-JK4lHAj8k50h5iknuPLPc8PM%3D&sa=X&ved=0ahUKEwjbz66zzZHaAhUKY6wKHXyxB64Q9QEIKTAA: до сих пор, я могу получить изображение, чтобы скользить вверх и кнопки, чтобы ответить правильно, но одна вещь, которую я пропускаю это поведение, когда пользователь щелкает за пределами диалога. Я хочу, чтобы это было отклонено, но ничего не происходит. Спасибо за помощь!
Вот мой код:
//MyActivity.cs
public class MyActivity : Activity
{
FrameLayout _fragmentContainer;
protected override void OnCreate(Bundle savedInstanceState)
{
base.OnCreate(savedInstanceState);
SetContentView(Resource.Layout.MyView);
var listView = FindViewById<ListView>(Resource.Id.myView);
listView.Adapter = new EmailSettingsAdapter(this);
TextView action = FindViewById<TextView>(Resource.Id.actionText);
_fragmentContainer = FindViewById<FrameLayout>(Resource.Id.frameContainer);
action.Click += click;
}
private void click(object sender, EventArgs e)
{
FragmentTransaction transaction = FragmentManager.BeginTransaction();
MonthlyStmtFragment fragment = new MonthlyStmtFragment();
transaction.Add(_fragmentContainer.Id, fragment, "Fragment");
transaction.Commit();
_fragmentContainer.TranslationY = 1800;
_fragmentContainer.Animate().TranslationYBy(-600).SetDuration(500);
}
}
//MyFragment.cs
public class MyFragment : DialogFragment
{
public override View OnCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)
{
base.OnCreate(savedInstanceState);
View view = inflater.Inflate(Resource.Layout.FragmentLayout, container, false);
TextView text1 = view.FindViewById<TextView>(Resource.Id.text1);
text1.Click += delegate {
Dismiss();
Toast.MakeText(Activity, "selected", ToastLength.Short).Show();
};
TextView cancel = view.FindViewById<TextView>(Resource.Id.cancelText);
cancel.Click += delegate {
Dismiss();
Toast.MakeText(Activity, "cancel", ToastLength.Short).Show();
};
return view;
}
//FragmentLayout.axml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/transparent">
<TextView
android:text="Title Here"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/titleView1"
android:gravity="center_horizontal"
android:background="#fff5f5f5"
android:textSize="8dp"
android:textColor="#ff9e9e9e"
android:padding="10dp" />
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:id="@+id/view1"
android:background="#ffbdbdbd" />
<TextView
android:text="Text 1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/text1"
android:background="#fff5f5f5"
android:gravity="center_horizontal"
android:textColor="#ff1e88e5"
android:padding="10dp"
android:textSize="10dp" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/cancelText"
android:background="#fff5f5f5"
android:textSize="10dp"
android:text="Cancel"
android:textColor="#ff1e88e5"
android:padding="10dp"
android:gravity="center_horizontal"
android:layout_marginTop="10dp" />
</LinearLayout>
1 ответ
То, что вы ищете, является класс AlertDialog в Android:
Подкласс Dialog, который может отображать одну, две или три кнопки.
Ниже приведено подробное руководство, с которым вы можете работать для достижения этой цели:
https://www.c-sharpcorner.com/blogs/how-to-show-alert-dialog-in-android-using-xamarin
http://stacktips.com/tutorials/xamarin/alertdialog-and-dialogfragment-example-in-xamarin-android
Для настройки этого вы можете использовать следующее:
http://www.appliedcodelog.com/2015/11/custom-alertdialog-example-in.html
Удачи, Счастливого Кодирования!
class DialogFragmentExitPopUp : DialogFragment
{
public static Activity mActivity;
public DialogFragmentExitPopUp NewInstance(Activity activity,Bundle bundle)
{
var fragment = new DialogFragmentExitPopUp();
fragment.Arguments = bundle;
DialogFragmentExitPopUp.mActivity = activity;
return fragment;
}
public override View OnCreateView(LayoutInflater inflater, ViewGroup container, Bundle SavedInstanceState)
{
View view = inflater.Inflate(Resource.Layout.ExitPopUp, container, false);
Button ButtonYes = view.FindViewById<Button>(Resource.Id.ExitYes);
Button ButtonNo = view.FindViewById<Button>(Resource.Id.ExitNo);
ButtonYes.SetTextColor(Color.ParseColor("#2466A3"));
ButtonNo.SetTextColor(Color.ParseColor("#2466A3"));
ButtonYes.SetBackgroundColor(Color.White);
ButtonNo.SetBackgroundColor(Color.White);
Dialog.Window.RequestFeature(WindowFeatures.NoTitle);
Dialog.SetCanceledOnTouchOutside(false);
return view;
}
}
Вы не вызываете конструктор, который вызывает проблему, инициализируя его, как я показал, что вы это сделаете.
И это код для вызова реального диалога:
FragmentTransaction fragmentTransaction = FragmentManager.BeginTransaction();
Fragment fragmentPrev = FragmentManager.FindFragmentByTag("dialog");
if (fragmentPrev != null)
fragmentTransaction.Remove(fragmentPrev);
fragmentTransaction.AddToBackStack(null);
//create and show the dialog
DialogFragmentExitPopUp dialogFragment = new DialogFragmentExitPopUp().NewInstance(this, null);
dialogFragment.Show(fragmentTransaction, "dialog");