我有一个LinearLayout,它有许多具有不同属性的按钮。但我希望有大约90个相同的布局,具有不同的文本和值。帮我。感谢。
答案 0 :(得分:0)
我希望我的问题是对的,你想要一个带有90个不同按钮的线性布局?正确?如果是这样,那么这可能有所帮助(转到你的布局文本编辑器并粘贴它(根据需要复制并粘贴更多按钮):
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:gravity="center">
<Button
android:id="@+id/b1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button 1"/>
<Button
android:id="@+id/b2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button 2"/>
<Button
android:id="@+id/b3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button 3"/>
// copy and paste here more buttons
</LinearLayout>