我有一個XML格式的問題,我不知道如何解決這個問題..問題與XML最後一個孩子補(安卓)
我想要做什麼:
我有一個活動,並在其中我尋呼機有一個PagerViewer和控制按鈕。 我想在底部加載控件佈局,在頂部加載Viewpager,它應該填充佈局的其餘部分。
我希望它看起來像這樣:
這是我的實際代碼:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="410dp"
android:layout_gravity="top" >
<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
</android.support.v4.view.ViewPager>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="bottom"
android:orientation="horizontal"
android:paddingLeft="16dp"
android:paddingTop="0dp" >
<Button
android:id="@+id/pre"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/Pre" />
<ZoomControls
android:id="@+id/zoomControls1"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<Button
android:id="@+id/next"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/Next" />
</LinearLayout>
</LinearLayout>
感謝任何形式的幫助。
編輯:感謝gio幫助正確編輯我的代碼。
請在您的帖子中添加您的代碼。 – 2014-12-27 19:23:55
用代碼塊代替你的圖片代碼 – gio 2014-12-27 20:07:59
我做到了Gio – Kandey 2014-12-27 20:19:58