2

フローティングアクションボタンを使用してページからコンテンツを共有する単一ページアプリケーションを作成しました。それはアンドロイドロリポップで完璧に動作しますが、私が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> 
+0

[this](http://stackoverflow.com/a/31753179/4790490)を確認してください – Hearty

答えて

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" 
    android:src="@android:drawable/ic_input_add" /> 

そして、あなたのbuild.gradle内:

依存関係{ ..... コンパイル 'com.android.support:design:xx.yy.zz' それはあなたのお役に立てば幸いです

FloatingActionButton btn = (FloatingActionButton) findViewById(R.id.fab); 

:}

最後に、あなたのアクティビティでは、次のようにFABを参照することができます! !

+0

私はそれを正確にやっています。しかし、4.4を実行しているデバイスでテストすると、表示されません。 –

+0

レイアウトで使用しているコードを表示できますか? – FrancescoAzzola

+0

レイアウトファイルを追加するためにOPを編集しました。 –

1

は私も..同じ問題がいくつかのタブまたはレイアウト上のいくつかの問題になるが、それは多分私の作品これはあなたのために働くてみて、それはキットカットの後に導入された材料設計などの材料設計によるものであるかもしれ持っ

<?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" 
> 



//Replace your fab from here 

<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> 


//to here: 
<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"/> 
</android.support.design.widget.CoordinatorLayout> 
+0

答え、ありがとう! –

関連する問題