简体   繁体   English

使用Android的哪些组件?

[英]Which components of Android to use?

I am trying to achieve the list of buttons for "account, privacy, security etc" like in the image.我正在尝试实现图像中的“帐户、隐私、安全等”按钮列表。 I have tried radio buttons so far but cant set their background color and they do not last from left side to right side.到目前为止,我已经尝试过单选按钮,但无法设置它们的背景颜色,而且它们不会从左侧持续到右侧。 Any suggestions?有什么建议么? 在此处输入图像描述

You may use buttons, but you need to set the attribute android:layout_width="match_parent" for them to span the whole width of the activity.您可以使用按钮,但您需要设置属性 android:layout_width="match_parent" 让它们跨越活动的整个宽度。

<Button android:layout_width="match_parent" android:layout_height="wrap_content" android:text="Account"/> 

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM