我正在使用Crouron库,我的操作栏设置为FEATURE_ACTION_BAR_OVERLAY,如何设置Crouton从操作栏下方开始?我尝试使用marginTop进行自定义视图,这是我的代码:
LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
tools:ignore="Overdraw"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:layout_marginTop="?attr/actionBarSize"
android:background="@layout/round_edges_solid_grey_back"
android:padding="10dp">
<ImageView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/cruton_image"
android:src="@drawable/ic_launcher"
/>
<LinearLayout android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_marginLeft="5dp"
android:orientation="vertical">
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textStyle="bold"
android:id="@+id/cruton_text_a"
android:textColor="#fff"
android:text="asa" />
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#fff"
android:id="@+id/cruton_text_b"
android:text="sdfgs" />
然而,视图似乎仍然从动作栏后面突然出现,我有点看到它,任何想法?
答案 0 :(得分:6)
可以将Crouton附加到ViewGroup。因此,在您的示例中,由于您已在根布局中设置了android:layout_marginTop="?attr/actionBarSize"
,因此您只需在Root-Layout中添加一个ID,在代码中获取引用并添加到Crouton中。
代码示例:
LinearLayout rootLayout = (LinearLayout) findViewById(R.id.my_root_layout);
Crouton.showText(this, "myText", Style.INFO, rootLayout);