Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在 Android 中创建一个选项卡右对齐的布局,并且内容必须显示在ListView的左侧。
请通过提供有用的建议来帮助我。
您可以为列表视图中的行项目使用 RelativeLayout。从那里你可以使用
android:layout_alignParentRight="true"
在您的 xml 中,这将确保您放入的任何视图都在右侧。