-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
898bb81
commit 0f092fa
Showing
16 changed files
with
433 additions
and
114 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
android:background="@drawable/bac_white_one" | ||
android:gravity="center" | ||
android:orientation="vertical"> | ||
|
||
<TextView | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_marginTop="15dp" | ||
android:drawableLeft="@mipmap/icon_tips" | ||
android:gravity="center" | ||
android:text="支持各种布局,各种自定义属性哦!" | ||
android:textSize="11sp" /> | ||
|
||
<TextView | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:layout_marginBottom="28dp" | ||
android:layout_marginTop="18dp" | ||
android:gravity="center" | ||
android:text="请输入您的内容" | ||
android:textColor="@color/colorBlack" | ||
android:textSize="16sp" /> | ||
|
||
<View | ||
android:layout_width="match_parent" | ||
android:layout_height="1dp" | ||
android:layout_marginEnd="15dp" | ||
android:layout_marginStart="15dp" | ||
android:background="@color/colorGray" /> | ||
|
||
<EditText | ||
android:id="@+id/edt_content" | ||
style="@style/CustomEditText" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:layout_marginBottom="15dp" | ||
android:layout_marginTop="15dp" | ||
android:gravity="center" | ||
android:textColor="@color/colorBlack" | ||
android:textSize="13sp" /> | ||
|
||
<View | ||
android:layout_width="match_parent" | ||
android:layout_height="1dp" | ||
android:layout_marginEnd="15dp" | ||
android:layout_marginStart="15dp" | ||
android:background="@color/colorGray" /> | ||
|
||
<EditText | ||
android:id="@+id/edt_sub_content" | ||
style="@style/CustomEditText" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:layout_marginBottom="15dp" | ||
android:layout_marginTop="15dp" | ||
android:gravity="center" | ||
android:textColor="@color/colorBlack" | ||
android:textSize="13sp" /> | ||
|
||
<View | ||
android:layout_width="match_parent" | ||
android:layout_height="1dp" | ||
android:layout_marginEnd="15dp" | ||
android:layout_marginStart="15dp" | ||
android:background="@color/colorGray" /> | ||
|
||
<LinearLayout | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:gravity="center" | ||
android:orientation="horizontal"> | ||
|
||
<Button | ||
android:id="@+id/btn_cancel" | ||
android:layout_width="0dp" | ||
android:layout_height="wrap_content" | ||
android:layout_weight="1" | ||
android:background="@null" | ||
android:text="取消" | ||
android:textColor="@color/colorBlack" | ||
android:textSize="16sp" /> | ||
|
||
<Button | ||
android:id="@+id/btn_sure" | ||
android:layout_width="0dp" | ||
android:layout_height="wrap_content" | ||
android:layout_weight="1" | ||
android:background="@null" | ||
android:clickable="false" | ||
android:text="确定" | ||
android:textColor="@color/colorBlack" | ||
android:textSize="16sp" /> | ||
</LinearLayout> | ||
</LinearLayout> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.