在我的屏幕上,我有 3 个按钮,在这些按钮下方的下一行中,我有 3 个名称(与这些按钮相对应的名称),但我的问题是,当名称更改时,按钮的大小也会更改,但我确实想修复大小这里的按钮是我的代码请帮助我
<TableLayout android:background="@drawable/toptab"
android:layout_width="fill_parent" android:id="@+id/tableLayout"
android:layout_height="wrap_content"
android:stretchColumns="1" android:gravity="center_vertical"
android:layout_alignParentBottom="true">
<TableRow>
<ImageButton android:id="@+id/btnPrev" android:background="@drawable/imgPrev"
android:layout_marginLeft="5dp"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>
<ImageButton android:id="@+id/btnRefresh"
android:layout_gravity="center" android:background="@drawable/refreshbutton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
<ImageButton android:id="@+id/btnNext"
android:background="@drawable/imgNext"
android:layout_width="5dp"
android:layout_height="20dp"
android:layout_marginRight="5dp" />
</TableRow>
<TableRow >
<TextView android:id="@+id/prev" android:text="Hk" android:layout_marginLeft="5dp" />
<TextView android:id="@+id/refresh" android:text="Refresh" android:layout_gravity="center" />
<TextView android:id="@+id/next" android:text="RS" android:layout_marginRight="5dp" />
</TableRow>
</TableLayout>