1
私はオンラインで探していましたが、ほとんどの人がスケーリングを扱う答えを持っていましたが、そのオプションは見つかりませんでした。これがXMLです。ボタンを画面上に完全に配置する
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" android:layout_gravity="center">
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" android:layout_gravity="center" android:layout_weight="1"/>
</LinearLayout>
どのように私は(別名、私はそれはそれはコンテンツ包んだ持っていると思います)任意のストレッチせずにボタンを中心に作るのですか。
おかげ
相対レイアウトの世界へようこそ。私はそれらの違いを読まなければならないでしょう。早速のご返事ありがとうございます。 –