Android :: Custom ViewGroup With Animated View Inside
Jun 17, 2009
I want to have a ViewGroup with another View in it. The user should be able to move the other View around the ViewGroup, and fling it away. However, the inner View shouldnt only move, it should also scale and so on (so we dont restrain ourselves to just movements). I don't really know the best way to implement it.
First I though about using a ViewGroup pretty much as it is (i.e. take advantage of the already-written methods). Then I could do the flinging with an Animation. However, when I move the View around with my finger, wouldnt I have to do a requestLayout, since the View changes size when I move it? Or could I just set a transform?
The other alternative would be to override the draw-method and do most of the work myself. For instance, when the user moves his/her finger, I could get a cache of the View and just paint it on the Canvas (with some transform). However, how would I do the flinging then, without an Animation? I could use a Scroller/VelocityTracker, but What would "drive" the repaints? Which is the best way to do this? Also, I won't have just one View, but a couple of them, so I'd like the solution to be effective.
View 2 Replies
Oct 19, 2010
I've extended ViewGroup to achieve something like a FlowLayout.I put my custom ViewGroup into a ScrollView, dynamically add a bunch of content and it doesn't scroll.The content that flows off the screen is not viewable.What am I missing, how can I allow my ViewGroup to be compatible with ScrollView?
View 1 Replies
View Related
Mar 3, 2010
In my foo_layout.xml file I have a subclassed RelativeLayout:
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<com.android.myapp.FooView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/pegboard_table"
android:orientation="vertical"
android:scaleType="fitXY"
>
<ImageView
android:id="@+id/triangular"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:src="@drawable/pegboard_board"
android:scaleType="fitXY"
android:gravity="center"
android:visibility="invisible"
/>
<Chronometer
android:id="@+id/timer"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/timer_display"
android:textSize="40sp"
android:textColor="#000"
android:layout_alignParentTop="true"
android:gravity="center"
android:visibility="invisible"/>
<TableLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/board_table"
android:visibility="invisible"
/>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:gravity="center_horizontal"
android:background="@drawable/tab_bar">
<!-- android:layout_alignLeft="@id/options_tab"-->
<ImageView
android:id="@+id/game_select"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:src="@drawable/game_select" android:paddingLeft="15sp"/>
<ImageView
android:id="@+id/undo_select"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/game_select"
android:layout_weight="1"
android:src="@drawable/undo"
/>
<ImageView
android:id="@+id/settings_select"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/undo_select"
android:layout_weight="1"
android:src="@drawable/settings"
/>
<ImageView
android:id="@+id/info_select"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/settings_select"
android:layout_weight="1"
android:src="@drawable/info"
This doesn't seem like the right behavior. I've tried it with other views inside the FooView hierarchy and findViewById() always returns null.
For the life of me I can't figure out what I'm doing wrong.
View 2 Replies
View Related
Sep 24, 2009
I try to create my custom view inside a linearlayout. For example
<View android:id="@+id/ViewPaint" class="com.example.android.helloactivity.HelloActivity$DrawingView"/>
In the java source I created a DrawingView class which extends View. Unfortunatly it does not get instantiated. I tried to overwrite the ondraw() but without success. Code...
View 4 Replies
View Related
Aug 31, 2010
Can someone help me with my Syntax/Methodology? I would like to set up a bunch of different views in a viewgroup. My code fails at the addView method.
Unfortunately, I can't find jack for examples (which is how I learn) using the ViewGroup class online.code...
View 2 Replies
View Related
Sep 14, 2010
I am trying to add an animated spinner inside a EditText view to the right. And programmatically show/hide it.
I have created the animated spinner by introducing a linear interpolation rotation. code...
View 2 Replies
View Related
May 19, 2010
I am new to Android, and I am trying to understand how to create a custom ViewGroup. I created MyViewGroup as follows: Code...
View 2 Replies
View Related
May 24, 2010
I am trying to create a ListView and add it to a custom ViewGroup.
Here is my code:
CODE:.................
View 3 Replies
View Related
Aug 2, 2010
I've got the following node in my XML layout:
CODE:.................
TagLayout is a class that extends ViewGroup, and basically holds a bunch of buttons with text (a custom object that act as tags, but that's neither here or there).
The problem is that when there are too many buttons, the view no longer scrolls. I can confirm that I am adding tags but I can't see anything.
If I wrap the above within a ScrollView, the layout never renders. I tried adding the attributes android:isScrollContainer and android:scrollbars, but that doesn't change anything. Is there something I'm missing here?
I should also add that TagLayout is overriding the onMeasure() event. I guess I need to implement a scrolling mechanism there...?
View 1 Replies
View Related
Nov 17, 2010
I have a custom ViewGroup that I wrote, and have been able to use it to lay out child elements in code just fine. However, now I'd like to be able to use it for layout in XML. I would also like to be able to add some custom attributes to the XML file to better control my layout. How do I set up, both in XML and in code, a set of custom attributes? Bonus if it can be used with the built in designer in Eclipse.
View 1 Replies
View Related
Nov 25, 2009
I am trying to add a view to a viewgroup but I am getting the following error when I run the application
Error: E/AndroidRuntime( 570): java.lang.IllegalStateException: The specified child already has a parent. You must call removeView() on the child's parent first. Code: public class ExampleApp extends ViewGroup{
private LayoutParams mLAyoutParams; AlbumArtImageView mAlbumArtThumnail;
static final String TAG = "ExampleApp";......................
View 2 Replies
View Related
Apr 23, 2010
I have the following structure defined in an xml layout file.
<RelativeLayout android:id="@+id/mainLayout"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content" android:layout_height="wrap_content">
<FrameLayout android:id="@+id/frame" android:layout_centerInParent="true" android:layout_width="wrap_content" android:layout_height="wrap_content" ></FrameLayout>
<Button android:id="@+id/button" android:layout_below="@id/frame" android:layout_width="wrap_content" android:layout_height="wrap_content" />
</RelativeLayout>
The FrameLayout is positioned correctly in the center of its parent. But the Button isn't getting positioned under it. Instead it's displaying in the top left corner. Am I doing something incorrectly or is this a bug with RelativeLayout?
View 1 Replies
View Related
Nov 16, 2009
I want to share the same view.mTag value of a viewgroup to all the childs under that viewgroup.
Like all childs should call the getTag() of viewgroup to get the tag .How can i do that ?
View 2 Replies
View Related
Jul 27, 2010
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello"
/>
</LinearLayout>
Since the root element is a LinearLayout, which extends ViewGroup, why does main.xml get turned into a View instead of a ViewGroup? For example, in my main Activity class, I try to get the number of subviews that the LinearLayout contains like this:
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
ViewGroup vg = (ViewGroup) findViewById(R.layout.main);
Log.v("myTag", "num children: " + vg.getChildCount());
but it crashes when i call vg.getChildCount(). What is the right way of doing it?
View 1 Replies
View Related
Sep 26, 2010
I have a custom ViewGroup. The idea is to be able to place controls at absolute positions and then have the ViewGroup scale those controls based on the difference in the screen dimensions with respect to the original design dimensions. I am using the code below. In response to the 'onMeasure' message, I am storing the width and height of the view. Then on the 'onLayout' message I am computing new dimensions for the child controls and adjusting their sizes proportionally. This all works to some degree. However for certain controls (e.g. button controls), the control resizes, but the text inside does not remain centered within the control. I am thinking that there is some other call I need to make to update the child controls after I change their size.
View 3 Replies
View Related
Aug 23, 2010
Thread [<1> main] (Suspended (exception NullPointerException)) ArrayAdapter.createViewFromResource(int, View, ViewGroup, int) line: 355 ArrayAdapter.getView(int, View, ViewGroup) line: 323 ListView(AbsListView).obtainView(int, boolean[]) line: 1294 ListView.measureHeightOfChildren(int, int, int, int, int) line: 1198 My symptomremedyActivity.java looks like:................
View 2 Replies
View Related
Mar 10, 2010
So my layout looks basically like this:
<ScrollView>
<RelativeLayout>
<BunchOfViews/>
<ImageView android:layout_alignParentBottom="true"/>
</RelativeLayout>
</ScrollView>
I have the ScrollView so all of the layout always is visible no matter the height of the screen. The problem is that on a very high screen, I still want my imageview to be at the bottom. However, a child of a ScrollView dont seem to have a defined bottom. The View is placed at the top of the layout. How can I solve this problem in a neat way?
View 4 Replies
View Related
Jul 2, 2009
I am using Android SDK 1.5. I am developing an activity with multiple content views. It will call setContentView() with different viewgroup instance for different functionality. It contains a text input dialog popped up by an option menu item. I didn't specify anything for IME in mainfest.xml & EditText attributes. I found at first, the soft keyboard for the text input dialog will overlap on the activity content view. But after several content view switch (by calling setContentView() with different ViewGroup instance), the soft keyboard will resize the activity content view. Why this inconsistent behavior happens?
...........................
View 13 Replies
View Related
Sep 16, 2009
I have a TextView on which I set an onClickListener.
I assign a Traslate Animation to this TextView, so that it moves from position A to position B in the screen.
The Animation works as expected.
My problem is due to the fact that it does not matter in which position the TextView is during its movement: in order to trigger the "click event" I need to touch the screen only in the starting position (A).
EXAMPLE: Imagine that the TextView is in the bottom left corner and it starts moving toward the top right one. Imagine that the TextView is now in the center ofthe screen. If I touch the TextView where my eyes "see" it (= in the center of the screen), nothing happens. Else if I touch the starting point at the bottom left of the screen (which is a blank place because the TextView has moved from there), the event is triggered.
View 2 Replies
View Related
Jun 12, 2010
Is there a way, to make view's background animated? Android cant handle animated GIFs in 1.5 afaik, and I can't set video for BG resource.
View 1 Replies
View Related
Feb 24, 2009
When we tried to display an animated gif image using image view, nothing was displayed on the screen. So, we are suspecting whether image view is not supporting animated gif.
If we place an animated gif file in gallery then thumbnail is not displayed.
View 7 Replies
View Related
Aug 24, 2010
Is it possible to view them on the incredible? I've tried using both the default browser and dolphin HD with no luck.
View 1 Replies
View Related
Sep 29, 2010
I am having a class that extends View. I have another class that extends activity and I want to add the first class to be loaded inside the activity class.
I tried the following code...
View 2 Replies
View Related
Oct 3, 2010
I want to add a view inside a FrameLayout programmatically and to place it in a specific point within the layout with a specific width and height. Does FrameLayout support this? If not, should I use an intermediate ViewGroup to achieve this? My initial idea was to add an AbsoluteLayout to the FrameLayout and place the view inside the AbsoluteLayout. Unfortunately I just found out that AbsoluteLayout is deprecated.
View 2 Replies
View Related
Apr 16, 2010
I have a problem interacting with a Web View. I'm showing an html login form within a web view and I can't type inside of any of the input fields of the forms. I do can interact with the links, select boxes, buttons, etc.
Here is an example of my code. Basically I'm retrieving the web view from the xml and setting it a WebViewClient and a WebChromeClient. code...
View 1 Replies
View Related
Feb 25, 2010
I have a problem updating a progress bar.
First i have a custom adapter in which i create a row for each item with a textview and a progress bar. (i have a item_row.xml in where i define the layout for each row)
CODE:...............
Ok, now i have a service downloading in background data from an external API, and i want when to update the progress bar every second with the progress of the download.
For that, i have a timer task made with a handler (reference)
But the problem is how can i access again to the progress bars created in my adapter in order to update the progress?
View 1 Replies
View Related
Aug 17, 2010
I have a ScrollView, inside of it there is a TextView, and there are two buttons for PageUp and PageDown in the other part of the layout. When I click on PageDown, I want to see the text in the TextView to scroll down one page. How could I do it?
View 2 Replies
View Related
Nov 19, 2010
A view flipper has 4 list views. When i flip the view flipper using gesture listener implemented on view flipper, it works fine. But I am not able to scroll the list view since the touch event is not able to trickle down from view flipper to list view.
CODE:.............
I want this event to be handled by list view
CODE:.................
View 2 Replies
View Related
Nov 8, 2010
How do I set up an xml layout where an OpenGL view is part of it? As I do now is set the OpenGL view as the only view with setContentView(). But I would like to create an xml layout that includes the OpenGL view. Lets say I want to have the OpenGL view mainly and a small TextView at the bottom.
Is this even possible? Or can an OpenGL view only be the one and only view?
View 1 Replies
View Related
Sep 14, 2009
I have a listView with custom objects defined by the xml-layout below. I want the textView with id "info" to be ellipsized on a single line, and I've tried using the attributes. Code...
View 4 Replies
View Related