我如何从 android 中的数据库为按钮动态分配名称?
how do i dynamically allot names to the buttons from database in android?
这是我的主要 xml 文件....我需要为 4 个按钮动态分配名称...我该怎么做??
需要动态命名的四个按钮是
左上
右上方
左下角
右下
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="30dp">
<Button
android:id="@+id/UpperLeft"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:padding="5dp"/>
<Button
android:id="@+id/UpperRight"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:padding="5dp"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<Button
android:id="@+id/LowerLeft"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:padding="5dp"
/>
<Button
android:id="@+id/LowerRight"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:padding="5dp"
/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="30dp"
android:gravity="center"
>
<TextView
android:layout_width="match_parent"
android:layout_height="50dp"
android:textAlignment="center"
android:text="@string/answer"
/>
</LinearLayout>
这是我的主要 xml 文件....我需要从数据库动态分配名称给 4 个按钮...我该怎么做?
您可以在初始化 Button
视图后简单地使用它。
yourbutton1.setText("Button1");
yourbutton2.setText("Button2");
yourbutton3.setText("Button3");
yourbutton4.setText("Button4");
您可以从 Java 开始。
button.setText("button name");
这是我的主要 xml 文件....我需要为 4 个按钮动态分配名称...我该怎么做?? 需要动态命名的四个按钮是 左上 右上方 左下角 右下
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="30dp">
<Button
android:id="@+id/UpperLeft"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:padding="5dp"/>
<Button
android:id="@+id/UpperRight"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:padding="5dp"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<Button
android:id="@+id/LowerLeft"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:padding="5dp"
/>
<Button
android:id="@+id/LowerRight"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:padding="5dp"
/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="30dp"
android:gravity="center"
>
<TextView
android:layout_width="match_parent"
android:layout_height="50dp"
android:textAlignment="center"
android:text="@string/answer"
/>
</LinearLayout>
这是我的主要 xml 文件....我需要从数据库动态分配名称给 4 个按钮...我该怎么做?
您可以在初始化 Button
视图后简单地使用它。
yourbutton1.setText("Button1");
yourbutton2.setText("Button2");
yourbutton3.setText("Button3");
yourbutton4.setText("Button4");
您可以从 Java 开始。
button.setText("button name");