23 lines
929 B
XML
23 lines
929 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<com.ubtech.view.widget.ULinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:gravity="center"
|
|
android:orientation="horizontal"
|
|
android:id="@+id/bottomShadowLayout"
|
|
android:background="@drawable/action_button_background"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
<ImageView
|
|
android:id="@+id/imageView"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"/>
|
|
<TextView
|
|
android:textSize="@dimen/text_size_20"
|
|
android:textColor="@android:color/white"
|
|
android:layout_gravity="center"
|
|
android:id="@+id/textView"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="@dimen/dp_10"
|
|
android:text="@string/login"/>
|
|
</com.ubtech.view.widget.ULinearLayout>
|