xml 活动主要

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了xml 活动主要相关的知识,希望对你有一定的参考价值。

You can replace Constraint Layout with Linear Layout.

<!-- In Linear Layout opening tag. -->

android:background="@color/background"
android:orientation="vertical"
android:gravity="center"

<!-- Inside Linear Layout tag. -->

<ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/ic_launcher_foreground"
        />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textColor="@color/white"            // Needs Defn in Strings.xml
        android:textColor="@android:color/white"    // Direct Access from predefined colors
        android:padding="8dp"
        android:textSize="27sp"
        android:id="@+id/answers"
        android:text="Test Question"
        />
        
    <Button
            android:id="@+id/Option2"
            android:text="@string/rick_sanchez"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="65dp"
            android:layout_marginTop="20dp"
            />
            

以上是关于xml 活动主要的主要内容,如果未能解决你的问题,请参考以下文章

xml 活动主要

通过按钮更改活动并显示 xml

从主活动更新不同布局 xml 中的文本视图

如何使用 cordova 3.x 新的命令行界面在主要活动中编写代码

如何打开另一个活动而不会丢失主要活动布局上的项目?

如何正确添加新的布局 xml?