- title not displaying on note_view_full bug fixed
- note_view_full title text color changed to black
This commit is contained in:
parent
db4af0dc2e
commit
b360b4a1b7
3 changed files with 38 additions and 35 deletions
|
@ -92,7 +92,6 @@ public class ExploreFragment extends Fragment {
|
||||||
dateFilter.setOnClickListener(new View.OnClickListener() {
|
dateFilter.setOnClickListener(new View.OnClickListener() {
|
||||||
@Override
|
@Override
|
||||||
public void onClick(View v) {
|
public void onClick(View v) {
|
||||||
// Log.d(TAG, "" + v.getId());
|
|
||||||
if (dateFilterIsVisible) {
|
if (dateFilterIsVisible) {
|
||||||
dateFilterIsVisible = false;
|
dateFilterIsVisible = false;
|
||||||
exploreFilters.setVisibility(View.GONE);
|
exploreFilters.setVisibility(View.GONE);
|
||||||
|
|
|
@ -472,8 +472,6 @@ public class PersonalFragment extends Fragment {
|
||||||
});
|
});
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -42,16 +42,15 @@
|
||||||
android:editable="true"
|
android:editable="true"
|
||||||
android:elegantTextHeight="false"
|
android:elegantTextHeight="false"
|
||||||
android:maxLines="1"
|
android:maxLines="1"
|
||||||
android:textColor="#c5c4c4"
|
android:hint="Title"
|
||||||
android:hint="Title"
|
android:layout_marginTop="10dp" />
|
||||||
android:layout_marginTop="15dp" />
|
|
||||||
|
|
||||||
<ScrollView
|
<ScrollView
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="0dp"
|
android:layout_height="0dp"
|
||||||
android:id="@+id/scrollView"
|
android:id="@+id/scrollView"
|
||||||
android:layout_weight="0.5"
|
android:layout_weight="0.5"
|
||||||
android:layout_marginTop="10dp">
|
android:layout_marginTop="7dp">
|
||||||
|
|
||||||
<EditText
|
<EditText
|
||||||
android:layout_width="fill_parent"
|
android:layout_width="fill_parent"
|
||||||
|
@ -63,42 +62,49 @@
|
||||||
android:layout_weight="0.24" />
|
android:layout_weight="0.24" />
|
||||||
</ScrollView>
|
</ScrollView>
|
||||||
|
|
||||||
<Switch
|
|
||||||
android:id="@+id/nvf_note_permission"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_marginTop="25dp"
|
|
||||||
android:checked="true"
|
|
||||||
android:text="@string/nvf_public_label"
|
|
||||||
android:layout_gravity="center_horizontal" />
|
|
||||||
|
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
android:orientation="horizontal"
|
android:orientation="vertical"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content">
|
||||||
android:layout_gravity="center_horizontal">
|
|
||||||
|
|
||||||
<Button
|
<Switch
|
||||||
android:id="@+id/nvf_note_submit_btn"
|
android:id="@+id/nvf_note_permission"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:text="@string/note_me"
|
android:layout_marginTop="25dp"
|
||||||
android:layout_margin="15dp"
|
android:checked="true"
|
||||||
android:drawableLeft="@android:drawable/ic_menu_send"
|
android:text="@string/nvf_public_label"
|
||||||
android:background="@color/colorPrimary"
|
android:layout_gravity="center_horizontal" />
|
||||||
android:textColor="#ffffff"
|
|
||||||
android:paddingLeft="5dp"
|
|
||||||
android:paddingRight="5dp" />
|
|
||||||
|
|
||||||
<Button
|
<LinearLayout
|
||||||
android:id="@+id/nvf_note_cancel_btn"
|
android:orientation="horizontal"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:text="@string/throw_me"
|
android:layout_gravity="center_horizontal">
|
||||||
android:layout_marginTop="15dp"
|
|
||||||
android:drawableLeft="@android:drawable/ic_menu_delete" />
|
<Button
|
||||||
|
android:id="@+id/nvf_note_submit_btn"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="@string/note_me"
|
||||||
|
android:layout_margin="15dp"
|
||||||
|
android:drawableLeft="@android:drawable/ic_menu_send"
|
||||||
|
android:background="@color/colorPrimary"
|
||||||
|
android:textColor="#ffffff"
|
||||||
|
android:paddingLeft="5dp"
|
||||||
|
android:paddingRight="5dp" />
|
||||||
|
|
||||||
|
<Button
|
||||||
|
android:id="@+id/nvf_note_cancel_btn"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="@string/throw_me"
|
||||||
|
android:layout_marginTop="15dp"
|
||||||
|
android:drawableLeft="@android:drawable/ic_menu_delete" />
|
||||||
|
|
||||||
|
</LinearLayout>
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
</LinearLayout>
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue