Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
roy9527 committed Nov 18, 2013
1 parent 522a702 commit 3ba35b4
Show file tree
Hide file tree
Showing 5 changed files with 243 additions and 45 deletions.
10 changes: 9 additions & 1 deletion client/Android/gen/com/roy/wolf/R.java
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ public static final class drawable {
public static final int yt=0x7f020019;
}
public static final class id {
public static final int action_settings=0x7f0b006c;
public static final int action_settings=0x7f0b0073;
public static final int app_logo=0x7f0b0022;
public static final int app_logo_province=0x7f0b0023;
public static final int app_name=0x7f0b0024;
Expand Down Expand Up @@ -348,7 +348,11 @@ public static final class id {
public static final int notification_update_icon=0x7f0b005d;
public static final int notification_update_text=0x7f0b005e;
public static final int notification_version=0x7f0b0059;
public static final int operate_0=0x7f0b0070;
public static final int operate_1=0x7f0b0071;
public static final int operate_2=0x7f0b0072;
public static final int other_operation=0x7f0b0030;
public static final int pop_cancel=0x7f0b006c;
public static final int rec_install1=0x7f0b003a;
public static final int rec_install2=0x7f0b0040;
public static final int rec_install3=0x7f0b0046;
Expand Down Expand Up @@ -376,6 +380,9 @@ public static final class id {
public static final int setup_layout=0x7f0b0066;
public static final int setup_message=0x7f0b0069;
public static final int setup_text=0x7f0b006b;
public static final int shop_addr=0x7f0b006f;
public static final int shop_logo=0x7f0b006d;
public static final int shop_name=0x7f0b006e;
public static final int status=0x7f0b0060;
public static final int status1=0x7f0b003c;
public static final int status2=0x7f0b0042;
Expand Down Expand Up @@ -411,6 +418,7 @@ public static final class layout {
public static final int item_menu_layout=0x7f030008;
public static final int notification=0x7f030009;
public static final int notification_inc=0x7f03000a;
public static final int popup_show_operate_layout=0x7f03000b;
}
public static final class menu {
public static final int main=0x7f0a0000;
Expand Down
89 changes: 89 additions & 0 deletions client/Android/res/layout/popup_show_operate_layout.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
<?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="wrap_content"
android:background="@color/fuxk_base_color_white_"
android:gravity="center_horizontal"
android:orientation="vertical"
android:padding="@dimen/dd_dimen_30px" >

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >

<ImageView
android:id="@+id/pop_cancel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:scaleType="centerCrop"
android:padding="@dimen/dd_dimen_15px"
android:layout_alignParentRight="true"
android:src="@drawable/fuxk_cancel" />
</RelativeLayout>

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >

<ImageView
android:id="@+id/shop_logo"
android:layout_width="@dimen/dd_dimen_80px"
android:layout_height="@dimen/dd_dimen_60px"
android:scaleType="centerCrop"
android:src="@drawable/ic_launcher" />

<TextView
android:id="@+id/shop_name"
style="@style/TextViewStyleSmall"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignTop="@+id/shop_logo"
android:layout_marginLeft="@dimen/dd_dimen_5px"
android:layout_toRightOf="@+id/shop_logo"
android:ellipsize="end"
android:singleLine="true"
android:text="你大爷的shop" />

<TextView
android:id="@+id/shop_addr"
style="@style/TextViewStyleSmall"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/shop_logo"
android:layout_marginLeft="@dimen/dd_dimen_5px"
android:layout_marginTop="@dimen/dd_dimen_5px"
android:layout_toRightOf="@+id/shop_logo"
android:ellipsize="end"
android:singleLine="true"
android:text="你大爷的地址" />
</RelativeLayout>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/dd_dimen_10px"
android:orientation="horizontal" >

<Button
android:id="@+id/operate_0"
android:layout_width="0dp"
android:layout_height="@dimen/dd_dimen_100px"
android:layout_weight="1"
android:text="发起活动" />

<Button
android:id="@+id/operate_1"
android:layout_width="0dp"
android:layout_height="@dimen/dd_dimen_100px"
android:layout_weight="1"
android:text="查看活动" />

<Button
android:id="@+id/operate_2"
android:layout_width="0dp"
android:layout_height="@dimen/dd_dimen_100px"
android:layout_weight="1"
android:text="你大爷的" />
</LinearLayout>

</LinearLayout>
Loading

0 comments on commit 3ba35b4

Please sign in to comment.