我使用带有操作栏的自定义基本拨号布局...我的底部有一个按钮。如果最后一个按钮有两行,则完整的TextView
幻灯片位于其父级LinearLayout
之外...为什么会发生这种情况?
截图
我按下最后一个按钮显示问题...最后一个按钮向下滑动...屏幕截图显示布局中的llButtonBar
...
问题
布局
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="1" >
<ScrollView
android:id="@+id/svContent"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:fillViewport="true" >
<View
android:id="@+id/vContent"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
</ScrollView>
</LinearLayout>
<View
android:id="@+id/vDividerButtonBar"
android:layout_width="fill_parent"
android:layout_height="1dp"
android:background="?android:attr/dividerHorizontal" />
<LinearLayout
android:id="@+id/llButtonBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<Button
android:id="@+id/btNegative"
style="?android:attr/borderlessButtonStyle"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1" />
<View
android:id="@+id/vVerticalDivider1"
android:layout_width="1dp"
android:layout_height="fill_parent"
android:background="?android:attr/dividerVertical" />
<Button
android:id="@+id/btNeutral"
style="?android:attr/borderlessButtonStyle"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1" />
<View
android:id="@+id/vVerticalDivider2"
android:layout_width="1dp"
android:layout_height="fill_parent"
android:background="?android:attr/dividerVertical" />
<Button
android:id="@+id/btPositive"
style="?android:attr/borderlessButtonStyle"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1" />
</LinearLayout>
答案 0 :(得分:1)
尝试将以下属性添加到(llButtonBar)底部的Linearlayout:
android:gravity="center"
答案 1 :(得分:1)
尝试将layout_gravity
添加到LinearLayout
:
<LinearLayout
android:id="@+id/llButtonBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:orientation="horizontal">