|
|
@@ -13,6 +13,7 @@ import android.view.View;
|
|
|
import com.kfzs.duanduan.ActMain;
|
|
|
import com.tencent.smtt.sdk.WebView;
|
|
|
import android.widget.LinearLayout;
|
|
|
+import android.widget.RelativeLayout;
|
|
|
import android.widget.TextView;
|
|
|
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
@@ -61,6 +62,8 @@ public class FgtAskgetmoney extends BaseCompatFragment {
|
|
|
View ask_top_1;
|
|
|
@BindView(R.id.ask_top_2)
|
|
|
View ask_top_2;
|
|
|
+ @BindView(R.id.ask_top_3)
|
|
|
+ View ask_top_3;
|
|
|
@BindView(R.id.ask_award_info)
|
|
|
MarqueeView ask_award_info;
|
|
|
@BindView(R.id.ask_scroll_view)
|
|
|
@@ -119,11 +122,14 @@ public class FgtAskgetmoney extends BaseCompatFragment {
|
|
|
ask_bg.loadData(content, "text/html", "UTF-8");
|
|
|
// 16,18,19
|
|
|
LinearLayout.LayoutParams layoutParams1 = (LinearLayout.LayoutParams) ask_top_1.getLayoutParams();
|
|
|
- layoutParams1.height = G.WIDTH * 690 / 625;
|
|
|
+ layoutParams1.height = G.WIDTH * 660 / 625;
|
|
|
ask_top_1.setLayoutParams(layoutParams1);
|
|
|
LinearLayout.LayoutParams layoutParams2 = (LinearLayout.LayoutParams) ask_top_2.getLayoutParams();
|
|
|
layoutParams2.height = G.WIDTH * 112 / 625;
|
|
|
ask_top_2.setLayoutParams(layoutParams2);
|
|
|
+ RelativeLayout.LayoutParams layoutParams3 = (RelativeLayout.LayoutParams) ask_top_3.getLayoutParams();
|
|
|
+ layoutParams3.topMargin = G.WIDTH * 1442 / 1080;
|
|
|
+ ask_top_3.setLayoutParams(layoutParams3);
|
|
|
|
|
|
showViewpage();
|
|
|
|