在android中仅使用java代码实现LinearLayout

发布于 2024-11-09 14:16:50 字数 792 浏览 0 评论 0原文

有一个带有

<文本视图 android:id="@+id/tc_buttom_text1" 安卓:layout_width =“wrap_content” 安卓:layout_height =“wrap_content” android:text="已过时间" > <文本视图 android:id="@+id/tc_buttom_text2" 安卓:layout_width =“wrap_content” 安卓:layout_height =“wrap_content” 安卓:文本=“00:00:00 00” > <按钮 android:id="@+id/tc2_home" 安卓:layout_width =“70px” 安卓:layout_height =“wrap_content” android:layout_marginLeft="200px" 机器人:layout_marginRight =“10px” 安卓:文本=“主页” 安卓:layout_weight =“0.5” >

可以通过给出路径来获得 LinearLayout 视图,因为

setContentView(R.layout.main);

任何人都可以帮助我只使用 java 代码做同样的事情吗?

With having a main.xml file with

<LinearLayout
android:id="@+id/widget43"
android:layout_width="fill_parent"
android:layout_height="100px"
>
<TextView
android:id="@+id/tc_buttom_text1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Time elapsed"
>
</TextView>
<TextView
android:id="@+id/tc_buttom_text2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="00:00:00 00"
>
</TextView>
<Button
android:id="@+id/tc2_home"
android:layout_width="70px"
android:layout_height="wrap_content"
android:layout_marginLeft="200px"
android:layout_marginRight="10px"
android:text="Home"
android:layout_weight="0.5"
>
</Button>
</LinearLayout>

is ok to gain a LinearLayout view by giving the path as

setContentView(R.layout.main);

Anyone can help me to do this same thing with only using java code?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文