Я пытаюсь дать две кнопки одинакового размера в строке. Я использую следующий код:Как дать две кнопки одного размера в строке?
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/scrollView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TableLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<TableRow android:id="@+id/tableRow5" >
<Button
android:id="@+id/btn_pre"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_span="1"
android:text="@string/pre" />
<Button
android:id="@+id/btn_next"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_span="1"
android:text="@string/next" />
</TableRow>
</TableLayout>
</LinearLayout>
</ScrollView>
Где моя ошибка? Пожалуйста посоветуй.
Вы пытались использовать вес? – freddieptf
Спасибо, решено – programmer138200