0
レイアウトを柔軟にするための問題があります。Androidスタジオ:柔軟なレイアウト(XMLのみ?)
私が風景に切り替えると私のGridLayout内の私のボタンが静的に保ちます。私のグリッドレイアウトの右側にはたくさんのスペースがあります。
私は自分のGridLayoutを中心とする任意のデバイスサイズに私のボタンのサイズを変更したいです。
私のXML-コード(ここで2つのボタンのみを示す):
<?xml version="1.0" encoding="utf-8"?>
<GridLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.fdai3744.taschenrechnerneu.MainActivity">
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_column="0"
android:layout_row="0"
style="@style/ButtonStyle"
android:text="@string/cal_btn_clear" />
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_column="1"
android:layout_row="0"
style="@style/ButtonStyle"
android:text="@string/cal_btn_clear_entry" />
</GridLayout>
はそれだけでXMLを使用するか、私はまた、Javaを使用すべきことは可能ですか?