我很高兴有人可以帮我想到一个按钮列表,其上有单独按钮的按钮列表。
你可以检查一下附件,或者知道我想到了哪些按钮要求你帮忙。
红色标记按钮(单选按钮)在我看来是另一个常规(按钮)的顶部
那么我们可以在android中执行类似的按钮UI吗?
如果可能请告诉我。我正在IDE Visual Studio 2017 https://imgur.com/a/YV4jl上使用Xamarin.android
水平方向的LinearLayout
是一个很好的起点。
<LinearLayout
android:width="match_parent"
"android:height="wrap_content"
"orientation="horizontal">
<CheckBox ... />
<TextView ... />
<!-- Search icon -->
<ImageView ... />
<!-- Search icon -->
<ImageView ... />
<TextView ... />
<!-- Delete icon -->
<ImageView ... />
</LinearLayout>