使用标题栏时遇到问题?
我正在尝试使用以下代码插入标题栏。我尝试将其上的两个按钮保留在最左端和最右端。但这些按钮在标题栏上不可见。
TextView 在这里用作标题栏,即:
<TextView
android:layout_width="fill_parent"
android:layout_height="50px"
android:text="CAMERA"
android:gravity="center_horizontal"
android:background="#4C7D7E"
>
</TextView>
按钮代码:
<
Button
android:id="@+id/save"
android:layout_width="144px"
android:layout_height="37px"
android:text="save"
android:layout_x="7px"
android:layout_y="388px"
>
</Button>
<Button
android:id="@+id/send"
android:layout_width="144px"
android:layout_height="37px"
android:text="send"
android:layout_x="158px"
android:layout_y="388px"
>
</Button>
无法猜测。任何人都可以帮助我吗?
提前致谢
I am trying to insert a title bar with the following code. I try to keep the two buttons on it at left most and right most ends. But the buttons are not visible on the titlebar.
TextView is used as a title bar here and that is :
<TextView
android:layout_width="fill_parent"
android:layout_height="50px"
android:text="CAMERA"
android:gravity="center_horizontal"
android:background="#4C7D7E"
>
</TextView>
code for buttons:
<
Button
android:id="@+id/save"
android:layout_width="144px"
android:layout_height="37px"
android:text="save"
android:layout_x="7px"
android:layout_y="388px"
>
</Button>
<Button
android:id="@+id/send"
android:layout_width="144px"
android:layout_height="37px"
android:text="send"
android:layout_x="158px"
android:layout_y="388px"
>
</Button>
Cant guess.Can any one help me
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您应该定义这样的布局并将其设置为标题栏。
You should define a layout like this and set it as title bar.
这些物品属于什么类型的父母?就我个人而言,我可能会使用 TableLayout,然后使用重力将对象放置在我希望它们出现的位置。使用权重标签设置标题栏上对象的间距。
What type of parent do these items reside in? Personally, I would probably use a TableLayout and then use gravity to position the objects where I wanted them to appear. Use the weight tag to set the spacing for the objects on the titleBar.
使用此并告诉我这适合您吗?
Use This and tell me is this work for you?