as里的界面显示正常,在模拟器中显示已停止运行

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>

http://img1.sycdn.imooc.com//climg/5c76785e00018a7d05581020.jpg

正在回答 回答被采纳积分+1

登陆购买课程后可参与讨论,去登陆

2回答
提问者 weixin_慕仙4463614 2019-02-28 21:56:54
  • 你看图片放置的路径是什么?手机设备假如是drawable-xhdpi,你把图片放在drawable-xxxhdpi里面就会报错找不到资源,建议drawable各个目录下各放一套图片,再运行试试
    2019-03-01 09:36:45
irista23 2019-02-28 10:12:37

你这个布局代码没有问题,只要drawable目录下有ceshi这个图片,报错你可以在logcat窗口,选择当前运行的设备,以及error错误选项对信息做筛选,看一下红色的错误信息是什么,方便你找到代码中的问题,如果还是找不到,你也可以把logcat信息贴出来,以及java代码也附上方便老师快速帮你解决问题~

http://img1.sycdn.imooc.com//climg/5c7743390001e07a09560333.jpg

问题已解决,确定采纳
还有疑问,暂不采纳

恭喜解决一个难题,获得1积分~

来为老师/同学的回答评分吧

0 星
请稍等 ...
意见反馈 帮助中心 APP下载
官方微信

在线咨询

领取优惠

免费试听

领取大纲

扫描二维码,添加
你的专属老师