我想在我的
底栏布局的中间添加Facebook Messenger,例如超大按钮,但困惑如何添加。
我正在使用ahbottomnavigation库来制作我的底栏。
我只是试图使其简单而不是专业类型。看这里:
BottomSheetLayout文件- tv.xml
:
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:bottom="2dp"
android:left="2dp"
android:right="2dp"
android:top="15dp">
<shape android:shape="rectangle">
<solid android:color="@color/colorPrimary" />
</shape>
</item>
<item
android:width="70dp"
android:height="70dp"
android:gravity="top|center">
<shape android:shape="oval">
<solid android:color="@color/colorPrimaryDark" />
</shape>
</item>
ActivityLayout - activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout android:layout_height="match_parent"
android:layout_width="match_parent"
xmlns:android="http://schemas.android.com/apk/res/android">
<RelativeLayout
android:layout_height="80dp"
android:layout_width="match_parent"
android:background="@drawable/tv"
android:gravity="bottom"
android:layout_alignParentBottom="true"
android:layout_alignParentStart="true"
android:id="@+id/view">
</RelativeLayout>
<ImageButton
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_marginStart="34dp"
android:layout_alignBottom="@+id/imageButton"
android:layout_toEndOf="@+id/imageButton"
android:id="@+id/imageButton3" />
<ImageButton
android:layout_width="70dp"
android:layout_height="70dp"
android:background="@drawable/ic_ring"
android:layout_alignTop="@+id/view"
android:layout_centerHorizontal="true"
android:id="@+id/imageButton" />
<ImageButton
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_marginStart="33dp"
android:id="@+id/imageButton2"
android:layout_alignBottom="@+id/imageButton3"
android:layout_toEndOf="@+id/imageButton3" />
<ImageButton
android:layout_width="40dp"
android:layout_height="40dp"
android:id="@+id/imageButton4"
android:layout_marginEnd="34dp"
android:layout_alignBottom="@+id/imageButton"
android:layout_toStartOf="@+id/imageButton" />
<ImageButton
android:layout_width="40dp"
android:layout_height="40dp"
android:id="@+id/imageButton5"
android:layout_alignParentBottom="true"
android:layout_toStartOf="@+id/imageButton4"
android:layout_marginEnd="33dp"
android:layout_marginBottom="10dp"/>
</RelativeLayout>
Output:
根据您的想法改变价值和设计。
示例仅是一个演示,并不包含OP要求的确切答案。它只是
一个硬编码的假人。
我是JavaFX的新手!!我试了一个非常非常简单的代码,结果卡住了。当我试图添加一个按钮到布局,它不工作。我知道这个问题可能太简单,但我真的不知道如何解决。如果你能帮助我,我将不胜感激。这是我的代码: 我得到了一个错误:
问题内容: 如何在Android中动态添加按钮? 问题答案:
问题内容: 我只是试图在我的注释点添加一个细节按钮而被卡住,不幸的是,我不知道该怎么做。有人可以帮我吗? 下图显示了我想要实现的目标。谢谢! MapKitViewController: 问题答案: 您做对了,您只需要实现这些方法即可添加按钮以及标题和副标题 iOS 8和Xcode 6 查看我的输出。
我尝试过使用阴影xmls进行线性布局,但似乎没有按照我想要的方式进行。我使用的代码是: 请建议我如何实现这一点。
我想在线性布局(垂直)中添加一行文本 我想在java的函数中添加它们 如何做到这一点?
[更新] 我通过添加addHeaderView解决了这个问题: ================================ 我的问题就是这么简单! 我想知道如何在导航抽屉中添加标题? 我已经为每个项目创建了带有列表视图(图标文本)的导航抽屉。 非常感谢,