我是Android开发新手,非常感谢您的帮助, 我想显示2行6个按钮,如下图所示,我尝试了下面的代码,但是当我运行它时,它没有显示应用程序(出现空白屏幕),第一个linearlayout是水平的,第二个是垂直的
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
android:layout_marginRight="5dp"
>
<Button
android:id="@+id/Button01"
android:layout_width="0px"
android:layout_height="wrap_content"
android:layout_weight=".2"
android:padding="4dp"
android:text="@string/tenP" />
<Button
android:id="@+id/Button02"
android:layout_width="0px"
android:layout_height="wrap_content"
android:layout_weight=".2"
android:padding="4dp"
android:text="@string/TwentyP" />
<Button
android:id="@+id/Button03"
android:layout_width="0px"
android:layout_height="wrap_content"
android:layout_weight=".2"
android:padding="4dp"
android:text="@string/ThirtyP" />
<Button
android:id="@+id/Button04"
android:layout_width="0px"
android:layout_height="wrap_content"
android:layout_weight=".2"
android:padding="4dp"
android:text="@string/FourtyP" />
<Button
android:id="@+id/Button05"
android:layout_width="0px"
android:layout_height="wrap_content"
android:layout_weight=".2"
android:padding="4dp"
android:text="@string/FiftyP" />
<Button
android:id="@+id/Button06"
android:layout_width="0px"
android:layout_height="wrap_content"
android:layout_weight=".2"
android:padding="4dp"
android:text="@string/SixtyP" />
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
android:layout_marginRight="5dp"
>
<Button
android:id="@+id/button1"
android:layout_width="0px"
android:layout_height="wrap_content"
android:layout_weight=".2"
android:padding="4dp"
android:text="@string/PlusOne" />
<Button
android:id="@+id/button2"
android:layout_width="0px"
android:layout_height="wrap_content"
android:layout_weight=".2"
android:padding="4dp"
android:text="@string/MinusOne" />
<Button
android:id="@+id/button3"
android:layout_width="0px"
android:layout_height="wrap_content"
android:layout_weight=".2"
android:padding="4dp"
android:text="@string/PlusFive" />
<Button
android:id="@+id/button4"
android:layout_width="0px"
android:layout_height="wrap_content"
android:layout_weight=".2"
android:padding="4dp"
android:text="@string/MinusFive" />
<Button
android:id="@+id/button5"
android:layout_width="0px"
android:layout_height="wrap_content"
android:layout_weight=".2"
android:padding="4dp"
android:text="@string/PlusTen" />
<Button
android:id="@+id/button6"
android:layout_width="0px"
android:layout_height="wrap_content"
android:layout_weight=".2"
android:padding="4dp"
android:text="@string/MinusTen" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
</LinearLayout>
</LinearLayout>
答案 0 :(得分:1)
试试这个:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
android:layout_marginRight="5dp"
>
<Button
android:id="@+id/Button01"
android:layout_width="0px"
android:layout_height="wrap_content"
android:layout_weight=".2"
android:padding="4dp"
android:text="@string/tenP" />
<Button
android:id="@+id/Button02"
android:layout_width="0px"
android:layout_height="wrap_content"
android:layout_weight=".2"
android:padding="4dp"
android:text="@string/TwentyP" />
<Button
android:id="@+id/Button03"
android:layout_width="0px"
android:layout_height="wrap_content"
android:layout_weight=".2"
android:padding="4dp"
android:text="@string/ThirtyP" />
<Button
android:id="@+id/Button04"
android:layout_width="0px"
android:layout_height="wrap_content"
android:layout_weight=".2"
android:padding="4dp"
android:text="@string/FourtyP" />
<Button
android:id="@+id/Button05"
android:layout_width="0px"
android:layout_height="wrap_content"
android:layout_weight=".2"
android:padding="4dp"
android:text="@string/FiftyP" />
<Button
android:id="@+id/Button06"
android:layout_width="0px"
android:layout_height="wrap_content"
android:layout_weight=".2"
android:padding="4dp"
android:text="@string/SixtyP" />
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
android:layout_marginRight="5dp"
>
<Button
android:id="@+id/button1"
android:layout_width="0px"
android:layout_height="wrap_content"
android:layout_weight=".2"
android:padding="4dp"
android:text="@string/PlusOne" />
<Button
android:id="@+id/button2"
android:layout_width="0px"
android:layout_height="wrap_content"
android:layout_weight=".2"
android:padding="4dp"
android:text="@string/MinusOne" />
<Button
android:id="@+id/button3"
android:layout_width="0px"
android:layout_height="wrap_content"
android:layout_weight=".2"
android:padding="4dp"
android:text="@string/PlusFive" />
<Button
android:id="@+id/button4"
android:layout_width="0px"
android:layout_height="wrap_content"
android:layout_weight=".2"
android:padding="4dp"
android:text="@string/MinusFive" />
<Button
android:id="@+id/button5"
android:layout_width="0px"
android:layout_height="wrap_content"
android:layout_weight=".2"
android:padding="4dp"
android:text="@string/PlusTen" />
<Button
android:id="@+id/button6"
android:layout_width="0px"
android:layout_height="wrap_content"
android:layout_weight=".2"
android:padding="4dp"
android:text="@string/MinusTen" />
</LinearLayout>
</LinearLayout>
你从xml错过了这部分:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >