mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2024-11-04 01:09:47 +01:00
Re-do logo logic for AboutScreen to keep aspect ratio
This commit is contained in:
parent
1c2218079b
commit
db47992199
@ -17,42 +17,23 @@
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
||||
package nodomain.freeyourgadget.gadgetbridge.activities;
|
||||
|
||||
import android.graphics.LightingColorFilter;
|
||||
import android.graphics.drawable.InsetDrawable;
|
||||
import android.os.Bundle;
|
||||
import android.text.method.LinkMovementMethod;
|
||||
import android.widget.RelativeLayout;
|
||||
import android.widget.ScrollView;
|
||||
import android.widget.TextView;
|
||||
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
||||
import nodomain.freeyourgadget.gadgetbridge.GBApplication;
|
||||
import nodomain.freeyourgadget.gadgetbridge.R;
|
||||
|
||||
|
||||
public class AboutActivity extends AbstractGBActivity {
|
||||
private static final Logger LOG = LoggerFactory.getLogger(AboutActivity.class);
|
||||
|
||||
@Override
|
||||
protected void onCreate(Bundle savedInstanceState) {
|
||||
super.onCreate(savedInstanceState);
|
||||
setContentView(R.layout.activity_about);
|
||||
ScrollView aboutBackground = findViewById(R.id.about_background);
|
||||
|
||||
if (!GBApplication.isDarkThemeEnabled()) {
|
||||
aboutBackground.getBackground().setColorFilter(new LightingColorFilter(0x0, 0x00EEEEEE));
|
||||
} else {
|
||||
aboutBackground.getBackground().setColorFilter(new LightingColorFilter(0x0, 0x00404040));
|
||||
}
|
||||
|
||||
TextView link1 = findViewById(R.id.links1);
|
||||
link1.setMovementMethod(LinkMovementMethod.getInstance());
|
||||
TextView link2 = findViewById(R.id.links2);
|
||||
link2.setMovementMethod(LinkMovementMethod.getInstance());
|
||||
TextView link3 = findViewById(R.id.links3);
|
||||
link3.setMovementMethod(LinkMovementMethod.getInstance());
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -1,9 +1,24 @@
|
||||
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/no_items_bg"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerInParent="true"
|
||||
android:alpha="0.1"
|
||||
android:contentDescription="@string/icon_placeholder"
|
||||
android:tint="?attr/textColorPrimary"
|
||||
app:srcCompat="@drawable/gadgetbridge_img" />
|
||||
|
||||
<ScrollView
|
||||
android:id="@+id/about_background"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:background="@drawable/gadgetbridge_img"
|
||||
android:paddingLeft="@dimen/about_margin"
|
||||
android:paddingRight="@dimen/about_margin"
|
||||
tools:context="nodomain.freeyourgadget.gadgetbridge.activities.AboutActivity">
|
||||
@ -144,7 +159,6 @@
|
||||
android:textColor="@color/accent" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
</ScrollView>
|
||||
</RelativeLayout>
|
||||
|
Loading…
Reference in New Issue
Block a user