的代碼片段:工具:ignore =「UselessParent」是什麼意思在Android XML佈局文件中?
<LinearLayout
android:id="@+id/fullscreen_content_controls"
style="?buttonBarStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom|center_horizontal"
android:background="@color/black_overlay"
android:orientation="horizontal"
tools:ignore="UselessParent" >
<Button
android:id="@+id/dummy_button"
style="?buttonBarButtonStyle"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/dummy_button" />
</LinearLayout>
我不知道tools:ignore="UselessParent"
手段。這是否意味着當棉絨發現按鈕填充了LinearLayout
,然後LinearLayout
將被刪除,並且Button將移動到父級並讓視圖層次高效?非常感謝!
請參閱[參考鏈接](http://tools.android.com/tech-docs/tools-attributes)如果我的答案會幫助你,那麼請接受答案。 –