some more tweaks
This commit is contained in:
parent
b218b743bf
commit
91417fa3dd
@ -1376,6 +1376,12 @@ public class HeadlinesFragment extends Fragment implements OnItemClickListener,
|
||||
return dp;
|
||||
}
|
||||
|
||||
public int dpToPx(int dp) {
|
||||
DisplayMetrics displayMetrics = getContext().getResources().getDisplayMetrics();
|
||||
int px = Math.round(dp * (displayMetrics.xdpi / DisplayMetrics.DENSITY_DEFAULT));
|
||||
return px;
|
||||
}
|
||||
|
||||
private void maybeRepositionFlavorImage(View view, Bitmap bitmap) {
|
||||
RelativeLayout.LayoutParams lp = (RelativeLayout.LayoutParams) view.getLayoutParams();
|
||||
|
||||
@ -1388,8 +1394,12 @@ public class HeadlinesFragment extends Fragment implements OnItemClickListener,
|
||||
if (pxToDp(bitmap.getHeight()) < 300 || r >= 1.2) {
|
||||
|
||||
lp.addRule(RelativeLayout.BELOW, R.id.headline_header);
|
||||
|
||||
if (w < h) lp.topMargin = dpToPx(8);
|
||||
|
||||
} else {
|
||||
lp.addRule(RelativeLayout.BELOW, 0);
|
||||
lp.topMargin = 0;
|
||||
//lp.removeRule(RelativeLayout.BELOW);
|
||||
}
|
||||
|
||||
|
@ -60,7 +60,7 @@
|
||||
android:id="@+id/headline_header"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:background="#ccffffff"
|
||||
android:background="?headlineHeaderBackground"
|
||||
android:padding="16dp">
|
||||
|
||||
<TextView
|
||||
@ -117,11 +117,11 @@
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="bottom"
|
||||
android:background="#90000000"
|
||||
android:background="?headlineHeaderBackground"
|
||||
android:gravity="center"
|
||||
android:text="@string/flavor_image_prompt"
|
||||
android:textAppearance="?android:attr/textAppearanceSmall"
|
||||
android:textColor="@android:color/primary_text_dark"
|
||||
android:textColor="?headlineSecondaryTextColor"
|
||||
android:visibility="visible" />
|
||||
|
||||
</FrameLayout>
|
||||
|
@ -61,7 +61,7 @@
|
||||
android:id="@+id/headline_header"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:background="#ccffffff"
|
||||
android:background="?headlineHeaderBackground"
|
||||
android:padding="16dp">
|
||||
|
||||
<TextView
|
||||
@ -118,11 +118,11 @@
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="bottom"
|
||||
android:background="#90000000"
|
||||
android:background="?headlineHeaderBackground"
|
||||
android:gravity="center"
|
||||
android:text="@string/flavor_image_prompt"
|
||||
android:textAppearance="?android:attr/textAppearanceSmall"
|
||||
android:textColor="@android:color/primary_text_dark"
|
||||
android:textColor="?headlineSecondaryTextColor"
|
||||
android:visibility="visible" />
|
||||
|
||||
</FrameLayout>
|
||||
|
@ -11,6 +11,7 @@
|
||||
<attr name="feedlistTextColor" format="reference|color" />
|
||||
<attr name="feedlistSelectedTextColor" format="reference|color" />
|
||||
<!-- <attr name="headlineTextColor" format="reference|color" /> -->
|
||||
<attr name="headlineHeaderBackground" format="reference|color" />
|
||||
<attr name="headlineUnreadTextColor" format="reference|color" />
|
||||
<attr name="headlineSelectedTextColor" format="reference|color" />
|
||||
<attr name="headlineExcerptTextColor" format="reference|color" />
|
||||
|
@ -15,6 +15,7 @@
|
||||
<item name="headlinesBackground">#f0f0f0</item>
|
||||
<item name="articleBackground">@android:color/white</item>
|
||||
<item name="headlineSelectedBackground">#dddddd</item>
|
||||
<item name="headlineHeaderBackground">#ccffffff</item>
|
||||
<item name="headlineUnreadBackground">@android:color/white</item>
|
||||
<item name="feedsSelectedBackground">#dddddd</item>
|
||||
<item name="feedlistTextColor">@android:color/primary_text_light</item>
|
||||
@ -79,6 +80,7 @@
|
||||
<item name="headlineSelectedExcerptTextColor">@android:color/secondary_text_dark</item>
|
||||
<item name="headlineSelectedSecondaryTextColor">?headlineSelectedExcerptTextColor</item>
|
||||
<item name="headlineSelectedBackground">#1c1c1c</item>
|
||||
<item name="headlineHeaderBackground">#cc000000</item>
|
||||
<item name="headlineUnreadBackground">#101010</item>
|
||||
<item name="linkColor">?colorPrimary</item>
|
||||
<item name="loadingBackground">@android:color/black</item>
|
||||
|
Loading…
Reference in New Issue
Block a user