フローティングアクションボタンを使用してページからコンテンツを共有する単一ページアプリケーションを作成しました。それはアンドロイドロリポップで完璧に動作しますが、私がkitkatでアプリを実行したときには表示されません。唯一のインタラクティブなコンポーネントはFABであるため、ユーザーは何もしていません。私はいくつかの検索を実行し、FABはkitkat上で完全に動作し、ロリポップ(パディングのようなもの)に関してのみ問題があることを発見しました。しかし、それはロリポップでうまく動作します。 lollipopより古いバージョンではボタンに変更する必要がありますか?私の最初の質問はここにあります。どんな助けもありがとうございます。ありがとう。フローティングアクションボタンがkitkatに表示されない
activity_main.xml
<?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:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context="com.ataraxianstudios.decksharer.MainActivity"
>
<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"
android:src="@drawable/share1"/>
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#016cb4">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:id="@+id/llMain"
>
<Spinner
android:id="@+id/osversions"
android:layout_width="220dp"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
/>
<ImageView
android:layout_width="60dp"
android:layout_height="80dp"
android:id="@+id/selectedImage"
/>
</LinearLayout>
</ScrollView>
</android.support.design.widget.CoordinatorLayout>
[this](http://stackoverflow.com/a/31753179/4790490)を確認してください – Hearty