Android 相当于 iOS ActionSheet
Android equivalence of iOS ActionSheet
Android iOS SDK 中 UIActionSheet 的等价物是什么?我正在做一个 React-Native 项目,需要尽可能保持对本机控件的使用。我还没有遇到 npm 包或其他使用相应平台的包 'actionsheet'。他们似乎都在 iOS 中使用本机操作表,并在 Android 中使用 iOS 操作表的 javascript 模拟(这使得它在 Android 上不是本机的) .如果我能知道 android 在 iOS 显示操作表的地方显示了什么,那么我可以使用 android 的 RN Android 组件和 iOS 的操作表。我希望这是一个明确的问题。
对于 IOS 中的 ActionSheet,您可以使用 This Library
用法
将此依赖项添加到您的应用级别 grsadle
dependencies {
compile 'com.baoyz.actionsheet:library:1.1.7'
}
创建 ActionSheet 并显示
ActionSheet.createBuilder(this, getSupportFragmentManager())
.setCancelButtonTitle("Cancel")
.setOtherButtonTitles("Item1", "Item2", "Item3", "Item4")
.setCancelableOnTouchOutside(true)
.setListener(this).show();
方法
setCancelButtonTitle()
取消按钮标题,(字符串)
setOtherButtonTitles()
项目按钮标题,(String[])
setCancelableOnTouchOutside()
触摸外部关闭,(布尔值)
setListener()
设置监听器监听事件
show()
显示ActionSheet
, return ActionSheet
Object,调用ActionSheet的dismiss()
方法关闭
我们使用 BottomSheetDialog
在 Android 中做同样的工作。与 iOS 相比,不完全相同,可能需要编写更多代码。但最终结果是相似的。
参考文献:
https://developer.android.com/reference/android/support/design/widget/BottomSheetDialog.html
https://medium.com/glucosio-project/15fb8d140295
我在 Android 中使用 BottomSheetDialog
实现了类似的功能。
BottomSheetDialog mBottomDialogNotificationAction;
private void showDialogNotificationAction() {
try {
View sheetView = mActivity.getLayoutInflater().inflate(R.layout.dialog_bottom_notification_action, null);
mBottomDialogNotificationAction = new BottomSheetDialog(mActivity);
mBottomDialogNotificationAction.setContentView(sheetView);
mBottomDialogNotificationAction.show();
// Remove default white color background
FrameLayout bottomSheet = (FrameLayout) mBottomDialogNotificationAction.findViewById(android.support.design.R.id.design_bottom_sheet);
bottomSheet.setBackground(null);
} catch (Exception e) {
e.printStackTrace();
}
}
dialog_bottom_notification_action.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="10dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/rounded_corner"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clickable="true"
android:foreground="?attr/selectableItemBackground"
android:orientation="vertical"
android:padding="15dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="Apply Leave"
android:textColor="#1E82FF"
android:textSize="16sp" />
</LinearLayout>
<View
android:layout_width="match_parent"
android:layout_height="0.5dp"
android:background="#E5E5E5" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clickable="true"
android:foreground="?attr/selectableItemBackground"
android:orientation="vertical"
android:padding="15dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="Regularisation"
android:textColor="#1E82FF"
android:textSize="16sp" />
</LinearLayout>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
android:background="@drawable/rounded_corner"
android:clickable="true"
android:foreground="?attr/selectableItemBackground"
android:orientation="vertical"
android:padding="15dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="Close"
android:textColor="#1E82FF"
android:textSize="16sp"
android:textStyle="bold" />
</LinearLayout>
</LinearLayout>
rounded_corner.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#ffffff" />
<corners android:radius="@dimen/size_10dp" />
</shape>
类似于 iOS 的操作 sheet 在 Kotlin 中等效
import com.google.android.material.bottomsheet.BottomSheetDialog
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
val bottomSheetDialog = BottomSheetDialog(this)
val bottomSheetView = this.layoutInflater.inflate(R.layout.bottom_sheet_layout, null)
bottomSheetDialog.setContentView(bottomSheetView)
actionSheetButton.setOnClickListener {
showDialogNotificationAction(bottomSheetDialog)
}
bottomSheetView.button1.setOnClickListener {
Toast.makeText(this, "Button 1 Clicked", Toast.LENGTH_LONG).show()
}
bottomSheetView.button2.setOnClickListener {
Toast.makeText(this, "Button 2 Clicked", Toast.LENGTH_LONG).show()
}
bottomSheetView.button3.setOnClickListener {
Toast.makeText(this, "Button 3 Clicked", Toast.LENGTH_LONG).show()
}
bottomSheetView.button4.setOnClickListener {
Toast.makeText(this, "Button 4 Clicked", Toast.LENGTH_LONG).show()
}
bottomSheetView.cancelAttachment.setOnClickListener {
bottomSheetDialog.dismiss()
}
}
private fun showDialogNotificationAction(bottomSheetDialog: BottomSheetDialog) {
bottomSheetDialog.show()
val bottomSheetDialogFrameLayout =
bottomSheetDialog.findViewById<FrameLayout>(com.google.android.material.R.id.design_bottom_sheet)
bottomSheetDialogFrameLayout?.background = null
}
bottom_sheet_layout.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="10dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/bottom_sheet_rounded_corner"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="41dp"
android:foreground="?attr/selectableItemBackground"
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginTop="14dp"
android:text="Android Action Sheet"
android:textColor="#909090"
android:textSize="12sp" />
</LinearLayout>
<View
android:layout_width="match_parent"
android:layout_height="0.5dp"
android:background="#D1D1CF" />
<LinearLayout
android:id="@+id/button1"
android:layout_width="match_parent"
android:layout_height="52dp"
android:clickable="true"
android:foreground="?attr/selectableItemBackground"
android:orientation="vertical"
android:padding="15dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="Button 1"
android:textColor="#007CFE"
android:textSize="18sp" />
</LinearLayout>
<View
android:layout_width="match_parent"
android:layout_height="0.5dp"
android:background="#D1D1CF" />
<LinearLayout
android:id="@+id/button2"
android:layout_width="match_parent"
android:layout_height="52dp"
android:clickable="true"
android:foreground="?attr/selectableItemBackground"
android:orientation="vertical"
android:padding="15dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="Button 2"
android:textColor="#007CFE"
android:textSize="18sp" />
</LinearLayout>
<View
android:layout_width="match_parent"
android:layout_height="0.5dp"
android:background="#D1D1CF" />
<LinearLayout
android:id="@+id/button3"
android:layout_width="match_parent"
android:layout_height="52dp"
android:clickable="true"
android:foreground="?attr/selectableItemBackground"
android:orientation="vertical"
android:padding="15dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="Button 3"
android:textColor="#007CFE"
android:textSize="18sp" />
</LinearLayout>
<View
android:layout_width="match_parent"
android:layout_height="0.5dp"
android:background="#D1D1CF" />
<LinearLayout
android:id="@+id/button4"
android:layout_width="match_parent"
android:layout_height="52dp"
android:clickable="true"
android:foreground="?attr/selectableItemBackground"
android:orientation="vertical"
android:padding="15dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="Button 4"
android:textColor="#007CFE"
android:textSize="18sp" />
</LinearLayout>
</LinearLayout>
<LinearLayout
android:id="@+id/cancelAttachment"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
android:background="@drawable/bottom_sheet_rounded_corner"
android:clickable="true"
android:foreground="?attr/selectableItemBackground"
android:orientation="vertical"
android:padding="15dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="Cancel"
android:textColor="#FFFFFF"
android:textSize="16sp" />
</LinearLayout>
</LinearLayout>
bottom_sheet_rounded_corner.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#ffffff" />
<corners android:radius="10dp" />
</shape>
还有ModalBottomSheetLayout
,例如:
@Composable
fun appView(viewModel: AppViewModel) {
ModalBottomSheetLayout(
sheetContent = { modalSheetView(viewModel) },
sheetState = viewModel.bottomModalState
) {
// Rest of the app goes here.
}
}
@Composable
fun modalSheetView(viewModel: AppViewModel) {
val buttonModifier = Modifier.padding(all = 20.dp).fillMaxWidth()
val buttonTextStyle = TextStyle(fontSize = 20.sp)
Column(horizontalAlignment = Alignment.CenterHorizontally,
modifier = Modifier.fillMaxWidth())
{
TextButton(onClick = { /* Handle click */ },
modifier = buttonModifier)
{
Text("Do something", style = buttonTextStyle)
}
TextButton(onClick = { /* Handle click */ },
modifier = buttonModifier)
{
Text("Something else", style = buttonTextStyle)
}
Spacer(modifier = Modifier.height(20.dp))
TextButton(onClick = { /* Handle click */ },
modifier = buttonModifier)
{
Text("Cancel", style = buttonTextStyle)
}
}
}
Android iOS SDK 中 UIActionSheet 的等价物是什么?我正在做一个 React-Native 项目,需要尽可能保持对本机控件的使用。我还没有遇到 npm 包或其他使用相应平台的包 'actionsheet'。他们似乎都在 iOS 中使用本机操作表,并在 Android 中使用 iOS 操作表的 javascript 模拟(这使得它在 Android 上不是本机的) .如果我能知道 android 在 iOS 显示操作表的地方显示了什么,那么我可以使用 android 的 RN Android 组件和 iOS 的操作表。我希望这是一个明确的问题。
对于 IOS 中的 ActionSheet,您可以使用 This Library
用法
将此依赖项添加到您的应用级别 grsadle
dependencies {
compile 'com.baoyz.actionsheet:library:1.1.7'
}
创建 ActionSheet 并显示
ActionSheet.createBuilder(this, getSupportFragmentManager())
.setCancelButtonTitle("Cancel")
.setOtherButtonTitles("Item1", "Item2", "Item3", "Item4")
.setCancelableOnTouchOutside(true)
.setListener(this).show();
方法
setCancelButtonTitle()
取消按钮标题,(字符串)setOtherButtonTitles()
项目按钮标题,(String[])setCancelableOnTouchOutside()
触摸外部关闭,(布尔值)setListener()
设置监听器监听事件show()
显示ActionSheet
, returnActionSheet
Object,调用ActionSheet的dismiss()
方法关闭
我们使用 BottomSheetDialog
在 Android 中做同样的工作。与 iOS 相比,不完全相同,可能需要编写更多代码。但最终结果是相似的。
参考文献:
https://developer.android.com/reference/android/support/design/widget/BottomSheetDialog.html https://medium.com/glucosio-project/15fb8d140295
我在 Android 中使用 BottomSheetDialog
实现了类似的功能。
BottomSheetDialog mBottomDialogNotificationAction;
private void showDialogNotificationAction() {
try {
View sheetView = mActivity.getLayoutInflater().inflate(R.layout.dialog_bottom_notification_action, null);
mBottomDialogNotificationAction = new BottomSheetDialog(mActivity);
mBottomDialogNotificationAction.setContentView(sheetView);
mBottomDialogNotificationAction.show();
// Remove default white color background
FrameLayout bottomSheet = (FrameLayout) mBottomDialogNotificationAction.findViewById(android.support.design.R.id.design_bottom_sheet);
bottomSheet.setBackground(null);
} catch (Exception e) {
e.printStackTrace();
}
}
dialog_bottom_notification_action.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="10dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/rounded_corner"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clickable="true"
android:foreground="?attr/selectableItemBackground"
android:orientation="vertical"
android:padding="15dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="Apply Leave"
android:textColor="#1E82FF"
android:textSize="16sp" />
</LinearLayout>
<View
android:layout_width="match_parent"
android:layout_height="0.5dp"
android:background="#E5E5E5" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clickable="true"
android:foreground="?attr/selectableItemBackground"
android:orientation="vertical"
android:padding="15dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="Regularisation"
android:textColor="#1E82FF"
android:textSize="16sp" />
</LinearLayout>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
android:background="@drawable/rounded_corner"
android:clickable="true"
android:foreground="?attr/selectableItemBackground"
android:orientation="vertical"
android:padding="15dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="Close"
android:textColor="#1E82FF"
android:textSize="16sp"
android:textStyle="bold" />
</LinearLayout>
</LinearLayout>
rounded_corner.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#ffffff" />
<corners android:radius="@dimen/size_10dp" />
</shape>
类似于 iOS 的操作 sheet 在 Kotlin 中等效
import com.google.android.material.bottomsheet.BottomSheetDialog
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
val bottomSheetDialog = BottomSheetDialog(this)
val bottomSheetView = this.layoutInflater.inflate(R.layout.bottom_sheet_layout, null)
bottomSheetDialog.setContentView(bottomSheetView)
actionSheetButton.setOnClickListener {
showDialogNotificationAction(bottomSheetDialog)
}
bottomSheetView.button1.setOnClickListener {
Toast.makeText(this, "Button 1 Clicked", Toast.LENGTH_LONG).show()
}
bottomSheetView.button2.setOnClickListener {
Toast.makeText(this, "Button 2 Clicked", Toast.LENGTH_LONG).show()
}
bottomSheetView.button3.setOnClickListener {
Toast.makeText(this, "Button 3 Clicked", Toast.LENGTH_LONG).show()
}
bottomSheetView.button4.setOnClickListener {
Toast.makeText(this, "Button 4 Clicked", Toast.LENGTH_LONG).show()
}
bottomSheetView.cancelAttachment.setOnClickListener {
bottomSheetDialog.dismiss()
}
}
private fun showDialogNotificationAction(bottomSheetDialog: BottomSheetDialog) {
bottomSheetDialog.show()
val bottomSheetDialogFrameLayout =
bottomSheetDialog.findViewById<FrameLayout>(com.google.android.material.R.id.design_bottom_sheet)
bottomSheetDialogFrameLayout?.background = null
}
bottom_sheet_layout.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="10dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/bottom_sheet_rounded_corner"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="41dp"
android:foreground="?attr/selectableItemBackground"
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginTop="14dp"
android:text="Android Action Sheet"
android:textColor="#909090"
android:textSize="12sp" />
</LinearLayout>
<View
android:layout_width="match_parent"
android:layout_height="0.5dp"
android:background="#D1D1CF" />
<LinearLayout
android:id="@+id/button1"
android:layout_width="match_parent"
android:layout_height="52dp"
android:clickable="true"
android:foreground="?attr/selectableItemBackground"
android:orientation="vertical"
android:padding="15dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="Button 1"
android:textColor="#007CFE"
android:textSize="18sp" />
</LinearLayout>
<View
android:layout_width="match_parent"
android:layout_height="0.5dp"
android:background="#D1D1CF" />
<LinearLayout
android:id="@+id/button2"
android:layout_width="match_parent"
android:layout_height="52dp"
android:clickable="true"
android:foreground="?attr/selectableItemBackground"
android:orientation="vertical"
android:padding="15dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="Button 2"
android:textColor="#007CFE"
android:textSize="18sp" />
</LinearLayout>
<View
android:layout_width="match_parent"
android:layout_height="0.5dp"
android:background="#D1D1CF" />
<LinearLayout
android:id="@+id/button3"
android:layout_width="match_parent"
android:layout_height="52dp"
android:clickable="true"
android:foreground="?attr/selectableItemBackground"
android:orientation="vertical"
android:padding="15dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="Button 3"
android:textColor="#007CFE"
android:textSize="18sp" />
</LinearLayout>
<View
android:layout_width="match_parent"
android:layout_height="0.5dp"
android:background="#D1D1CF" />
<LinearLayout
android:id="@+id/button4"
android:layout_width="match_parent"
android:layout_height="52dp"
android:clickable="true"
android:foreground="?attr/selectableItemBackground"
android:orientation="vertical"
android:padding="15dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="Button 4"
android:textColor="#007CFE"
android:textSize="18sp" />
</LinearLayout>
</LinearLayout>
<LinearLayout
android:id="@+id/cancelAttachment"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
android:background="@drawable/bottom_sheet_rounded_corner"
android:clickable="true"
android:foreground="?attr/selectableItemBackground"
android:orientation="vertical"
android:padding="15dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="Cancel"
android:textColor="#FFFFFF"
android:textSize="16sp" />
</LinearLayout>
</LinearLayout>
bottom_sheet_rounded_corner.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#ffffff" />
<corners android:radius="10dp" />
</shape>
还有ModalBottomSheetLayout
,例如:
@Composable
fun appView(viewModel: AppViewModel) {
ModalBottomSheetLayout(
sheetContent = { modalSheetView(viewModel) },
sheetState = viewModel.bottomModalState
) {
// Rest of the app goes here.
}
}
@Composable
fun modalSheetView(viewModel: AppViewModel) {
val buttonModifier = Modifier.padding(all = 20.dp).fillMaxWidth()
val buttonTextStyle = TextStyle(fontSize = 20.sp)
Column(horizontalAlignment = Alignment.CenterHorizontally,
modifier = Modifier.fillMaxWidth())
{
TextButton(onClick = { /* Handle click */ },
modifier = buttonModifier)
{
Text("Do something", style = buttonTextStyle)
}
TextButton(onClick = { /* Handle click */ },
modifier = buttonModifier)
{
Text("Something else", style = buttonTextStyle)
}
Spacer(modifier = Modifier.height(20.dp))
TextButton(onClick = { /* Handle click */ },
modifier = buttonModifier)
{
Text("Cancel", style = buttonTextStyle)
}
}
}