Code Cleanup
Added Multiple Image Upload
This commit is contained in:
NudeDude 2018-02-25 20:45:38 +01:00
parent b0dc6b53f9
commit f9dd059855
2 changed files with 3 additions and 4 deletions

View File

@ -31,7 +31,7 @@ public class ColorPreferences implements OnColorChangedListener, DialogInterface
private ColorPreferences(Context context) { private ColorPreferences(Context context) {
settings = context.getSharedPreferences("settings", 0); settings = context.getSharedPreferences("settings", 0);
background = settings.getInt("background_color", 0xff061a22); background = settings.getInt("background_color", 0xff071222);
font = settings.getInt("font_color", 0xffffffff); font = settings.getInt("font_color", 0xffffffff);
tweet = settings.getInt("tweet_color", 0xff19aae8); tweet = settings.getInt("tweet_color", 0xff19aae8);
highlight = settings.getInt("highlight_color", 0xffff00ff); highlight = settings.getInt("highlight_color", 0xffff00ff);

View File

@ -15,10 +15,9 @@
android:layout_marginLeft="5dip" android:layout_marginLeft="5dip"
android:layout_marginRight="5dip" android:layout_marginRight="5dip"
android:layout_marginTop="5dip" android:layout_marginTop="5dip"
android:background="@android:color/background_light" android:background="@android:color/transparent"
android:gravity="top" android:gravity="top"
android:inputType="textMultiLine" android:inputType="textMultiLine" />
android:textColor="@android:color/background_dark" />
<LinearLayout <LinearLayout
android:layout_width="match_parent" android:layout_width="match_parent"