0

「実行」と「結果」の2つのボタンを並べて表示しようとしています。しかし、私はあまり運がありません。

両方のボタンを使用RelativeLayoutして追加しようとしlayout_weightましたが、それらが消えてマップが画面を引き継ぐように見えます。

私が間違っていることと、それを修正するために何ができるかを誰かが指摘できますか?

<?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" >


      <TextView
          android:id="@+id/myLocationText"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:text="@string/hello" />
      <TextView
          android:id="@+id/resultsHomeTest"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:text="" />


      <Button
          android:id="@+id/btnRun"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"

          android:text="Run" />


      <Button
          android:id="@+id/btnResults"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:text="Results" />

      <TextView
          android:id="@+id/resultsTextView"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:text=""
          android:textAppearance="?android:attr/textAppearanceMedium" />


  <com.google.android.maps.MapView
    android:id="@+id/myMapView"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:enabled="true"
    android:clickable="true"
    android:apiKey="02kgJwy0ijcQsVCaCzD9sFv69dOi4gXBEUjIbuQ"

  />

    <!--

    Desktop key: 02kgJwy0ijcTK7fd-wxv7OsPUFEveXTUt16lrRA
    Laptop key : 02kgJwy0ijcQsVCaCzD9sFv69dOi4gXBEUjIbuQ
      -->
</LinearLayout>
4

2 に答える 2

2

使用することもできますが、ネストされているとパフォーマンスに影響すると言われています

以下のコードのように使用できます

<LinearLayout android:layout_height="wrap_content"
    android:layout_width="fill_parent">
    <TextView android:layout_height="wrap_content"
        android:layout_width="fill_parent" android:text="Slashdot"
        android:id="@+id/textUser" android:layout_weight="1"
        android:textStyle="bold"/>
    <TextView android:layout_height="wrap_content"
        android:layout_width="fill_parent" android:gravity="right"
        android:layout_weight="1" android:id="@+id/textCreatedAt"
        android:text="10 minutes ago"/> 
</LinearLayout>

しかし、以下のコードのようにすると、lint はパフォーマンスに影響を与えると言うでしょう。

<RelativeLayout>
    <LinearLayout>
        <LinearLayout>
            <ImageView
            android:layout_weight="0.3"/>
        </LinearLayout>

    </LinearLayout>

</RelativeLayout>

Relative Layout も使用できますが、重みは使用しないでください。以下のコードのように配置すると、マージンを管理するだけで済みます。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >
    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:text="Button" />



    <Button
        android:id="@+id/button2"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_toRightOf="@+id/button1"
        android:text="Button" />

</RelativeLayout>
于 2012-08-01T16:55:17.010 に答える
0

水平方向の内側に 2 つのボタンをラップしますLinearLayout

<LinearLayout 
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" android:orientation="horizontal">


    <Button
              android:id="@+id/btnRun"
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"

              android:text="Run" />


          <Button
              android:id="@+id/btnResults"
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              android:text="Results" />
    </LinearLayout>
于 2012-08-01T15:56:59.910 に答える