我正在尝试使用此angular feedback module,但是,我很难转换提供给引导链接按钮的默认按钮。我的css更改似乎都没有生效。
例如
<li><angular-feedback options="options"></angular-feedback></li>
</ul>
没有出现红色边框,我根本无法移动。
我是这样的
btn btn-link
但是,在我的页脚中,它根本不显示在列表中,甚至不显示在页脚中(正上方)。
我只想在其上使用Bootstrap <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:id="@+id/button1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Button 1"/>
<Button
android:id="@+id/button6"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Button 6"
android:layout_alignParentBottom="true"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/button1"
android:orientation="vertical"
android:layout_above="@id/button6">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1">
<Button
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:text="Button 2"/>
<Button
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:text="Button 3"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1">
<Button
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:text="Button 4"/>
<Button
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:text="Button 5"/>
</LinearLayout>
</LinearLayout>
</RelativeLayout>
并进入列表?
答案 0 :(得分:0)
将反馈按钮作为选项传递。
feedbackButton(String)
定义自定义按钮,而不是显示在右下角的默认按钮。
Default: .feedback-btn
对于Ex。
$scope.options.feedbackButton = 'Your Class Name'
如果你可以分享屏幕截图,那将会很棒。