我有像这样的自定义视图
public class ButtonBar extends HorizontalScrollView
{
public View mButtonRows;
public ButtonBar(Context context, AttributeSet attrs)
{
super(context, attrs);
LayoutInflater inflater = (LayoutInflater)
context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
mButtonRows = inflater.inflate(R.layout.toolbar, null);
// button click handling code goes here
addView(mButtonRows);
}
}
包含在我的主要xml中,如此
<com.example.ButtonBar
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_below="@+id/pagecontent" />
并像这样膨胀一个xml文件:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/ButtonsRow"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<Button
android:id="@+id/button1"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:layout_weight="0.3"
android:text="button1"
/>
<Button
android:id="@+id/button2"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:layout_weight="0.3"
android:text="button2"
/>
<Button
android:id="@+id/button3"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:layout_weight="0.3"
android:text="button3"
/>
</LinearLayout>
(它目前只有三个按钮,但在以后的版本中需要更多按钮,因此是HorizontalScrollView。)
查看hierarchyviewer,自定义视图看起来似乎是屏幕宽,但LinearLayout只有它所包含的按钮宽(当前按钮大小约为屏幕的2/3),尽管{{1宽度设置;按钮不伸展。如果我将LinearLayout的背景设置为fill_parent
(这是屏幕宽度的png),则按钮会正确调整大小;我意识到我可以通过创建自己的图像来做同样的事情来匹配,但我宁愿在没有可能的情况下这样做。
我做错了什么?
ETA:如果我将HorizontalScollView更改为ScrollView,它可以正常工作。 HSV不允许他们的孩子“fill_parent”吗?
ETA2 :在主xml中设置@android:drawable/bottom_bar
修复了它!
答案 0 :(得分:6)
在主xml中设置android:fillViewport =“true”修复它!
答案 1 :(得分:0)
如果更改为此,对于每个按钮,它是否有效?
android:layout_width="0px"
android:layout_weight="1"