2016-11-19 52 views
0

我對Android開發很新穎,而且我的第一個應用程序有點問題。如果有人能幫助找到解決方案,這將是非常好的。我搜查了但沒有找到一個。我的想法是,它可能超出屏幕的,因爲相對佈局不承認有上述標籤...
我的問題是下面的,我有這樣的XML佈局:Android XML佈局不在屏幕上(可能是因爲製表符)

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:app="http://schemas.android.com/apk/res-auto" 
    android:orientation="vertical" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent">` 

    <android.support.design.widget.FloatingActionButton 
    android:id="@+id/fab" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_gravity="end|bottom" 
    android:layout_alignParentBottom="true" 
    android:layout_alignParentEnd="true" 
    android:layout_margin="@dimen/fab_margin" 
    app:srcCompat="@android:drawable/ic_dialog_email" 
    android:layout_alignParentRight="true" /> 
</RelativeLayout> 

這是應該如何看起來像: Screenshot
這是它是如何看起來像: Screenshot

編輯: 這僅僅是一個片段 - >這裏是容器:

<?xml version="1.0" encoding="utf-8"?> 
<android.support.design.widget.CoordinatorLayout 
xmlns:android="http://schemas.android.com/apk/res/android" 
xmlns:app="http://schemas.android.com/apk/res-auto" 
xmlns:tools="http://schemas.android.com/tools" 
android:id="@+id/main_content" 
android:layout_width="match_parent" 
android:layout_height="match_parent" 
android:fitsSystemWindows="true"> 

<android.support.design.widget.AppBarLayout 
    android:id="@+id/appbar" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:paddingTop="@dimen/appbar_padding_top" 
    android:theme="@style/AppTheme.AppBarOverlay"> 

    <android.support.v7.widget.Toolbar 
     android:id="@+id/toolbar" 
     android:layout_width="match_parent" 
     android:layout_height="?attr/actionBarSize" 
     android:background="?attr/colorPrimary" 
     app:layout_scrollFlags="scroll|enterAlways" 
     app:popupTheme="@style/AppTheme.PopupOverlay"> 

    </android.support.v7.widget.Toolbar> 

    <android.support.design.widget.TabLayout 
     android:id="@+id/tabs" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" /> 

</android.support.design.widget.AppBarLayout> 

<android.support.v4.view.ViewPager 
    android:id="@+id/container" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    app:layout_behavior="@string/appbar_scrolling_view_behavior" /> 

</android.support.design.widget.CoordinatorLayout> 
+0

嘗試取出alignParent標籤。 – AlphaQ

+0

但我想FloatingActionButton在右下角。沒有alignParent標籤,按鈕位於左上角。 @AlphaQ – patwis

+0

android:layout_gravity =「bottom | end」應該將晶圓廠置於其位置。 – AlphaQ

回答

0

嘗試使用這樣的:

<android.support.design.widget.FloatingActionButton 
    android:id="@+id/fab" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_gravity="bottom|end" 
    android:layout_margin="@dimen/fab_margin" 
    app:srcCompat="@android:drawable/ic_dialog_email" /> 

android:layout_marginBottom="?attr/actionBarSize"activity_main.xml viewPager

+0

layout_gravity doesn' t似乎工作,因爲它應該...因爲現在按鈕是在左上角... @ Swr7der – patwis

+0

我認爲你應該使用一些其他的佈局,(但它對我來說工作正常)。你能發佈更多細節嗎?您正在使用的選項卡活動的activitymain和contentmain? – Swr7der

+0

我在主帖中發佈了應用程序容器的xml代碼...我還應該展示什麼?我不通過java編輯佈局。 @ Swr7der – patwis