我在平板電腦(API 22),手機(API 23和22)上設置Snackbar
時出現問題(從邊到邊),即使在水平時也是如此。 結果是這樣Snackbar如下:平板電腦上的小吃店半寬
FloatingActionButton(支持庫)也不會移動(當它在手機上)。
我的佈局:
<?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/snackParent"
android:layout_width="match_parent"
android:layout_height="match_parent">
<FrameLayout
android:id="@+id/frame"
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="bottom|right"
android:layout_marginBottom="@dimen/margin_fab"
android:layout_marginRight="@dimen/margin_fab"
app:pressedTranslationZ="12dp" />
</android.support.design.widget.CoordinatorLayout>
並使用MainActivity
private void showMessage(String msg) {
if(snackParent != null) {
snackbar = Snackbar.make(snackParent, msg, Snackbar.LENGTH_SHORT);
snackbar.setAction("OK", new View.OnClickListener() {
@Override
public void onClick(View v) {
snackbar.dismiss();
}
});
snackbar.show();
}
}
我有一個尺寸(FAB保證金)爲平板電腦(w820dp)唯一的其他資源文件,樣式文件夾是手機之間同片劑。我也嘗試使Android Studio緩存無效。我使用com.android.support:design:23.0.1
targetSdkVersion = 23和compileSdkVersion = 23,buildToolsVersion = 23.0.1。
我覺得這是小吃吧的在平板電腦上的默認行爲。檢查[這](http://www.viralandroid.com/2015/08/android-snackbar-design-support-library.html)出 –
是的,我剛剛測試了空的項目與舊的支持庫版本,targetSdkVersion等。而且似乎都指出這是有意的。 你可以將你的重播發布爲答案嗎? –
回答爲答案 –