2016-04-08 15 views
0

このアクティビティから画面の一番下に空白が表示されないようです。それで私はその活動の中で私のレイアウトを設定しました。レイアウトfill_parent/match_parent not working

@Override 
protected void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.activity_transformer); 

これは私のactivity_transformerコードです。私が何をしても、私は空きスペースを出すことができません!助けてください。私は今の日を探していて、まだそれを働かせることはできません。

<RelativeLayout 
xmlns:android="http://schemas.android.com/apk/res/android" 
xmlns:tools="http://schemas.android.com/tools" 
xmlns:custom="http://schemas.android.com/apk/res-auto" 
xmlns:app="http://schemas.android.com/apk/res-auto" 
android:layout_width="match_parent" 
android:layout_height="match_parent" 
tools:context=".AdvancedActivity"> 
<com.daimajia.slider.library.SliderLayout 
    android:id="@+id/slider" 
    android:layout_width="fill_parent" 
    custom:pager_animation="Accordion" 
    custom:auto_cycle="true" 
    custom:indicator_visibility="visible" 
    custom:pager_animation_span="1100" 
    android:layout_height="fill_parent" 
    android:layout_alignParentStart="true" 
    android:layout_alignParentTop="true" /> 

<com.daimajia.slider.library.Indicators.PagerIndicator 
    android:id="@+id/custom_indicator" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:gravity="center" 
    custom:selected_color="#0095BF" 
    custom:unselected_color="#55333333" 
    custom:selected_drawable="@drawable/bird" 
    custom:shape="oval" 
    custom:selected_padding_left="5dp" 
    custom:selected_padding_right="5dp" 
    custom:unselected_padding_left="5dp" 
    custom:unselected_padding_right="5dp" 
    android:layout_centerHorizontal="true" 
    android:layout_alignParentBottom="true" 
    custom:selected_width="6dp" 
    custom:selected_height="6dp" 
    custom:unselected_width="6dp" 
    custom:unselected_height="6dp" 
    android:layout_marginBottom="20dp" 
    /> 
<com.daimajia.slider.library.Indicators.PagerIndicator 
    android:id="@+id/custom_indicator2" 
    style="@style/AndroidImageSlider_Corner_Oval_Orange" 
    android:layout_centerHorizontal="true" 
    android:layout_alignParentBottom="true" 
    android:layout_marginBottom="20dp" 
    android:layout_width="wrap_content" 
    android:layout_height="match_parent" /> 



<com.dd.CircularProgressButton 
    android:id="@+id/btnWithText" 
    android:layout_width="86dp" 
    android:layout_height="64dp" 
    android:textColor="#FFFFFF" 
    android:textSize="30dp" 

    android:text="GO" 
    android:layout_alignBottom="@+id/slider" 
    android:layout_centerHorizontal="true" /> 

<!--<ListView--> 
    <!--android:layout_below="@+id/slider"--> 
    <!--android:id="@+id/transformers"--> 
    <!--android:layout_width="match_parent"--> 
    <!--android:layout_height="wrap_content"></ListView>--> 

底面の湖底は、一番下にあるべきです。それはこのようなあなたのbuttonandroid:layout_alignParentBottom="true"を追加し、私はそれが

<com.dd.CircularProgressButton 
android:id="@+id/btnWithText" 
android:layout_width="86dp" 
android:layout_height="64dp" 
android:textColor="#FFFFFF" 
android:textSize="30dp" 

android:text="GO" 
android:layout_alignBottom="@+id/slider" 
android:layout_alignParentBottom="true" 
android:layout_centerHorizontal="true" /> 

を働い知っていると

enter image description here

+0

paddingBottomをルートレイアウトに追加します。つまり、RelativeLayoutです。あなたは行くのが良いです。 –

答えて

0

Androidのメーカーにプレビューをどのように見えるか

enter image description here

<com.daimajia.slider.library.Indicators.PagerIndicator />からandroid:layout_alignParentBottom="true"を削除します。画面の下部に表示されます。

+0

は試しましたが、役に立たないです。実際には底に届かないボタンではありません。レイアウト自体は底に届かない。 – user1899158

+0

@ user1899158私の編集した回答を参照してください。それを取り除くとあなたの問題が解決されます。 –

+0

@ user1899158何が起こったのですか?私の答えはあなたの問題を解決しましたか? –