34 lines
1,017 B
Java
34 lines
1,017 B
Java
|
package eu.siacs.conversations.ui;
|
||
|
|
||
|
import android.content.Context;
|
||
|
import android.content.pm.PackageManager;
|
||
|
import android.preference.DialogPreference;
|
||
|
import android.util.AttributeSet;
|
||
|
|
||
|
public class AboutDialog extends DialogPreference {
|
||
|
public AboutDialog(final Context context, final AttributeSet attrs, final int defStyle) {
|
||
|
super(context, attrs, defStyle);
|
||
|
setSummary();
|
||
|
}
|
||
|
|
||
|
public AboutDialog(final Context context, final AttributeSet attrs) {
|
||
|
super(context, attrs);
|
||
|
setSummary();
|
||
|
}
|
||
|
|
||
|
private void setSummary() {
|
||
|
if (getContext() != null &&getContext().getPackageManager() != null) {
|
||
|
final String packageName = getContext().getPackageName();
|
||
|
final String versionName;
|
||
|
try {
|
||
|
versionName = getContext().getPackageManager().getPackageInfo(packageName, 0).versionName;
|
||
|
setSummary("Conversations " + versionName);
|
||
|
} catch (final PackageManager.NameNotFoundException e) {
|
||
|
// Using try/catch as part of the logic is sort of like this:
|
||
|
// https://xkcd.com/292/
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|