画像のように、左側に配置された1つのテキストビューと右側に配置された2つのボタンを設定しようとしています。私は余白を使用していますが、これは最善の解決策ではないと思います。別の携帯電話では変更されると思います.とにかく、私の2番目のボタンはアプリに表示されません. これは私が持っているxmlコードです:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#807E7B">
<TextView
android:id="@+id/txtForum"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:textStyle="bold"
android:textSize="25dp"
android:textColor="#255094"
android:layout_marginLeft="5dp"
android:layout_marginTop="5dp"
android:layout_marginBottom="5dp"
>
</TextView>
<Button
android:id="@+id/btnBack"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="right"
android:text="New Thread"
android:layout_marginLeft="80dp"
android:layout_marginBottom="5dp">
</Button>
<Button
android:id="@+id/btnBrowser"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="right"
android:text="Browser"
android:layout_marginLeft="100dp"
android:layout_marginBottom="5dp">
</Button>
</LinearLayout>
<ListView
android:id="@+id/list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:cacheColorHint="#00000000">
</ListView>
</LinearLayout>
これは私が期待したものです:
ありがとう