forked from geeeeeeeeek/WeChatLuckyMoney
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update ui , replace uber with alipay luckymoney
- Loading branch information
1 parent
3a85897
commit ca97832
Showing
16 changed files
with
198 additions
and
116 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
|
||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:tools="http://schemas.android.com/tools" | ||
android:orientation="vertical" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent"> | ||
|
||
<RelativeLayout android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:background="#E46C62" | ||
tools:context=".SettingsActivity" | ||
> | ||
<TextView android:layout_width="wrap_content" android:layout_height="54dp" | ||
android:id="@+id/settings_bar" | ||
android:text="@string/preference" android:textColor="#fff" | ||
android:gravity="left|center_vertical|center_horizontal" | ||
android:elegantTextHeight="false" android:textSize="18sp" | ||
android:layout_toEndOf="@+id/preference_back" | ||
/> | ||
<ImageView | ||
android:layout_width="40dp" | ||
android:layout_height="match_parent" | ||
android:id="@+id/preference_back" | ||
android:layout_marginLeft="4dp" | ||
android:layout_marginRight="4dp" | ||
android:clickable="true" android:onClick="performBack" | ||
android:layout_alignBottom="@+id/settings_bar" | ||
android:src="@mipmap/ic_back" android:padding="10dp" android:focusable="true" android:contentDescription="TODO" /> | ||
<ImageView android:layout_width="40dp" android:layout_height="match_parent" android:id="@+id/imageView3" | ||
android:clickable="true" | ||
android:onClick="enterAccessibilityPage" | ||
android:layout_alignParentEnd="true" | ||
android:layout_marginEnd="10dp" android:layout_marginStart="8dp" | ||
android:padding="8dp" android:src="@mipmap/ic_refresh" | ||
android:layout_alignBottom="@+id/settings_bar" android:focusable="true" android:contentDescription="@string/todo" /> | ||
</RelativeLayout> | ||
<FrameLayout android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
android:id="@+id/preferences_fragment" | ||
tools:layout="@android:layout/simple_list_item_1"/> | ||
</LinearLayout> |
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,47 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
|
||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:tools="http://schemas.android.com/tools" | ||
android:orientation="vertical" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" tools:context=".activities.WebViewActivity"> | ||
|
||
<RelativeLayout android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:background="#E46C62" | ||
tools:context=".WebViewActivity" | ||
> | ||
<TextView android:layout_width="wrap_content" android:layout_height="54dp" | ||
android:id="@+id/webview_bar" | ||
android:text="@string/app_name" | ||
android:gravity="left|center_vertical|center_horizontal" | ||
android:elegantTextHeight="false" android:textSize="18sp" | ||
android:layout_toEndOf="@+id/webview_back" | ||
android:textColor="#fff"/> | ||
<ImageView | ||
android:layout_width="40dp" | ||
android:layout_height="fill_parent" | ||
android:id="@+id/webview_back" | ||
android:layout_marginLeft="4dp" | ||
android:layout_marginRight="4dp" | ||
android:clickable="true" android:onClick="performBack" | ||
android:layout_alignBottom="@+id/webview_bar" | ||
android:src="@mipmap/ic_back" android:layout_alignParentBottom="false" | ||
android:layout_alignParentTop="false" android:layout_alignParentStart="true" | ||
android:cropToPadding="false" android:padding="10dp" android:focusable="true" android:contentDescription="@string/todo" /> | ||
<ImageView | ||
android:layout_width="40dp" | ||
android:layout_height="fill_parent" | ||
android:id="@+id/webview_outlink" | ||
android:layout_marginEnd="10dp" | ||
android:clickable="true" android:onClick="openLink" | ||
android:layout_alignBottom="@+id/webview_bar" | ||
android:src="@mipmap/ic_open_in_browser" android:layout_alignParentEnd="true" | ||
android:layout_marginStart="8dp" android:padding="8dp" android:contentDescription="@string/todo" android:focusable="true" /> | ||
</RelativeLayout> | ||
<WebView | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
android:id="@+id/webView" | ||
android:layout_gravity="center_horizontal"/> | ||
</LinearLayout> |
Oops, something went wrong.