xml Android自定义吐司xml视图。
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了xml Android自定义吐司xml视图。相关的知识,希望对你有一定的参考价值。
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/custom_toast_layout"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom|center_horizontal"
android:layout_marginBottom="50dp"
android:background="@color/main_blue">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:background="@color/main_blue"
android:orientation="horizontal"
android:padding="8dp">
<ImageView
android:layout_width="50dp"
android:layout_height="30dp"
android:layout_gravity="left|center_vertical"
android:layout_marginRight="10dp"
android:src="@drawable/logo_white" />
<TextView
android:id="@+id/textToShow"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical|center_horizontal|center"
android:text="Some text"
android:textColor="@android:color/white"
android:textSize="14sp" />
</LinearLayout>
</FrameLayout>
以上是关于xml Android自定义吐司xml视图。的主要内容,如果未能解决你的问题,请参考以下文章
从 xml 制作自定义视图
从 XML 膨胀自定义视图会创建 Illegalstateexception(Android, Java)
xml android中无法访问自定义视图属性
android xml,布局中自定义视图的崩溃
Xamarin Shell android 使用 xml 标记进行自定义
Android 通过 id 更新自定义 XML imageView