このアクティビティから画面の一番下に空白が表示されないようです。それで私はその活動の中で私のレイアウトを設定しました。レイアウト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>-->
底面の湖底は、一番下にあるべきです。それはこのようなあなたのbutton
にandroid: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" />
を働い知っていると
paddingBottomをルートレイアウトに追加します。つまり、RelativeLayoutです。あなたは行くのが良いです。 –