我遇到了同样的问题 - 当我想在XML文件中添加id LinearLayout时,Eclipse说该文件是正确构建的 - 但由于组件ID不可用 - 它没有添加到文件R. java的。也许这是因为对于给定组件指定了警告“此LinearLayout布局或其TableRow父级可能无用”?我怎么解决这个问题?我希望得到你的帮助。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:background="#E8E8E8" >
<TableLayout xmlns:android = "http://schemas.android.com/apk/res/android"
android:orientation = "vertical"
android:layout_width = "wrap_content"
android:layout_height = "wrap_content">
<TableRow
android:id="@+id/base_table_row1"
android:layout_width = "wrap_content"
android:layout_height = "wrap_content"
android:paddingTop = "15dp"
android:paddingBottom = "15dp"
android:gravity = "center">
<TextView
android:id="@+id/name_placeView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="name of the place"
android:gravity="center"
android:textStyle="bold"
android:textColor="#000000"
android:textSize="30sp"/>
</TableRow>
<TableRow
android:id = "@+id/base_table_row3"
android:layout_width = "fill_parent"
android:layout_height = "wrap_content"
android:gravity = "center">
<TextView
android:id="@+id/info_placeView"
android:textColor="#808080"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingLeft="5dp"
android:paddingRight="5dp"
android:text="adress"/>
</TableRow>
<TableRow
android:id = "@+id/base_table_row2"
android:layout_width = "fill_parent"
android:layout_height = "wrap_content"
android:paddingBottom = "15dp"
android:gravity = "center">
<TextView
android:id="@+id/info_placeView"
android:layout_width="wrap_content"
android:textColor="#808080"
android:paddingLeft="5dp"
android:paddingRight="5dp"
android:layout_height="wrap_content"
android:text="There will be placed an short information about place"/>
</TableRow>
<TableRow
android:id = "@+id/base_table_row3"
android:layout_width = "wrap_content"
android:layout_height = "wrap_content"
android:paddingTop = "15dp"
android:gravity = "center">
<TextView
android:id="@+id/comfortView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textStyle="bold"
android:paddingLeft="5dp"
android:paddingRight="5dp"
android:textColor="#DAA520"
android:text="Atmosphear"/>
</TableRow>
<TableRow
android:id = "@+id/base_table_row4"
android:layout_width = "wrap_content"
android:layout_height = "wrap_content"
android:gravity = "center">
<LinearLayout xmlns:android = "http://schemas.android.com/apk/res/android"
android:orientation = "vertical"
android:layout_width = "wrap_content"
android:layout_height = "wrap_content"
android:gravity="center">
<RatingBar
android:id="@+id/ratingBar1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:numStars="5"
android:stepSize="1.0" />
</LinearLayout>
</TableRow>
<TableRow
android:id = "@+id/base_table_row5"
android:layout_width = "fill_parent"
android:layout_height = "wrap_content"
android:paddingTop = "15dp"
android:gravity = "center">
<TextView
android:id="@+id/priceView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textStyle="bold"
android:paddingLeft="5dp"
android:paddingRight="5dp"
android:textColor="#DAA520"
android:text="Peoplemeter" />
</TableRow>
<TableRow
android:id = "@+id/base_table_row6"
android:layout_width = "wrap_content"
android:layout_height = "wrap_content"
android:gravity = "center">
<LinearLayout
xmlns:android = "http://schemas.android.com/apk/res/android"
android:id="@+id/layout_rate_bar2"
android:orientation = "vertical"
android:layout_width = "wrap_content"
android:layout_height = "wrap_content"
android:gravity="center">
<RatingBar
android:numStars="5"
android:id="@+id/ratingBar2"
android:stepSize="1.0"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</LinearLayout>
</TableRow>
<TableRow
android:id = "@+id/base_table_row7"
android:layout_width = "wrap_content"
android:layout_height = "wrap_content"
android:paddingTop = "20dp"
android:gravity = "center"
>
<LinearLayout
android:id = "@+id/final_rate_layout"
android:orientation = "vertical"
android:layout_width = "wrap_content"
android:layout_height = "wrap_content"
android:gravity="center"
>
<Button
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:background="@drawable/button_custom_rate"
android:textStyle="bold"
android:textSize="20sp"
android:text="RATE IT"
android:id="@+id/final_rate"
android:clickable="true"
/>
</LinearLayout>
</TableRow>
</TableLayout>
</LinearLayout>
答案 0 :(得分:0)
首先,您不需要为每个布局使用xmlns:android="http://schemas.android.com/apk/res/android"
,只需为根布局。其次,尝试清理项目,这会强制重建并重新生成R.java
。您可能在更改布局文件后没有重新创建它自己。在正常情况下它应该正常工作。希望这会有所帮助。