as里的界面显示正常,在模拟器中显示已停止运行
<?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="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#F2F2F2"
android:text="选餐Strat"
android:textColor="#FF8C00"
android:textSize="25sp"
android:textStyle="italic"
android:typeface="monospace" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="姓名:"
android:textSize="15sp" />
<EditText
android:id="@+id/et_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="15dp"
android:hint="请输入姓名" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:gravity="center_vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="性别:"
android:textSize="15sp" />
<RadioGroup
android:id="@+id/ra_sex"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<RadioButton
android:id="@+id/ra_man"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="男"
android:textSize="15sp"/>
<RadioButton
android:id="@+id/ra_woman"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="女"
android:textSize="15sp"/>
</RadioGroup>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="喜好:"
android:textSize="15sp"/>
<CheckBox
android:id="@+id/ch_hot"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="辣"
android:textSize="15sp"/>
<CheckBox
android:id="@+id/ch_seafood"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="海鲜"
android:textSize="15sp"/>
<CheckBox
android:id="@+id/ch_acid"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="酸"
android:textSize="15sp"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="预算:"
android:textSize="15sp"/>
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="0元"
android:textSize="15sp"
android:layout_marginLeft="15dp"
android:layout_weight="1"/>
<SeekBar
android:id="@+id/se_bar"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="4"/>
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="100元"
android:textSize="15sp"
android:layout_weight="1"
/>
</LinearLayout>
<Button
android:id="@+id/Bt_nu"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="寻找菜品"
android:background="#FFC0CB"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<ImageView
android:id="@+id/im_age"
android:layout_width="match_parent"
android:layout_height="0dp"
android:src="@drawable/ceshi"
android:layout_weight="5"/>
<ToggleButton
android:id="@+id/to_ggle"
android:layout_width="match_parent"
android:layout_height="0dp"
android:background="#FFC0CB"
android:textOn="显示信息"
android:textOff="下一个"
android:checked="true"
android:layout_weight="1"/>
</LinearLayout>
</LinearLayout>
正在回答 回答被采纳积分+1
- 参与学习 人
- 提交作业 5461 份
- 解答问题 7238 个
此次推出的专题为Android攻城狮培养计划的第一部分语法与界面基础篇,将带大家从0开始学习Android开发。
了解课程
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星