2 Star 1 Fork 2

lagrange/Robot

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
fragment_to_show.xml 2.20 KB
一键复制 编辑 原始数据 按行查看 历史
lagrange 提交于 2021-04-17 17:52 . first commit
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/constraintLayout_toShow"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".ui.ToShowFragment">
<androidx.constraintlayout.widget.Guideline
android:id="@+id/guideline_v_toShow"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
app:layout_constraintGuide_percent="0.8" />
<androidx.fragment.app.FragmentContainerView
android:id="@+id/fragment_show_f"
android:name="com.blueprint.robot.ui.ShowFragment"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toStartOf="@+id/guideline_v_toShow"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<ImageButton
android:id="@+id/imageButton_back_toShow"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#00FFFFFF"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toStartOf="@+id/guideline_v_toShow"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="@+id/fragment_show_f"
app:layout_constraintVertical_bias="0.0"
app:srcCompat="@drawable/ic_baseline_arrow_back_24" />
<androidx.fragment.app.FragmentContainerView
android:id="@+id/fragment5"
android:name="com.blueprint.robot.ui.SidebarFragment"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="@+id/guideline_v_toShow"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/lagrangetay/robot.git
[email protected]:lagrangetay/robot.git
lagrangetay
robot
Robot
master

搜索帮助