mirror of
https://gitlab.com/openlp/android.git
synced 2024-12-22 11:52:49 +00:00
Change icons and Add refresh
This commit is contained in:
parent
3e69c02900
commit
a6374b399b
@ -130,7 +130,6 @@ public class OpenLP extends Activity
|
||||
// as you specify a parent activity in AndroidManifest.xml.
|
||||
Intent intent;
|
||||
switch (item.getItemId()) {
|
||||
|
||||
case R.id.action_preferences:
|
||||
intent = new Intent(this, SettingsActivity.class);
|
||||
startActivity(intent);
|
||||
@ -140,9 +139,13 @@ public class OpenLP extends Activity
|
||||
startActivity(intent);
|
||||
return true;
|
||||
case R.id.action_refresh:
|
||||
if (mTitle.equals(R.string.service_list)){
|
||||
if (this.mTitle.equals(getString(R.string.service_list))) {
|
||||
ServiceListFragment fragment = (ServiceListFragment)
|
||||
getFragmentManager().findFragmentByTag("ServiceListFragment");
|
||||
getFragmentManager().findFragmentById(R.id.container);
|
||||
fragment.refreshDisplay();
|
||||
} else if (this.mTitle.equals(getString(R.string.live_list)) ) {
|
||||
LiveListFragment fragment = (LiveListFragment)
|
||||
getFragmentManager().findFragmentById(R.id.container);
|
||||
fragment.refreshDisplay();
|
||||
}
|
||||
return true;
|
||||
|
@ -90,10 +90,10 @@ public class LiveListFragment extends OpenLPFragment {
|
||||
HashMap<String, String> hm = new HashMap<String, String>();
|
||||
hm.put("tag", item.getString("tag"));
|
||||
if (item.getString("selected").equals("true")) {
|
||||
hm.put("liveListNormal", Html.fromHtml(item.getString("html")).toString());
|
||||
hm.put("liveListSelected", Html.fromHtml(item.getString("html")).toString());
|
||||
selected = i;
|
||||
} else {
|
||||
hm.put("liveListSelected", Html.fromHtml(item.getString("html")).toString());
|
||||
hm.put("liveListNormal", Html.fromHtml(item.getString("html")).toString());
|
||||
}
|
||||
aList.add(hm);
|
||||
}
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 305 B After Width: | Height: | Size: 522 B |
@ -2,7 +2,7 @@
|
||||
|
||||
<LinearLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:id="@+id/live_list_fragment_layout"
|
||||
android:id="@+id/fragment_live_list_layout"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:orientation="horizontal"
|
||||
@ -13,7 +13,7 @@
|
||||
android:id="@+id/tag"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:textSize="14dp"
|
||||
android:textSize="14sp"
|
||||
android:paddingTop="10dp"
|
||||
android:paddingRight="5dp"
|
||||
android:paddingLeft="5dp"
|
||||
@ -23,18 +23,18 @@
|
||||
android:id="@+id/liveListNormal"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:textColor="#ff6c6c6c"
|
||||
android:textSize="14dp"
|
||||
android:textColor="#ff2a2a2a"
|
||||
android:textSize="14sp"
|
||||
android:paddingTop="10dp"
|
||||
android:paddingBottom="10dp"
|
||||
/>
|
||||
android:textStyle="normal"/>
|
||||
<TextView
|
||||
android:id="@+id/liveListSelected"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:textColor="#000000"
|
||||
android:textSize="14dp"
|
||||
android:textSize="14sp"
|
||||
android:paddingTop="10dp"
|
||||
android:paddingBottom="10dp"
|
||||
/>
|
||||
android:textStyle="bold|italic"/>
|
||||
</LinearLayout>
|
||||
|
@ -5,9 +5,9 @@
|
||||
android:choiceMode="singleChoice"
|
||||
android:divider="@android:color/darker_gray"
|
||||
android:dividerHeight="2dp"
|
||||
android:background="#c8ffffff"
|
||||
android:textStyle="bold"
|
||||
android:textAppearance="?android:attr/textAppearanceSmall"
|
||||
android:textColor="#000000"
|
||||
android:textAppearance="?android:attr/textAppearanceSmallInverse"
|
||||
tools:context=".NavigationDrawerFragment"
|
||||
android:drawSelectorOnTop="false"
|
||||
android:paddingLeft="20dp"
|
||||
|
@ -2,6 +2,7 @@
|
||||
|
||||
<LinearLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:id="@+id/fragmentservicelist"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:orientation="horizontal"
|
||||
|
Loading…
Reference in New Issue
Block a user