android – 在首选项菜单中使用相对布局

android – 在首选项菜单中使用相对布局,第1张

概述我的应用程序中有首选项菜单.我使用的是 Android 1.6.我想在屏幕底部使用静态保存按钮. 我知道如何使用android进行相对布局:layout_alignParentBottom =“true” <Button android:id="@id/preferencesSaveButton" android:layout_width="fill_parent" and 我的应用程序中有首选项菜单.我使用的是 Android 1.6.我想在屏幕底部使用静态保存按钮.

我知道如何使用androID进行相对布局:layout_alignParentBottom =“true”

<button    androID:ID="@ID/preferencesSavebutton"    androID:layout_wIDth="fill_parent"    androID:layout_height="wrap_content"    androID:layout_alignParentBottom="true"    androID:layout_gravity="center_horizontal"    androID:layout_marginBottom="10dp"    androID:layout_marginleft="20dp"    androID:layout_marginRight="20dp"    androID:layout_margintop="10dp"    androID:padding="15dp"    androID:text="Save"    androID:textStyle="bold" />

我们可以在relative Layout中使用偏好,还是有其他实用方法可以做到这一点?

解决方法 您可以在选项卡式布局中使用首选项活动,这将是您查询的实用方法.选项卡式布局应具有相对布局..
在其中一个tabhost中,您可以通过意图使用首选项活动..看起来很酷.
我不认为你需要一个优先保存按钮..如果你有偏好活动,它会自动保存偏好并共享.

<?xml version="1.0" enCoding="utf-8"?>    <TabHost androID:layout_wIDth="fill_parent"    androID:layout_height="fill_parent"    androID:ID="@androID:ID/tabhost"    xmlns:androID="http://schemas.androID.com/apk/res/androID"    >    <relativeLayout  androID:layout_height="fill_parent"  androID:layout_wIDth="fill_parent">  <FrameLayout    androID:ID="@androID:ID/tabcontent"    androID:layout_wIDth="fill_parent"    androID:layout_height="fill_parent"    androID:layout_above="@androID:ID/tabs"    androID:padding="5dp" />  <TabWidget    androID:ID="@androID:ID/tabs"    androID:layout_alignParentBottom="true"    androID:layout_wIDth="fill_parent"    androID:layout_height="wrap_content" /></relativeLayout>    </TabHost>
总结

以上是内存溢出为你收集整理的android – 在首选项菜单中使用相对布局全部内容,希望文章能够帮你解决android – 在首选项菜单中使用相对布局所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1126447.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存