编译xml文件时出错

时间:2017-09-15 14:48:27

标签: android

List<RideLocation> list = Ebean.find(RideLocation.class).where().ge("ride.rideDate", "2017-09-13").and().like("locationName", "San Jose").findList();

有人可以解决我得到的错误我也面临android目录中的低磁盘存储错误。请在这里卡住并且在浏览数小时后没有得到任何答案。

      <?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context=".MainActivity"
android:layout_height="wrap_content"
android:layout_width="wrap_content">


        <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="CLICK ME"
        android:id="@+id/textView">
        <requestFocus />
    </TextView>
  </RelativeLayout>

1 个答案:

答案 0 :(得分:0)

No element found的{​​p> <requestFocus />如果没有必要,请删除此标记。

 <?xml version="1.0" encoding="utf-8"?>
   <RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:paddingBottom="@dimen/activity_vertical_margin"
    tools:context=".MainActivity"
    android:layout_height="wrap_content"
    android:layout_width="wrap_content">   

        <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="CLICK ME"
        android:id="@+id/textView">

    </TextView>
  </RelativeLayout>